diff --git a/.gitignore b/.gitignore
index b9fa1d938..7d401ff17 100644
--- a/.gitignore
+++ b/.gitignore
@@ -45,4 +45,5 @@ Thumbs.db
# env
.env.local
-.nx/cache
\ No newline at end of file
+.nx/cache
+.nx/workspace-data
\ No newline at end of file
diff --git a/.prettierignore b/.prettierignore
index 265178b3f..d537a2801 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -2,4 +2,5 @@
/dist
/coverage
generated
-/.nx/cache
\ No newline at end of file
+/.nx/cache
+/.nx/workspace-data
\ No newline at end of file
diff --git a/apps/defi/.env b/apps/defi/.env
index 8eb265efb..9ea258cf4 100644
--- a/apps/defi/.env
+++ b/apps/defi/.env
@@ -6,7 +6,6 @@ VITE_WALLET_CONNECT_PROJECT_ID=
# Alchemy account id
VITE_ALCHEMY_ID=
-VITE_ALCHEMY_ARBITRUM_ID=
# Google Tag Manager container id for usage analytics, disabled if left blank
VITE_GTM_CONTAINER_ID=
diff --git a/apps/defi/index.html b/apps/defi/index.html
index 2ab5b0de4..1349edccc 100644
--- a/apps/defi/index.html
+++ b/apps/defi/index.html
@@ -42,6 +42,9 @@
+
+
+
@@ -55,7 +58,7 @@
-
+
diff --git a/apps/defi/public/manifest.json b/apps/defi/public/manifest.json
new file mode 100644
index 000000000..a259960e7
--- /dev/null
+++ b/apps/defi/public/manifest.json
@@ -0,0 +1,6 @@
+{
+ "name": "Origin Unified Defi",
+ "description": "The official dapp for our groundbreaking multichain yield ecosystem",
+ "iconPath": "https://raw.githubusercontent.com/OriginProtocol/origin-defi/main/libs/shared/icons/src/origin/origin-logo.svg",
+ "providedBy": { "name": "Origin", "url": "https://www.originprotocol.com/" }
+}
diff --git a/apps/defi/src/components/Topnav/components/AlertPopover.tsx b/apps/defi/src/components/Topnav/components/AlertPopover.tsx
new file mode 100644
index 000000000..c285004ba
--- /dev/null
+++ b/apps/defi/src/components/Topnav/components/AlertPopover.tsx
@@ -0,0 +1,93 @@
+import { Divider, Stack, Typography } from '@mui/material';
+import { useTxButton } from '@origin/defi/shared';
+import { ClickAwayPopover, TokenIcon } from '@origin/shared/components';
+import { tokens } from '@origin/shared/contracts';
+import { PoweredBySafe } from '@origin/shared/icons';
+import { TxButton } from '@origin/shared/providers';
+import { useIntl } from 'react-intl';
+
+import type { StackProps } from '@mui/material';
+import type { ClickAwayPopoverProps } from '@origin/shared/components';
+import type { Contract, Token } from '@origin/shared/contracts';
+
+export const AlertPopover = (
+ props: Omit,
+) => {
+ const intl = useIntl();
+
+ return (
+
+
+
+
+ {intl.formatMessage({
+ defaultMessage:
+ 'It looks like you are minting from a contract and have not opted into yield. Contracts must opt-in to receive yield.',
+ })}
+
+
+
+ }>
+
+
+
+
+ );
+};
+
+type RebaseRowProps = { token: Token } & StackProps;
+
+const RebaseRow = ({ token, ...rest }: RebaseRowProps) => {
+ const intl = useIntl();
+ const { params, callbacks } = useTxButton({
+ params: {
+ contract: token as Contract,
+ functionName: 'rebaseOptIn',
+ value: 0n,
+ },
+ activity: {
+ type: 'rebasing',
+ status: 'idle',
+ tokenIdIn: token.id,
+ },
+ });
+
+ return (
+
+
+
+ {intl.formatMessage(
+ { defaultMessage: 'Enable rebasing for {symbol}' },
+ { symbol: token.symbol },
+ )}
+
+
+
+ );
+};
diff --git a/apps/defi/src/components/Topnav/components/Topnav.tsx b/apps/defi/src/components/Topnav/components/Topnav.tsx
index 7999266e8..06ee8a0ae 100644
--- a/apps/defi/src/components/Topnav/components/Topnav.tsx
+++ b/apps/defi/src/components/Topnav/components/Topnav.tsx
@@ -13,16 +13,24 @@ import {
} from '@mui/material';
import Grid2 from '@mui/material/Unstable_Grid2/Grid2';
import { trackEvent, useActivitiesStatus } from '@origin/defi/shared';
-import { FaBarsRegular, OriginLabel } from '@origin/shared/icons';
+import { tokens } from '@origin/shared/contracts';
+import {
+ FaBarsRegular,
+ FaCircleExclamationRegular,
+ OriginLabel,
+} from '@origin/shared/icons';
import {
ChainMenuButton,
OpenAccountModalButton,
+ useIsRebaseBannerVisible,
} from '@origin/shared/providers';
+import { not } from 'ramda';
import { useIntl } from 'react-intl';
import { Link as RouterLink } from 'react-router-dom';
import { useAccount } from 'wagmi';
import { AccountPopover } from './AccountPopover';
+import { AlertPopover } from './AlertPopover';
import { DrawerMenu } from './DrawerMenu';
import { HoverMenu } from './HoverMenu';
@@ -34,10 +42,15 @@ export const Topnav = () => {
const isSm = useMediaQuery(theme.breakpoints.down('md'));
const accountMenuAnchorEl = useRef(null);
const [accountMenuOpen, setAccountMenuOpen] = useState(false);
+ const alertMenuAnchorEl = useRef(null);
+ const [alertMenuOpen, setAlertMenuOpen] = useState(false);
const [drawerOpen, setDrawerOpen] = useState(false);
const { status, pendingCount } = useActivitiesStatus();
+ const isNonRebasingOETH = useIsRebaseBannerVisible(tokens.mainnet.OETH);
+ const isNonRebasingOUSD = useIsRebaseBannerVisible(tokens.mainnet.OUSD);
const isLoading = status === 'pending' && pendingCount > 0;
+ const showRebaseMenu = isNonRebasingOETH || isNonRebasingOUSD;
return (
<>
@@ -106,6 +119,29 @@ export const Topnav = () => {
gap: 1.25,
}}
>
+ {showRebaseMenu && (
+ <>
+ {
+ setAlertMenuOpen(not);
+ }}
+ >
+
+
+ {
+ setAlertMenuOpen(false);
+ }}
+ />
+ >
+ )}
{
sx: { '&&&': { minWidth: 80, borderRadius: 2 } },
}}
hideAddress={isMd}
+ hideWrongNetwork
>
{isLoading ? (
diff --git a/apps/defi/src/env.d.ts b/apps/defi/src/env.d.ts
index 4e62a11be..2f6f1336e 100644
--- a/apps/defi/src/env.d.ts
+++ b/apps/defi/src/env.d.ts
@@ -4,7 +4,6 @@
interface ImportMetaEnv {
readonly VITE_WALLET_CONNECT_PROJECT_ID: string;
readonly VITE_ALCHEMY_ID: string;
- readonly VITE_ALCHEMY_ARBITRUM_ID: string;
readonly VITE_SUBSQUID_URL: string;
readonly VITE_ALCHEMY_RPC: string;
readonly VITE_CUSTOM_RPC?: string;
diff --git a/apps/defi/src/lang/en.json b/apps/defi/src/lang/en.json
index 7eeda8ddc..349448857 100644
--- a/apps/defi/src/lang/en.json
+++ b/apps/defi/src/lang/en.json
@@ -271,6 +271,12 @@
"value": "OETH analytics"
}
],
+ "2zUGfB": [
+ {
+ "type": 0,
+ "value": "Enable rebasing"
+ }
+ ],
"3Lr8o5": [
{
"type": 0,
@@ -651,6 +657,12 @@
"value": "The amount of OGV in your wallet"
}
],
+ "9/afiv": [
+ {
+ "type": 0,
+ "value": "Signing"
+ }
+ ],
"94TAJq": [
{
"type": 0,
@@ -1031,6 +1043,12 @@
"value": "0 months"
}
],
+ "Fbsq1t": [
+ {
+ "type": 0,
+ "value": "Rebasing enabled"
+ }
+ ],
"FfOtze": [
{
"type": 1,
@@ -1177,6 +1195,12 @@
"value": "Claim Rewards"
}
],
+ "IP0AHa": [
+ {
+ "type": 0,
+ "value": "Error while enabling rebasing"
+ }
+ ],
"IfZsEo": [
{
"type": 0,
@@ -2505,6 +2529,12 @@
"value": "Quorum"
}
],
+ "icM8PS": [
+ {
+ "type": 0,
+ "value": "It looks like you are minting from a contract and have not opted into yield. Contracts must opt-in to receive yield."
+ }
+ ],
"j8y+qc": [
{
"type": 1,
@@ -2625,6 +2655,16 @@
"value": "Approving"
}
],
+ "m2eUvr": [
+ {
+ "type": 0,
+ "value": "Enable rebasing for "
+ },
+ {
+ "type": 1,
+ "value": "symbol"
+ }
+ ],
"m9XypM": [
{
"type": 0,
@@ -3003,6 +3043,12 @@
"value": "Casting vote"
}
],
+ "v0B1E9": [
+ {
+ "type": 0,
+ "value": "Enabling rebasing"
+ }
+ ],
"vLIiaK": [
{
"type": 0,
@@ -3127,6 +3173,16 @@
"value": "Earnings and transaction history"
}
],
+ "xpU+qf": [
+ {
+ "type": 1,
+ "value": "symbolIn"
+ },
+ {
+ "type": 0,
+ "value": " on contract"
+ }
+ ],
"xwfunk": [
{
"type": 0,
diff --git a/apps/defi/src/lang/extracts/en.json b/apps/defi/src/lang/extracts/en.json
index 49f1a6dda..72ce19be7 100644
--- a/apps/defi/src/lang/extracts/en.json
+++ b/apps/defi/src/lang/extracts/en.json
@@ -119,6 +119,9 @@
"2ahSeJ": {
"defaultMessage": "OETH analytics"
},
+ "2zUGfB": {
+ "defaultMessage": "Enable rebasing"
+ },
"3Lr8o5": {
"defaultMessage": "Larger redemptions coming soon"
},
@@ -260,6 +263,9 @@
"8w4BfJ": {
"defaultMessage": "The amount of OGV in your wallet"
},
+ "9/afiv": {
+ "defaultMessage": "Signing"
+ },
"94TAJq": {
"defaultMessage": "TVL: {tvl}"
},
@@ -410,6 +416,9 @@
"F6lS59": {
"defaultMessage": "0 months"
},
+ "Fbsq1t": {
+ "defaultMessage": "Rebasing enabled"
+ },
"FfOtze": {
"defaultMessage": "{value}"
},
@@ -467,6 +476,9 @@
"IEM00S": {
"defaultMessage": "Claim Rewards"
},
+ "IP0AHa": {
+ "defaultMessage": "Error while enabling rebasing"
+ },
"IfZsEo": {
"defaultMessage": "Vote against"
},
@@ -983,6 +995,9 @@
"ibDi9l": {
"defaultMessage": "Quorum"
},
+ "icM8PS": {
+ "defaultMessage": "It looks like you are minting from a contract and have not opted into yield. Contracts must opt-in to receive yield."
+ },
"j8y+qc": {
"defaultMessage": "{label}"
},
@@ -1043,6 +1058,9 @@
"m/L3sK": {
"defaultMessage": "Approving"
},
+ "m2eUvr": {
+ "defaultMessage": "Enable rebasing for {symbol}"
+ },
"m9XypM": {
"defaultMessage": "Sending {amount} {symbolIn} to {chainOut}."
},
@@ -1208,6 +1226,9 @@
"utrdPr": {
"defaultMessage": "Casting vote"
},
+ "v0B1E9": {
+ "defaultMessage": "Enabling rebasing"
+ },
"vLIiaK": {
"defaultMessage": "Bridge {symbol}"
},
@@ -1259,6 +1280,9 @@
"xnfnI5": {
"defaultMessage": "Earnings and transaction history"
},
+ "xpU+qf": {
+ "defaultMessage": "{symbolIn} on contract"
+ },
"xwfunk": {
"defaultMessage": "Restricted Access"
},
diff --git a/apps/defi/vite.config.mts b/apps/defi/vite.config.mts
index fde1fda22..71be46649 100644
--- a/apps/defi/vite.config.mts
+++ b/apps/defi/vite.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
root: __dirname,
build: {
outDir: '../../dist/apps/defi',
+ emptyOutDir: true,
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
diff --git a/apps/governance/vite.config.mts b/apps/governance/vite.config.mts
index 951c9f213..e735413e0 100644
--- a/apps/governance/vite.config.mts
+++ b/apps/governance/vite.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
root: __dirname,
build: {
outDir: '../../dist/apps/governance',
+ emptyOutDir: true,
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
diff --git a/apps/oeth/vite.config.mts b/apps/oeth/vite.config.mts
index 71d8b6f58..936c579a5 100644
--- a/apps/oeth/vite.config.mts
+++ b/apps/oeth/vite.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
root: __dirname,
build: {
outDir: '../../dist/apps/oeth',
+ emptyOutDir: true,
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
diff --git a/apps/ousd/vite.config.mts b/apps/ousd/vite.config.mts
index a258ebe11..f11583297 100644
--- a/apps/ousd/vite.config.mts
+++ b/apps/ousd/vite.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
root: __dirname,
build: {
outDir: '../../dist/apps/ousd',
+ emptyOutDir: true,
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
diff --git a/apps/prime/vite.config.mts b/apps/prime/vite.config.mts
index 14fe9ef48..d17f9ccb1 100644
--- a/apps/prime/vite.config.mts
+++ b/apps/prime/vite.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
root: __dirname,
build: {
outDir: '../../dist/apps/prime',
+ emptyOutDir: true,
reportCompressedSize: true,
commonjsOptions: {
transformMixedEsModules: true,
diff --git a/libs/defi/ogv/src/migration/components/ConvertModal.tsx b/libs/defi/ogv/src/migration/components/ConvertModal.tsx
index eada23e4d..b9be40b34 100644
--- a/libs/defi/ogv/src/migration/components/ConvertModal.tsx
+++ b/libs/defi/ogv/src/migration/components/ConvertModal.tsx
@@ -102,45 +102,29 @@ export const ConvertModal = ({
} = useApprovalButton({
token: tokens.mainnet.OGV,
amount: total,
- spender: isNilOrEmpty(veOgvlockups)
- ? contracts.mainnet.zapperMigrator.address
- : contracts.mainnet.OGVMigrator.address,
+ spender: contracts.mainnet.OGVMigrator.address,
enableAllowance: true,
enableGas: true,
});
- const params = isNilOrEmpty(veOgvlockups)
- ? {
- contract: contracts.mainnet.zapperMigrator,
- functionName: 'migrate',
- args: [
- ogvBalance,
- ...(stakingRatio > 0
- ? [stakedConverted[0], getMonthDurationToSeconds(duration)]
- : []),
- ],
- }
- : {
- contract: contracts.mainnet.OGVMigrator,
- functionName: 'migrate',
- args: [
- veOgvlockups?.map((l) => BigInt(l.lockupId)) ?? [],
- ogvBalance,
- 0n,
- ogvRewards > 0n,
- stakedConverted[0],
- stakingRatio > 0 ? getMonthDurationToSeconds(duration) : 0n,
- ],
- };
-
const {
params: writeParams,
callbacks: writeCallbacks,
gasPrice: writeGas,
isWriteGasLoading,
} = useTxButton({
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- params: params as any,
+ params: {
+ contract: contracts.mainnet.OGVMigrator,
+ functionName: 'migrate',
+ args: [
+ veOgvlockups?.map((l) => BigInt(l.lockupId)) ?? [],
+ ogvBalance,
+ 0n,
+ ogvRewards > 0n,
+ stakedConverted[0],
+ stakingRatio > 0 ? getMonthDurationToSeconds(duration) : 0n,
+ ],
+ },
callbacks: {
onWriteSuccess: () => {
queryClient.invalidateQueries();
diff --git a/libs/defi/shared/src/clients/wagmi.ts b/libs/defi/shared/src/clients/wagmi.ts
index 9a85c7bea..7426746b5 100644
--- a/libs/defi/shared/src/clients/wagmi.ts
+++ b/libs/defi/shared/src/clients/wagmi.ts
@@ -53,7 +53,7 @@ export const wagmiConfig = createConfig({
? fallback([
http(
`${import.meta.env.VITE_ALCHEMY_ARBITRUM_RPC}${
- import.meta.env.VITE_ALCHEMY_ARBITRUM_ID
+ import.meta.env.VITE_ALCHEMY_ID
}`,
),
http(),
diff --git a/libs/defi/shared/src/components/Activities/components/ActivityTile.tsx b/libs/defi/shared/src/components/Activities/components/ActivityTile.tsx
index e142c439d..00aa8bce9 100644
--- a/libs/defi/shared/src/components/Activities/components/ActivityTile.tsx
+++ b/libs/defi/shared/src/components/Activities/components/ActivityTile.tsx
@@ -1,5 +1,9 @@
import { Box, Stack, Typography } from '@mui/material';
-import { ErrorTooltipLabel, ExternalLink } from '@origin/shared/components';
+import {
+ ErrorTooltipLabel,
+ ExternalLink,
+ TooltipLabel,
+} from '@origin/shared/components';
import { isNilOrEmpty } from '@origin/shared/utils';
import { useIntl } from 'react-intl';
@@ -19,7 +23,6 @@ export const ActivityTile = ({ activity, ...rest }: ActivityTileProps) => {
const title = option.title(activity, intl);
const subtitle = option.subtitle(activity, intl);
const icon = option.icon(activity);
- const endIcon = option?.endIcon?.(activity) ?? option.icon(activity);
const href = isNilOrEmpty(activity?.txHash)
? undefined
: `https://etherscan.io/tx/${activity?.txHash}`;
@@ -29,7 +32,7 @@ export const ActivityTile = ({ activity, ...rest }: ActivityTileProps) => {
{icon}
-
+
{!isNilOrEmpty(href) ? (
@@ -38,17 +41,19 @@ export const ActivityTile = ({ activity, ...rest }: ActivityTileProps) => {
{title}
)}
-
- {isNilOrEmpty(activity?.error) ? (
- {subtitle}
- ) : (
- {activity.error}
- )}
-
-
-
- {endIcon}
+ {isNilOrEmpty(activity?.error) ? (
+
+ {subtitle}
+
+ ) : (
+ {activity.error}
+ )}
+ {!isNilOrEmpty(option?.endIcon?.(activity)) && (
+
+ {option?.endIcon?.(activity)}
+
+ )}
);
};
diff --git a/libs/defi/shared/src/components/Activities/constants.tsx b/libs/defi/shared/src/components/Activities/constants.tsx
index fb22cddcc..8e1495842 100644
--- a/libs/defi/shared/src/components/Activities/constants.tsx
+++ b/libs/defi/shared/src/components/Activities/constants.tsx
@@ -27,6 +27,7 @@ import type {
DelegateVoteActivity,
ExtendStakeActivity,
MigrateActivity,
+ RebasingActivity,
RedeemActivity,
StakeActivity,
SwapActivity,
@@ -361,6 +362,35 @@ export const activityOptions: Record = {
return ;
},
},
+ rebasing: {
+ title: (activity, intl) =>
+ ({
+ pending: intl.formatMessage({ defaultMessage: 'Enabling rebasing' }),
+ signed: intl.formatMessage({ defaultMessage: 'Enabling rebasing' }),
+ success: intl.formatMessage({ defaultMessage: 'Rebasing enabled' }),
+ error: intl.formatMessage({
+ defaultMessage: 'Error while enabling rebasing',
+ }),
+ idle: intl.formatMessage({ defaultMessage: 'Enable rebasing' }),
+ })[activity.status],
+ subtitle: (activity, intl) => {
+ const { tokenIdIn } = activity as RebasingActivity;
+ const tokenIn = getTokenById(tokenIdIn);
+
+ return intl.formatMessage(
+ {
+ defaultMessage: '{symbolIn} on contract',
+ },
+ { symbolIn: tokenIn.symbol },
+ );
+ },
+ icon: (activity) => {
+ const { tokenIdIn } = activity as RebasingActivity;
+ const tokenIn = getTokenById(tokenIdIn);
+
+ return ;
+ },
+ },
redeem: {
title: (activity, intl) =>
({
diff --git a/libs/defi/shared/src/components/Activities/types.ts b/libs/defi/shared/src/components/Activities/types.ts
index 67c82baef..5d4a58fc6 100644
--- a/libs/defi/shared/src/components/Activities/types.ts
+++ b/libs/defi/shared/src/components/Activities/types.ts
@@ -96,6 +96,11 @@ export interface VoteActivity extends ActivityBase {
proposalId: string;
}
+export interface RebasingActivity extends ActivityBase {
+ type: 'rebasing';
+ tokenIdIn: TokenId;
+}
+
export type Activity =
| ApprovalActivity
| BridgeActivity
@@ -103,6 +108,7 @@ export type Activity =
| DelegateVoteActivity
| ExtendStakeActivity
| MigrateActivity
+ | RebasingActivity
| RedeemActivity
| StakeActivity
| SwapActivity
diff --git a/libs/defi/shared/src/components/Banners/RebasingBanner.tsx b/libs/defi/shared/src/components/Banners/RebasingBanner.tsx
new file mode 100644
index 000000000..1313a9153
--- /dev/null
+++ b/libs/defi/shared/src/components/Banners/RebasingBanner.tsx
@@ -0,0 +1,67 @@
+import {
+ Collapse,
+ Stack,
+ Typography,
+ useMediaQuery,
+ useTheme,
+} from '@mui/material';
+import { TokenIcon } from '@origin/shared/components';
+import { TxButton, useIsRebaseBannerVisible } from '@origin/shared/providers';
+import { useIntl } from 'react-intl';
+
+import { useTxButton } from '../TxButton';
+
+import type { StackProps } from '@mui/material';
+import type { Contract, Token } from '@origin/shared/contracts';
+
+export type RebasingBannerProps = { token: Token } & StackProps;
+
+export const RebasingBanner = ({ token, ...rest }: RebasingBannerProps) => {
+ const intl = useIntl();
+ const theme = useTheme();
+ const isSmall = useMediaQuery(theme.breakpoints.down('md'));
+ const isBannerVisible = useIsRebaseBannerVisible(token);
+ const { params, callbacks } = useTxButton({
+ params: {
+ contract: token as Contract,
+ functionName: 'rebaseOptIn',
+ value: 0n,
+ },
+ activity: {
+ type: 'rebasing',
+ status: 'idle',
+ tokenIdIn: token.id,
+ },
+ });
+
+ return (
+
+
+
+
+ {intl.formatMessage({
+ defaultMessage:
+ 'It looks like you are minting from a contract and have not opted into yield. You must opt-in to receive yield.',
+ })}
+
+
+
+
+ );
+};
diff --git a/libs/defi/shared/src/components/Banners/index.ts b/libs/defi/shared/src/components/Banners/index.ts
index cdd4a39e6..f575317ef 100644
--- a/libs/defi/shared/src/components/Banners/index.ts
+++ b/libs/defi/shared/src/components/Banners/index.ts
@@ -1 +1,2 @@
export * from './MergerBanner';
+export * from './RebasingBanner';
diff --git a/libs/defi/theme/src/components.tsx b/libs/defi/theme/src/components.tsx
index c1073d5d6..e1a7bd3b7 100644
--- a/libs/defi/theme/src/components.tsx
+++ b/libs/defi/theme/src/components.tsx
@@ -286,30 +286,25 @@ export const components = (base: Theme): ThemeOptions => ({
defaultProps: {
enableColorScheme: true,
},
- styleOverrides: (theme) => `
- html {
- overflow-x: hidden;
- padding-left: calc(100vw - 100%);
- }
-
- body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-rendering: optimizeLegibility;
- font-size: ${theme.typography.body3.fontSize}px;
- line-height: ${theme.typography.body3.lineHeight};
- font-weight: ${theme.typography.body3.fontWeight};
- }
-
- input[type=number] {
- -moz-appearance: textfield;
- }
-
- input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- `,
+ styleOverrides: (theme) => ({
+ body: {
+ height: '100%',
+ '-webkit-font-smoothing': 'antialiased',
+ '-moz-osx-font-smoothing': 'grayscale',
+ textRendering: 'optimizeLegibility',
+ fontSize: theme.typography.body3.fontSize,
+ lineHeight: theme.typography.body3.lineHeight,
+ fontWeight: theme.typography.body3.fontWeight,
+ },
+ 'input[type=number]': {
+ '-moz-appearance': 'textfield',
+ },
+ 'input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button':
+ {
+ '-webkit-appearance': 'none',
+ margin: 0,
+ },
+ }),
},
MuiDialog: {
defaultProps: {
diff --git a/libs/shared/contracts/src/abis/ZapperMigrator.ts b/libs/shared/contracts/src/abis/ZapperMigrator.ts
deleted file mode 100644
index 85fa096e2..000000000
--- a/libs/shared/contracts/src/abis/ZapperMigrator.ts
+++ /dev/null
@@ -1,164 +0,0 @@
-export const ZapperMigratorABI = [
- {
- type: 'constructor',
- inputs: [
- {
- name: '_ogv',
- type: 'address',
- internalType: 'address',
- },
- {
- name: '_ogn',
- type: 'address',
- internalType: 'address',
- },
- {
- name: '_migrator',
- type: 'address',
- internalType: 'address',
- },
- {
- name: '_ognStaking',
- type: 'address',
- internalType: 'address',
- },
- {
- name: '_governor',
- type: 'address',
- internalType: 'address',
- },
- ],
- stateMutability: 'nonpayable',
- },
- {
- type: 'function',
- name: 'governor',
- inputs: [],
- outputs: [
- {
- name: '',
- type: 'address',
- internalType: 'address',
- },
- ],
- stateMutability: 'view',
- },
- {
- type: 'function',
- name: 'initialize',
- inputs: [],
- outputs: [],
- stateMutability: 'nonpayable',
- },
- {
- type: 'function',
- name: 'migrate',
- inputs: [
- {
- name: 'ogvAmount',
- type: 'uint256',
- internalType: 'uint256',
- },
- ],
- outputs: [],
- stateMutability: 'nonpayable',
- },
- {
- type: 'function',
- name: 'migrate',
- inputs: [
- {
- name: 'ogvAmount',
- type: 'uint256',
- internalType: 'uint256',
- },
- {
- name: 'newStakeAmount',
- type: 'uint256',
- internalType: 'uint256',
- },
- {
- name: 'newStakeDuration',
- type: 'uint256',
- internalType: 'uint256',
- },
- ],
- outputs: [],
- stateMutability: 'nonpayable',
- },
- {
- type: 'function',
- name: 'migrator',
- inputs: [],
- outputs: [
- {
- name: '',
- type: 'address',
- internalType: 'contract IMigrator',
- },
- ],
- stateMutability: 'view',
- },
- {
- type: 'function',
- name: 'ogn',
- inputs: [],
- outputs: [
- {
- name: '',
- type: 'address',
- internalType: 'contract IMintableERC20',
- },
- ],
- stateMutability: 'view',
- },
- {
- type: 'function',
- name: 'ognStaking',
- inputs: [],
- outputs: [
- {
- name: '',
- type: 'address',
- internalType: 'contract IStaking',
- },
- ],
- stateMutability: 'view',
- },
- {
- type: 'function',
- name: 'ogv',
- inputs: [],
- outputs: [
- {
- name: '',
- type: 'address',
- internalType: 'contract IMintableERC20',
- },
- ],
- stateMutability: 'view',
- },
- {
- type: 'function',
- name: 'transferTokens',
- inputs: [
- {
- name: 'token',
- type: 'address',
- internalType: 'address',
- },
- {
- name: 'amount',
- type: 'uint256',
- internalType: 'uint256',
- },
- ],
- outputs: [],
- stateMutability: 'nonpayable',
- },
- {
- type: 'error',
- name: 'NotGovernor',
- inputs: [],
- },
-] as const;
diff --git a/libs/shared/contracts/src/contracts.ts b/libs/shared/contracts/src/contracts.ts
index c8aa05d6f..87da7885d 100644
--- a/libs/shared/contracts/src/contracts.ts
+++ b/libs/shared/contracts/src/contracts.ts
@@ -29,7 +29,6 @@ import { UniswapV3RouterABI } from './abis/UniswapV3Router';
import { UniswapV3WETHPrimeETHPoolABI } from './abis/UniswapV3WETHPrimeETHPool';
import { WOETHCCIPZapperABI } from './abis/WOETHCCIPZapper';
import { xOGNGovernanceABI } from './abis/xOGNGovernance';
-import { ZapperMigratorABI } from './abis/ZapperMigrator';
export const contracts = {
mainnet: {
@@ -238,12 +237,6 @@ export const contracts = {
abi: xOGNGovernanceABI,
name: 'xOGNGovernance',
},
- zapperMigrator: {
- address: '0xC202CDa20A8C34C7a282890eAE2Bb9CC0B115877',
- chainId: mainnet.id,
- abi: ZapperMigratorABI,
- name: 'zapperMigrator',
- },
},
arbitrum: {
// Chainlink CCIP
diff --git a/libs/shared/providers/src/prices/types.ts b/libs/shared/providers/src/prices/types.ts
index bbd268fd5..971d13acc 100644
--- a/libs/shared/providers/src/prices/types.ts
+++ b/libs/shared/providers/src/prices/types.ts
@@ -1,9 +1,11 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
+import type { HexAddress } from '@origin/shared/utils';
import type { ReadContractParameters } from 'viem';
export type WagmiOption = {
id: SupportedTokenPrice;
config: ReadContractParameters & {
+ address: HexAddress;
chainId: number;
};
mapResult?: (args: any) => number;
diff --git a/libs/shared/providers/src/rebaseBanner/components/RebaseBanner.tsx b/libs/shared/providers/src/rebaseBanner/components/RebaseBanner.tsx
index 994ab075f..165c93f26 100644
--- a/libs/shared/providers/src/rebaseBanner/components/RebaseBanner.tsx
+++ b/libs/shared/providers/src/rebaseBanner/components/RebaseBanner.tsx
@@ -12,7 +12,7 @@ export const RebaseBanner = (props: StackProps) => {
const intl = useIntl();
const theme = useTheme();
const isSmall = useMediaQuery(theme.breakpoints.down('md'));
- const visible = useIsRebaseBannerVisible();
+ const visible = useIsRebaseBannerVisible(tokens.mainnet.OETH);
if (!visible) {
return null;
diff --git a/libs/shared/providers/src/rebaseBanner/hooks.ts b/libs/shared/providers/src/rebaseBanner/hooks.ts
index eff60f6db..3dd201357 100644
--- a/libs/shared/providers/src/rebaseBanner/hooks.ts
+++ b/libs/shared/providers/src/rebaseBanner/hooks.ts
@@ -1,17 +1,28 @@
-import { tokens } from '@origin/shared/contracts';
import { ZERO_ADDRESS } from '@origin/shared/utils';
import { useAccount, useReadContract } from 'wagmi';
-export const useIsRebaseBannerVisible = () => {
- const { address, isConnected, connector } = useAccount();
+import { useIsContract } from '../wagmi';
+
+import type { Token } from '@origin/shared/contracts';
+
+export const useIsRebaseBannerVisible = (token: Token) => {
+ const { address, isConnected } = useAccount();
+ const { data: isContract, isLoading: isIscontractLoading } = useIsContract();
const { data, isLoading } = useReadContract({
- address: tokens.mainnet.OETH.address,
- abi: tokens.mainnet.OETH.abi,
+ address: token.address,
+ abi: token.abi,
functionName: 'rebaseState',
- chainId: tokens.mainnet.OETH.chainId,
+ chainId: token.chainId,
args: [address ?? ZERO_ADDRESS],
- query: { enabled: !!address },
+ query: { enabled: isConnected && !isIscontractLoading && isContract },
});
- return isConnected && !isLoading && data === 0 && connector?.id === 'safe';
+ return (
+ isConnected &&
+ !isIscontractLoading &&
+ !isLoading &&
+ data !== undefined &&
+ isContract &&
+ [0, 1].includes(Number(data))
+ );
};
diff --git a/libs/shared/providers/src/wagmi/components/OpenAccountModalButton.tsx b/libs/shared/providers/src/wagmi/components/OpenAccountModalButton.tsx
index f827f1b0b..f41379fb5 100644
--- a/libs/shared/providers/src/wagmi/components/OpenAccountModalButton.tsx
+++ b/libs/shared/providers/src/wagmi/components/OpenAccountModalButton.tsx
@@ -15,6 +15,7 @@ interface OpenAccountModalButtonProps extends ButtonProps {
connectedProps?: ButtonProps;
disconnectedProps?: ButtonProps;
hideAddress?: boolean;
+ hideWrongNetwork?: boolean;
}
export const OpenAccountModalButton = forwardRef<
@@ -27,6 +28,7 @@ export const OpenAccountModalButton = forwardRef<
connectedProps,
disconnectedProps,
hideAddress,
+ hideWrongNetwork,
children,
...rest
},
@@ -58,7 +60,7 @@ export const OpenAccountModalButton = forwardRef<
);
}
- if (chain.unsupported) {
+ if (!hideWrongNetwork && chain.unsupported) {
return (
{
+ const account = useAccount();
+ const addr = address ?? account?.address;
+ const cid = chainId ?? account?.chainId;
+ const res = useBytecode({
+ address: addr,
+ chainId: cid,
+ query: { enabled: !!addr && !!cid },
+ });
+
+ return { ...res, data: !!addr && !!cid && (res?.data?.length ?? 0) > 0 };
+};
diff --git a/libs/shared/providers/src/wagmi/hooks/useWriteTransaction.ts b/libs/shared/providers/src/wagmi/hooks/useWriteTransaction.ts
index 1ad86f3b7..e747101e9 100644
--- a/libs/shared/providers/src/wagmi/hooks/useWriteTransaction.ts
+++ b/libs/shared/providers/src/wagmi/hooks/useWriteTransaction.ts
@@ -34,7 +34,7 @@ export type WriteTransactionParameters<
abi: abi;
};
functionName: functionName;
- args: args;
+ args?: args;
value?: bigint;
};
diff --git a/package.json b/package.json
index f4235a575..e549b2cd3 100644
--- a/package.json
+++ b/package.json
@@ -17,21 +17,21 @@
"@analytics/google-tag-manager": "^0.5.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
- "@mui/material": "^5.15.19",
+ "@mui/material": "^5.15.20",
"@rainbow-me/rainbowkit": "2.1.2",
"@react-hookz/web": "^24.0.2",
- "@sentry/react": "8.7.0",
- "@tanstack/react-query": "5.40.0",
+ "@sentry/react": "8.9.2",
+ "@tanstack/react-query": "5.45.1",
"@tanstack/react-table": "8.17.3",
- "@wagmi/core": "2.10.5",
+ "@wagmi/core": "2.11.2",
"analytics": "0.8.13",
"axios": "^1.7.2",
"buffer": "^6.0.3",
"chart.js": "^4.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^3.2.0",
- "dnum": "^2.12.0",
- "graphql": "^16.8.1",
+ "dnum": "^2.13.1",
+ "graphql": "^16.8.2",
"immer": "^10.1.1",
"ramda": "^0.30.1",
"react": "18.3.1",
@@ -43,13 +43,13 @@
"react-tracked": "^2.0.0",
"react-transition-group": "^4.4.5",
"react-use": "^17.5.0",
- "tslib": "^2.6.2",
- "viem": "2.13.3",
- "wagmi": "2.9.8"
+ "tslib": "^2.6.3",
+ "viem": "2.15.1",
+ "wagmi": "2.10.2"
},
"devDependencies": {
- "@babel/core": "^7.24.6",
- "@babel/preset-react": "^7.24.6",
+ "@babel/core": "^7.24.7",
+ "@babel/preset-react": "^7.24.7",
"@emotion/babel-plugin": "11.11.0",
"@formatjs/cli": "^6.2.12",
"@graphql-codegen/cli": "^5.0.0",
@@ -57,28 +57,28 @@
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-codegen/typescript-react-query": "^6.0.0",
- "@nx/cypress": "19.1.1",
- "@nx/eslint": "19.1.1",
- "@nx/eslint-plugin": "19.1.1",
- "@nx/js": "19.1.1",
- "@nx/react": "19.1.1",
- "@nx/vite": "19.1.1",
- "@nx/web": "19.1.1",
- "@nx/workspace": "19.1.1",
- "@swc-node/register": "1.9.1",
+ "@nx/cypress": "19.3.0",
+ "@nx/eslint": "19.3.0",
+ "@nx/eslint-plugin": "19.3.0",
+ "@nx/js": "19.3.0",
+ "@nx/react": "19.3.0",
+ "@nx/vite": "19.3.0",
+ "@nx/web": "19.3.0",
+ "@nx/workspace": "19.3.0",
+ "@swc-node/register": "1.9.2",
"@swc/cli": "0.3.12",
- "@swc/core": "~1.5.24",
- "@swc/helpers": "~0.5.11",
- "@testing-library/react": "15.0.7",
+ "@swc/core": "1.6.1",
+ "@swc/helpers": "0.5.11",
+ "@testing-library/react": "16.0.0",
"@types/fs-extra": "^11.0.4",
- "@types/node": "20.14.0",
+ "@types/node": "20.14.5",
"@types/ramda": "^0.30.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-transition-group": "^4.4.10",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
- "@vitejs/plugin-react": "4.3.0",
+ "@vitejs/plugin-react": "4.3.1",
"babel-plugin-formatjs": "^10.5.16",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
@@ -94,13 +94,13 @@
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jsdom": "~24.1.0",
- "lint-staged": "^15.2.5",
- "nx": "19.1.1",
- "prettier": "^3.3.0",
+ "lint-staged": "^15.2.7",
+ "nx": "19.3.0",
+ "prettier": "^3.3.2",
"ts-node": "10.9.2",
- "tsx": "^4.11.2",
+ "tsx": "^4.15.6",
"typescript": "~5.4.5",
- "vite": "5.2.12",
+ "vite": "5.3.1",
"vite-plugin-dts": "~3.9.1",
"vite-plugin-static-copy": "^1.0.5",
"vite-plugin-svgr": "^4.2.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3a7347344..bf9472069 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -18,26 +18,26 @@ importers:
specifier: ^11.11.5
version: 11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@mui/material':
- specifier: ^5.15.19
- version: 5.15.19(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^5.15.20
+ version: 5.15.20(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rainbow-me/rainbowkit':
specifier: 2.1.2
- version: 2.1.2(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))(wagmi@2.9.8(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5)))
+ version: 2.1.2(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))(wagmi@2.10.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5)))
'@react-hookz/web':
specifier: ^24.0.2
version: 24.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/react':
- specifier: 8.7.0
- version: 8.7.0(react@18.3.1)
+ specifier: 8.9.2
+ version: 8.9.2(react@18.3.1)
'@tanstack/react-query':
- specifier: 5.40.0
- version: 5.40.0(react@18.3.1)
+ specifier: 5.45.1
+ version: 5.45.1(react@18.3.1)
'@tanstack/react-table':
specifier: 8.17.3
version: 8.17.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@wagmi/core':
- specifier: 2.10.5
- version: 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
+ specifier: 2.11.2
+ version: 2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
analytics:
specifier: 0.8.13
version: 0.8.13(@types/dlv@1.1.4)
@@ -57,11 +57,11 @@ importers:
specifier: ^3.2.0
version: 3.6.0
dnum:
- specifier: ^2.12.0
- version: 2.12.0
+ specifier: ^2.13.1
+ version: 2.13.1
graphql:
- specifier: ^16.8.1
- version: 16.8.1
+ specifier: ^16.8.2
+ version: 16.8.2
immer:
specifier: ^10.1.1
version: 10.1.1
@@ -96,87 +96,87 @@ importers:
specifier: ^17.5.0
version: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
tslib:
- specifier: ^2.6.2
- version: 2.6.2
+ specifier: ^2.6.3
+ version: 2.6.3
viem:
- specifier: 2.13.3
- version: 2.13.3(bufferutil@4.0.8)(typescript@5.4.5)
+ specifier: 2.15.1
+ version: 2.15.1(bufferutil@4.0.8)(typescript@5.4.5)
wagmi:
- specifier: 2.9.8
- version: 2.9.8(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
+ specifier: 2.10.2
+ version: 2.10.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
devDependencies:
'@babel/core':
- specifier: ^7.24.6
- version: 7.24.6
+ specifier: ^7.24.7
+ version: 7.24.7
'@babel/preset-react':
- specifier: ^7.24.6
- version: 7.24.6(@babel/core@7.24.6)
+ specifier: ^7.24.7
+ version: 7.24.7(@babel/core@7.24.7)
'@emotion/babel-plugin':
specifier: 11.11.0
version: 11.11.0
'@formatjs/cli':
specifier: ^6.2.12
- version: 6.2.12(@vue/compiler-core@3.4.27)
+ version: 6.2.12(@vue/compiler-core@3.4.29)
'@graphql-codegen/cli':
specifier: ^5.0.0
- version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.0)(bufferutil@4.0.8)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.4.5)
+ version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.5)(bufferutil@4.0.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5)
'@graphql-codegen/near-operation-file-preset':
specifier: ^3.0.0
- version: 3.0.0(graphql@16.8.1)
+ version: 3.0.0(graphql@16.8.2)
'@graphql-codegen/typescript':
specifier: ^4.0.7
- version: 4.0.7(graphql@16.8.1)
+ version: 4.0.7(graphql@16.8.2)
'@graphql-codegen/typescript-operations':
specifier: ^4.2.1
- version: 4.2.1(graphql@16.8.1)
+ version: 4.2.1(graphql@16.8.2)
'@graphql-codegen/typescript-react-query':
specifier: ^6.0.0
- version: 6.1.0(graphql@16.8.1)
+ version: 6.1.0(graphql@16.8.2)
'@nx/cypress':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nx/eslint':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
'@nx/eslint-plugin':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nx/js':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nx/react':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))
'@nx/vite':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))(vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0))
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))(vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1))
'@nx/web':
- specifier: 19.1.1
- version: 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ specifier: 19.3.0
+ version: 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nx/workspace':
- specifier: 19.1.1
- version: 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ specifier: 19.3.0
+ version: 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
'@swc-node/register':
- specifier: 1.9.1
- version: 1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5)
+ specifier: 1.9.2
+ version: 1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5)
'@swc/cli':
specifier: 0.3.12
- version: 0.3.12(@swc/core@1.5.24(@swc/helpers@0.5.11))(chokidar@3.6.0)
+ version: 0.3.12(@swc/core@1.6.1(@swc/helpers@0.5.11))(chokidar@3.6.0)
'@swc/core':
- specifier: ~1.5.24
- version: 1.5.24(@swc/helpers@0.5.11)
+ specifier: 1.6.1
+ version: 1.6.1(@swc/helpers@0.5.11)
'@swc/helpers':
- specifier: ~0.5.11
+ specifier: 0.5.11
version: 0.5.11
'@testing-library/react':
- specifier: 15.0.7
- version: 15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 16.0.0
+ version: 16.0.0(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/fs-extra':
specifier: ^11.0.4
version: 11.0.4
'@types/node':
- specifier: 20.14.0
- version: 20.14.0
+ specifier: 20.14.5
+ version: 20.14.5
'@types/ramda':
specifier: ^0.30.0
version: 0.30.0
@@ -196,8 +196,8 @@ importers:
specifier: 7.8.0
version: 7.8.0(eslint@8.57.0)(typescript@5.4.5)
'@vitejs/plugin-react':
- specifier: 4.3.0
- version: 4.3.0(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))
+ specifier: 4.3.1
+ version: 4.3.1(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))
babel-plugin-formatjs:
specifier: ^10.5.16
version: 10.5.16
@@ -221,7 +221,7 @@ importers:
version: 6.8.0(eslint@8.57.0)
eslint-plugin-prettier:
specifier: ^5.1.3
- version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.0)
+ version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.2)
eslint-plugin-react:
specifier: 7.34.1
version: 7.34.1(eslint@8.57.0)
@@ -244,38 +244,38 @@ importers:
specifier: ~24.1.0
version: 24.1.0(bufferutil@4.0.8)
lint-staged:
- specifier: ^15.2.5
- version: 15.2.5
+ specifier: ^15.2.7
+ version: 15.2.7
nx:
- specifier: 19.1.1
- version: 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ specifier: 19.3.0
+ version: 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
prettier:
- specifier: ^3.3.0
- version: 3.3.0
+ specifier: ^3.3.2
+ version: 3.3.2
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(typescript@5.4.5)
+ version: 10.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(typescript@5.4.5)
tsx:
- specifier: ^4.11.2
- version: 4.11.2
+ specifier: ^4.15.6
+ version: 4.15.6
typescript:
specifier: ~5.4.5
version: 5.4.5
vite:
- specifier: 5.2.12
- version: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ specifier: 5.3.1
+ version: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
vite-plugin-dts:
specifier: ~3.9.1
- version: 3.9.1(@types/node@20.14.0)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))
+ version: 3.9.1(@types/node@20.14.5)(rollup@4.18.0)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))
vite-plugin-static-copy:
specifier: ^1.0.5
- version: 1.0.5(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))
+ version: 1.0.5(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))
vite-plugin-svgr:
specifier: ^4.2.0
- version: 4.2.0(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))
+ version: 4.2.0(rollup@4.18.0)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))
vite-tsconfig-paths:
specifier: ~4.3.1
- version: 4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))
+ version: 4.3.2(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))
packages:
@@ -332,16 +332,20 @@ packages:
resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.4':
- resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.6':
resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.6':
- resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
+ '@babel/compat-data@7.24.7':
+ resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.24.7':
+ resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.23.6':
@@ -352,30 +356,36 @@ packages:
resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.24.7':
+ resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.24.6':
resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-compilation-targets@7.24.6':
resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.4':
- resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
+ '@babel/helper-compilation-targets@7.24.7':
+ resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.24.5':
- resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
+ '@babel/helper-create-class-features-plugin@7.24.4':
+ resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -386,8 +396,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.15':
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-create-class-features-plugin@7.24.7':
+ resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -398,6 +408,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@7.24.7':
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-define-polyfill-provider@0.6.2':
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
@@ -407,44 +423,62 @@ packages:
resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-environment-visitor@7.24.7':
+ resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-function-name@7.24.6':
resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-function-name@7.24.7':
+ resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-hoist-variables@7.24.6':
resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-hoist-variables@7.24.7':
+ resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.5':
- resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
+ '@babel/helper-member-expression-to-functions@7.23.0':
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.24.6':
resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.22.15':
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
+ '@babel/helper-member-expression-to-functions@7.24.7':
+ resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.3':
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ '@babel/helper-module-imports@7.22.15':
+ resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.6':
resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.24.7':
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.24.6':
resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.24.7':
+ resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -453,6 +487,10 @@ packages:
resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-optimise-call-expression@7.24.7':
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-plugin-utils@7.22.5':
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
@@ -461,11 +499,9 @@ packages:
resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.22.20':
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ '@babel/helper-plugin-utils@7.24.7':
+ resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
'@babel/helper-remap-async-to-generator@7.24.6':
resolution: {integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==}
@@ -473,6 +509,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-remap-async-to-generator@7.24.7':
+ resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-replace-supers@7.24.1':
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
@@ -485,10 +527,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.24.7':
+ resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-simple-access@7.24.6':
resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-simple-access@7.24.7':
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
@@ -497,10 +549,18 @@ packages:
resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-split-export-declaration@7.24.6':
resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-split-export-declaration@7.24.7':
+ resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-string-parser@7.23.4':
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
@@ -509,6 +569,10 @@ packages:
resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.24.7':
+ resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.22.20':
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
@@ -517,20 +581,24 @@ packages:
resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.6':
- resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.22.20':
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ '@babel/helper-validator-option@7.24.7':
+ resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.24.6':
resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.6':
- resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
+ '@babel/helper-wrap-function@7.24.7':
+ resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.24.7':
+ resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.23.4':
@@ -541,6 +609,10 @@ packages:
resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
engines: {node: '>=6.9.0'}
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/parser@7.23.9':
resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
@@ -551,11 +623,10 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5':
- resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/parser@7.24.7':
+ resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6':
resolution: {integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==}
@@ -563,8 +634,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1':
- resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
+ resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -575,11 +646,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1':
- resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
+ resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6':
resolution: {integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==}
@@ -587,11 +658,11 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1':
- resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
+ resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.13.0
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6':
resolution: {integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==}
@@ -599,6 +670,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
+ resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-async-generator-functions@7.20.7':
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
@@ -619,8 +696,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-default-from@7.24.6':
- resolution: {integrity: sha512-qPPDbYs9j5IArMFqYi85QxatHURSzRyskKpIbjrVoVglDuGdhu1s7UTCmXvP/qR2aHa3EdJ8X3iZvQAHjmdHUw==}
+ '@babel/plugin-proposal-export-default-from@7.24.7':
+ resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -700,8 +777,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.24.6':
- resolution: {integrity: sha512-Nzl7kZ4tjOM2LJpejBMPwZs7OJfc26++2HsMQuSrw6gxpqXGtZZ3Rj4Zt4Qm7vulMZL2gHIGGc2stnlQnHQCqA==}
+ '@babel/plugin-syntax-export-default-from@7.24.7':
+ resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -717,8 +794,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.24.6':
- resolution: {integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==}
+ '@babel/plugin-syntax-flow@7.24.7':
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -729,20 +806,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.24.1':
- resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-import-assertions@7.24.6':
resolution: {integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.1':
- resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
+ '@babel/plugin-syntax-import-assertions@7.24.7':
+ resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -753,6 +824,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-attributes@7.24.7':
+ resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -763,14 +840,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ '@babel/plugin-syntax-jsx@7.24.6':
+ resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.6':
- resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
+ '@babel/plugin-syntax-jsx@7.24.7':
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -817,14 +894,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.1':
- resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
+ '@babel/plugin-syntax-typescript@7.24.6':
+ resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.6':
- resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
+ '@babel/plugin-syntax-typescript@7.24.7':
+ resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -847,8 +924,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.3':
- resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
+ '@babel/plugin-transform-arrow-functions@7.24.7':
+ resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -859,8 +936,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.1':
- resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
+ '@babel/plugin-transform-async-generator-functions@7.24.7':
+ resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -871,6 +948,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-to-generator@7.24.7':
+ resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoped-functions@7.24.1':
resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
@@ -883,14 +966,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.4':
- resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
+ '@babel/plugin-transform-block-scoped-functions@7.24.7':
+ resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.5':
- resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==}
+ '@babel/plugin-transform-block-scoping@7.24.4':
+ resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -901,8 +984,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.1':
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
+ '@babel/plugin-transform-block-scoping@7.24.7':
+ resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -913,11 +996,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.4':
- resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
+ '@babel/plugin-transform-class-properties@7.24.7':
+ resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-class-static-block@7.24.6':
resolution: {integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==}
@@ -925,20 +1008,26 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@7.24.7':
+ resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
'@babel/plugin-transform-classes@7.24.1':
resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-classes@7.24.5':
- resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==}
+ '@babel/plugin-transform-classes@7.24.6':
+ resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-classes@7.24.6':
- resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==}
+ '@babel/plugin-transform-classes@7.24.7':
+ resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -955,14 +1044,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.1':
- resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
+ '@babel/plugin-transform-computed-properties@7.24.7':
+ resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.5':
- resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==}
+ '@babel/plugin-transform-destructuring@7.24.1':
+ resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -973,8 +1062,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.1':
- resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
+ '@babel/plugin-transform-destructuring@7.24.7':
+ resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -985,8 +1074,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.1':
- resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
+ '@babel/plugin-transform-dotall-regex@7.24.7':
+ resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -997,8 +1086,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.1':
- resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
+ '@babel/plugin-transform-duplicate-keys@7.24.7':
+ resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1009,8 +1098,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.1':
- resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
+ '@babel/plugin-transform-dynamic-import@7.24.7':
+ resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1021,8 +1110,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.1':
- resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.24.7':
+ resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1033,14 +1122,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-export-namespace-from@7.24.7':
+ resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-flow-strip-types@7.23.3':
resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.24.6':
- resolution: {integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==}
+ '@babel/plugin-transform-flow-strip-types@7.24.7':
+ resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1057,6 +1152,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-for-of@7.24.7':
+ resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-function-name@7.24.1':
resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
@@ -1069,8 +1170,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.1':
- resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
+ '@babel/plugin-transform-function-name@7.24.7':
+ resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1081,6 +1182,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-json-strings@7.24.7':
+ resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-literals@7.24.1':
resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
@@ -1093,8 +1200,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.1':
- resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
+ '@babel/plugin-transform-literals@7.24.7':
+ resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1105,6 +1212,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7':
+ resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-member-expression-literals@7.24.1':
resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
@@ -1117,8 +1230,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.1':
- resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
+ '@babel/plugin-transform-member-expression-literals@7.24.7':
+ resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1129,6 +1242,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-amd@7.24.7':
+ resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-commonjs@7.24.1':
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
@@ -1141,8 +1260,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.1':
- resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
+ '@babel/plugin-transform-modules-commonjs@7.24.7':
+ resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1153,8 +1272,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.1':
- resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
+ '@babel/plugin-transform-modules-systemjs@7.24.7':
+ resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1165,11 +1284,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-modules-umd@7.24.7':
+ resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-named-capturing-groups-regex@7.24.6':
resolution: {integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==}
@@ -1177,11 +1296,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.24.1':
- resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
+ resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/plugin-transform-new-target@7.24.6':
resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==}
@@ -1189,8 +1308,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1':
- resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
+ '@babel/plugin-transform-new-target@7.24.7':
+ resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1201,8 +1320,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.1':
- resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1213,8 +1332,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.5':
- resolution: {integrity: sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==}
+ '@babel/plugin-transform-numeric-separator@7.24.7':
+ resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1225,6 +1344,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-rest-spread@7.24.7':
+ resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-super@7.24.1':
resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
@@ -1237,8 +1362,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.1':
- resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
+ '@babel/plugin-transform-object-super@7.24.7':
+ resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1249,8 +1374,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.5':
- resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
+ '@babel/plugin-transform-optional-catch-binding@7.24.7':
+ resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1261,14 +1386,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.1':
- resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
+ '@babel/plugin-transform-optional-chaining@7.24.7':
+ resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.5':
- resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==}
+ '@babel/plugin-transform-parameters@7.24.1':
+ resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1279,8 +1404,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.1':
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ '@babel/plugin-transform-parameters@7.24.7':
+ resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1291,8 +1416,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.5':
- resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==}
+ '@babel/plugin-transform-private-methods@7.24.7':
+ resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1303,6 +1428,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-property-in-object@7.24.7':
+ resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-property-literals@7.24.1':
resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
@@ -1315,50 +1446,50 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-constant-elements@7.23.3':
- resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
+ '@babel/plugin-transform-property-literals@7.24.7':
+ resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.6':
- resolution: {integrity: sha512-/3iiEEHDsJuj9QU09gbyWGSUxDboFcD7Nj6dnHIlboWSodxXAoaY/zlNMHeYAC0WsERMqgO9a7UaM77CsYgWcg==}
+ '@babel/plugin-transform-react-constant-elements@7.23.3':
+ resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.24.6':
- resolution: {integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==}
+ '@babel/plugin-transform-react-display-name@7.24.7':
+ resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.24.6':
- resolution: {integrity: sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg==}
+ '@babel/plugin-transform-react-jsx-development@7.24.7':
+ resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.24.6':
- resolution: {integrity: sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA==}
+ '@babel/plugin-transform-react-jsx-self@7.24.7':
+ resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.24.6':
- resolution: {integrity: sha512-pCtPHhpRZHfwdA5G1Gpk5mIzMA99hv0R8S/Ket50Rw+S+8hkt3wBWqdqHaPw0CuUYxdshUgsPiLQ5fAs4ASMhw==}
+ '@babel/plugin-transform-react-jsx-source@7.24.7':
+ resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.6':
- resolution: {integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==}
+ '@babel/plugin-transform-react-jsx@7.24.7':
+ resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.1':
- resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
+ '@babel/plugin-transform-react-pure-annotations@7.24.7':
+ resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1369,8 +1500,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.1':
- resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
+ '@babel/plugin-transform-regenerator@7.24.7':
+ resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1381,8 +1512,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.3':
- resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ '@babel/plugin-transform-reserved-words@7.24.7':
+ resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1393,6 +1524,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-runtime@7.24.7':
+ resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-shorthand-properties@7.24.1':
resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
@@ -1405,6 +1542,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-shorthand-properties@7.24.7':
+ resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-spread@7.24.1':
resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
@@ -1417,8 +1560,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.1':
- resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
+ '@babel/plugin-transform-spread@7.24.7':
+ resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1429,6 +1572,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-sticky-regex@7.24.7':
+ resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-template-literals@7.24.1':
resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
@@ -1441,8 +1590,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.5':
- resolution: {integrity: sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==}
+ '@babel/plugin-transform-template-literals@7.24.7':
+ resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1453,8 +1602,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.5':
- resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
+ '@babel/plugin-transform-typeof-symbol@7.24.7':
+ resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1465,8 +1614,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.1':
- resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
+ '@babel/plugin-transform-typescript@7.24.7':
+ resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1477,8 +1626,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.1':
- resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
+ '@babel/plugin-transform-unicode-escapes@7.24.7':
+ resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1489,8 +1638,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.1':
- resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
+ '@babel/plugin-transform-unicode-property-regex@7.24.7':
+ resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1501,11 +1650,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.1':
- resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
+ '@babel/plugin-transform-unicode-regex@7.24.7':
+ resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-unicode-sets-regex@7.24.6':
resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==}
@@ -1513,11 +1662,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.24.5':
- resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==}
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7':
+ resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/preset-env@7.24.6':
resolution: {integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==}
@@ -1525,8 +1674,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.24.6':
- resolution: {integrity: sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g==}
+ '@babel/preset-env@7.24.7':
+ resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/preset-flow@7.24.7':
+ resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1536,20 +1691,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.6':
- resolution: {integrity: sha512-8mpzh1bWvmINmwM3xpz6ahu57mNaWavMm+wBNjQ4AFu1nghKBiIRET7l/Wmj4drXany/BBGjJZngICcD98F1iw==}
+ '@babel/preset-react@7.24.7':
+ resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.24.1':
- resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
+ '@babel/preset-typescript@7.24.6':
+ resolution: {integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.24.6':
- resolution: {integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==}
+ '@babel/preset-typescript@7.24.7':
+ resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1583,6 +1738,10 @@ packages:
resolution: {integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.24.7':
+ resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.23.9':
resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
engines: {node: '>=6.9.0'}
@@ -1591,6 +1750,10 @@ packages:
resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.24.7':
+ resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.23.9':
resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
@@ -1599,6 +1762,10 @@ packages:
resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.24.7':
+ resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.23.9':
resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
engines: {node: '>=6.9.0'}
@@ -1607,11 +1774,15 @@ packages:
resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.24.7':
+ resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
+ engines: {node: '>=6.9.0'}
+
'@coinbase/wallet-sdk@3.9.3':
resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==}
- '@coinbase/wallet-sdk@4.0.2':
- resolution: {integrity: sha512-WMUeFbtS0rn8zavjAmNhFWq1r3TV7E5KuSij1Sar0/XuOC+nhj96uqSlIApAHdhuScoKZBq39VYsAQCHzOC6/w==}
+ '@coinbase/wallet-sdk@4.0.3':
+ resolution: {integrity: sha512-y/OGEjlvosikjfB+wk+4CVb9OxD1ob9cidEBLI5h8Hxaf/Qoob2XoVT1uvhtAzBx34KpGYSd+alKvh/GCRre4Q==}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
@@ -1680,119 +1851,239 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.20.2':
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.20.2':
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.20.2':
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.20.2':
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.20.2':
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.20.2':
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.20.2':
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.20.2':
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.20.2':
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.20.2':
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.20.2':
resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.20.2':
resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.20.2':
resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.20.2':
resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.20.2':
resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.20.2':
resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.20.2':
resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-x64@0.20.2':
resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
+
+ '@esbuild/sunos-x64@0.20.2':
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
'@esbuild/win32-arm64@0.20.2':
resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
@@ -1800,18 +2091,36 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.20.2':
resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.20.2':
resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2348,8 +2657,8 @@ packages:
resolution: {integrity: sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA==}
engines: {node: ^18.18 || >=20}
- '@metamask/rpc-errors@6.2.1':
- resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==}
+ '@metamask/rpc-errors@6.3.0':
+ resolution: {integrity: sha512-B1UIG/0xWkaDs/d6xrxsRf7kmFLdk8YE0HUToaFumjwQM36AjBsqEzVyemPTQv0SIrAPFnSmkLt053JOWcu5iw==}
engines: {node: '>=16.0.0'}
'@metamask/safe-event-emitter@2.0.0':
@@ -2359,17 +2668,17 @@ packages:
resolution: {integrity: sha512-ihb3B0T/wJm1eUuArYP4lCTSEoZsClHhuWyfo/kMX3m/odpqNcPfsz5O2A3NT7dXCAgWPGDQGPqygCpgeniKMw==}
engines: {node: '>=12.0.0'}
- '@metamask/sdk-communication-layer@0.20.2':
- resolution: {integrity: sha512-TN+whYbCClFSkx52Ild1RcjoRyz8YZgwNvZeooIcZIvCfBM6U9W5273KGiY7WLc/oO4KKmFk17d7vMO4gNvhhw==}
+ '@metamask/sdk-communication-layer@0.20.5':
+ resolution: {integrity: sha512-Y3pzg1GBB7tDUCUsyhvlhxQ+h/pDrTjO2yUwjCJj2S8Nx5OtdRv/foRGfbDHkfYt6Z9ANRfivWU2U6El17B24A==}
peerDependencies:
- cross-fetch: ^3.1.5
+ cross-fetch: ^4.0.0
eciesjs: ^0.3.16
eventemitter2: ^6.4.7
readable-stream: ^3.6.2
socket.io-client: ^4.5.1
- '@metamask/sdk-install-modal-web@0.20.2':
- resolution: {integrity: sha512-0QiaZhV15AGdN1zU2jfTI32eC3YkwEpzDfR9+oiZ9bd2G72c6lYBhTsmDGUd01aP6A+bqJR5PjI8Wh2AWtoLeA==}
+ '@metamask/sdk-install-modal-web@0.20.4':
+ resolution: {integrity: sha512-AX3mTr0IDpS0ajV83okTaixG+2wIxTVbgvEuQgAj2Ed7PWAdiZ1aX93AVcaCgkOWhTf267z7mXCSuBDpBCje9g==}
peerDependencies:
i18next: 22.5.1
react: ^18.2.0
@@ -2384,8 +2693,8 @@ packages:
react-native:
optional: true
- '@metamask/sdk@0.20.3':
- resolution: {integrity: sha512-HZ9NwA+LxiXzuy0YWbWsuD4xejQtp85bhcCAf8UgpA/0dOyF3RS4dKDdBBXSyRgk3RWPjeJgHxioaH4CmBmiRA==}
+ '@metamask/sdk@0.20.5':
+ resolution: {integrity: sha512-BEL3BKbb0O09QgOzvyPH5xUONl2uicS9WT1AYhZ8yR4ytz5fhyHWJzs8Q/cwgm1qIdn3eumnjXfgA6pKirWa3A==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -2395,12 +2704,16 @@ packages:
react-dom:
optional: true
+ '@metamask/superstruct@3.0.0':
+ resolution: {integrity: sha512-TOm+Lt/lCJk9j/3QT2LucrPewRmqI7/GKT+blK2IIOAkBMS+9TmeNjd2Y+TlfpSSYstaYsGZyz1XwpiTCg6RLA==}
+ engines: {node: '>=16.0.0'}
+
'@metamask/utils@5.0.2':
resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==}
engines: {node: '>=14.0.0'}
- '@metamask/utils@8.4.0':
- resolution: {integrity: sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg==}
+ '@metamask/utils@8.5.0':
+ resolution: {integrity: sha512-I6bkduevXb72TIM9q2LRO63JSsF9EXduh3sBr9oybNX2hNNpr/j1tEjXrsG0Uabm4MJ1xkGAQEMwifvKZIkyxQ==}
engines: {node: '>=16.0.0'}
'@microsoft/api-extractor-model@7.28.13':
@@ -2456,11 +2769,11 @@ packages:
'@types/react':
optional: true
- '@mui/core-downloads-tracker@5.15.19':
- resolution: {integrity: sha512-tCHSi/Tomez9ERynFhZRvFO6n9ATyrPs+2N80DMDzp6xDVirbBjEwhPcE+x7Lj+nwYw0SqFkOxyvMP0irnm55w==}
+ '@mui/core-downloads-tracker@5.15.20':
+ resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==}
- '@mui/material@5.15.19':
- resolution: {integrity: sha512-lp5xQBbcRuxNtjpWU0BWZgIrv2XLUz4RJ0RqFXBdESIsKoGCQZ6P3wwU5ZPuj5TjssNiKv9AlM+vHopRxZhvVQ==}
+ '@mui/material@5.15.20':
+ resolution: {integrity: sha512-tVq3l4qoXx/NxUgIx/x3lZiPn/5xDbdTE8VrLczNpfblLYZzlrbxA7kb9mI8NoBF6+w9WE9IrxWnKK5KlPI2bg==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -2476,8 +2789,8 @@ packages:
'@types/react':
optional: true
- '@mui/private-theming@5.15.14':
- resolution: {integrity: sha512-UH0EiZckOWcxiXLX3Jbb0K7rC8mxTr9L9l6QhOZxYc4r8FHUkefltV9VDGLrzCaWh30SQiJvAEd7djX3XXY6Xw==}
+ '@mui/private-theming@5.15.20':
+ resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -2499,8 +2812,8 @@ packages:
'@emotion/styled':
optional: true
- '@mui/system@5.15.15':
- resolution: {integrity: sha512-aulox6N1dnu5PABsfxVGOZffDVmlxPOVgj56HrUnJE8MCSh8lOvvkd47cebIVQQYAjpwieXQXiDPj5pwM40jTQ==}
+ '@mui/system@5.15.20':
+ resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
@@ -2523,8 +2836,8 @@ packages:
'@types/react':
optional: true
- '@mui/utils@5.15.14':
- resolution: {integrity: sha512-0lF/7Hh/ezDv5X7Pry6enMsbYyGKjADzvHyo3Qrc/SSlTsQ1VkbDMbH0m2t3OR5iIVLwMoxwM7yGd+6FCMtTFA==}
+ '@mui/utils@5.15.20':
+ resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
@@ -2536,17 +2849,13 @@ packages:
'@noble/curves@1.2.0':
resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
- '@noble/curves@1.3.0':
- resolution: {integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==}
+ '@noble/curves@1.4.0':
+ resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
'@noble/hashes@1.3.2':
resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==}
engines: {node: '>= 16'}
- '@noble/hashes@1.3.3':
- resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==}
- engines: {node: '>= 16'}
-
'@noble/hashes@1.4.0':
resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
engines: {node: '>= 16'}
@@ -2563,49 +2872,49 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@nrwl/cypress@19.1.1':
- resolution: {integrity: sha512-sorUYgADz1MxM7veujJuQ5IohXkbTWu0gPJcZeTUB2TGzpqsqjVTfQ5pHzMRG8LFvL0vVUJQM06FQ0VEfuVLDw==}
+ '@nrwl/cypress@19.3.0':
+ resolution: {integrity: sha512-K7isE85sYZMp5FV/1o8GzwXmCqLmeb67c0p5y1Ea/qLB0X8XpE4SQXhZsUhqG2x4fuA8FX+yugB6edPeceFV3w==}
- '@nrwl/devkit@19.1.1':
- resolution: {integrity: sha512-CrbEy4zBRPPV8gGtwpSgfxJUElXRxEGvvxQlrhoCKmzH7v9407jFjXpzYOipwa9u65a7raCCtsSKYuRdecRglQ==}
+ '@nrwl/devkit@19.3.0':
+ resolution: {integrity: sha512-WRcph/7U37HkTLIRzQ2oburZVfEFkPHJUn7vmo46gCq+N2cAKy3qwONO0RbthhjFIsG94YPXqFWFlV6k4nXpxA==}
- '@nrwl/eslint-plugin-nx@19.1.1':
- resolution: {integrity: sha512-IQYQ7vaCRysK8WOlK3xRJYqE/Rnnj4B69H/b4hPVQyV0IVUbHBcbKhOQftj8zdJyDAKqrXFxqMZ/hqvAvN6sXg==}
+ '@nrwl/eslint-plugin-nx@19.3.0':
+ resolution: {integrity: sha512-urquS7aYwCnXeTqCVb7bpjfBkcvrm84igOP+S59rDhmw4sNxSbI0iFJrLwdVnO8oPFFP1BR4DMUYSWRvdP8NZQ==}
- '@nrwl/js@19.1.1':
- resolution: {integrity: sha512-MiQJeb/GcVcRj0DibOIQuQOgDsE6js7TGJZ0zTOydviTWc8YDyHSutVnpYvUzrrEtDyN5DdDvFYkscggBdCjpg==}
+ '@nrwl/js@19.3.0':
+ resolution: {integrity: sha512-G+7nvAlfwnnlcPnoAhpcCrsOZTwa7hRd6WoqSrYuG/9Ge1NZ3H+rwvS5wX+bTKn8/hKHQdDuJUTomyOTpt1I1g==}
- '@nrwl/react@19.1.1':
- resolution: {integrity: sha512-Qy9eorgzXC8Q7Rx0pyBOY7f4Yde5pwQHslv0s6AERH80+tO0iODLGX5x3Qwod1hdWj2YQsUOX8C+0xvGDB9luQ==}
+ '@nrwl/react@19.3.0':
+ resolution: {integrity: sha512-Yb7CEVKB2Ebso+uY3OTV9FStNpzXPggC4mzVJZRm7KcoMSE3Md+fvkAB1LVkHc8WFye4mULMog+tfeGysk79Yw==}
- '@nrwl/tao@19.1.1':
- resolution: {integrity: sha512-03iaf+rnOEf5HHLsiSA7QIk63mBtcU4vkqkggoYLxJpMthx5nD4Z12nk+G/Z5RKWYUG4k3j6G7CFiIQRYOy7TA==}
+ '@nrwl/tao@19.3.0':
+ resolution: {integrity: sha512-MyGYeHbh9O4Tv9xmz3Du+/leY5sKUHaPy4ancfNyShHgYi21hemX0/YYjzzoYHi44D8GzSc1XG2rAuwba7Kilw==}
hasBin: true
- '@nrwl/vite@19.1.1':
- resolution: {integrity: sha512-M98R4izmiz6Ck1lgLJM7dtTSBJ+uQJif5YAQvgyPrI5SIj2ECTpy4upZtNRlZhUd1k6sfc+lWXHzDhhkA/dJew==}
+ '@nrwl/vite@19.3.0':
+ resolution: {integrity: sha512-gvzySN1OUmp5D3iT9nHxYvrdB9c0xf5xdq9BMsCV1nn7VY5VioF5tmksP89s3nMSWyoqoFY6e5eJNPsTySLgZA==}
- '@nrwl/web@19.1.1':
- resolution: {integrity: sha512-g3OebUaNpq5+zYMrZLbLyixXG3fKjjQndxZyStr8Uwxdi4xWIy5zp9wP6zrScqHif8HKtsnKINCueRQEXBpfjA==}
+ '@nrwl/web@19.3.0':
+ resolution: {integrity: sha512-LDHqYVqdLSRvNrUCKDOIenaO//UjLElX3LL+Fr14dqzCKR26T8R+ZiwLcCPlre2cfskoDOvYdIHY/4pmebGW/w==}
- '@nrwl/workspace@19.1.1':
- resolution: {integrity: sha512-lWmz9tVX1ShKOugdn/A0PbP40Pzq5MsWdkLMwpiKCZLF4WMNzX+cb5W05VvCagHKRAovgZT9Ao9qY2CTD9482Q==}
+ '@nrwl/workspace@19.3.0':
+ resolution: {integrity: sha512-h/kMImLdX5NMg0lXB6PmYIxBYI6WU7ATcOI3tGl8z48HHfyfwu87vTQlxFi3jaZv2qj/mE5VFpd+tGADEPNvCw==}
- '@nx/cypress@19.1.1':
- resolution: {integrity: sha512-kGQrwGnBSy+68i1UojgTkTiByYeqbgee8x1Aalw7WQGJU8e9euFD7Wvd1evfJ1IL1Tx2knMXEHwmJKp7sYoXvQ==}
+ '@nx/cypress@19.3.0':
+ resolution: {integrity: sha512-xFzBq/O8+L94QW0KgOlssJkn/Vurfp5k9SN2ALCYtiBynlmpcxJ84Hl9luFzoCqMPzIK1bOTR6/4QvguYajvCA==}
peerDependencies:
cypress: '>= 3 < 14'
peerDependenciesMeta:
cypress:
optional: true
- '@nx/devkit@19.1.1':
- resolution: {integrity: sha512-YMt5vFaNMeIKgBwQ3RIFQG7AoYOksd8vNxwunirN95q/70HMIoJQsnRCMT45jVd9D/GIWASgY8QsGTMJfcO0qQ==}
+ '@nx/devkit@19.3.0':
+ resolution: {integrity: sha512-Natya5nzvHH0qTOIL1w/EZtwMgDx87Dgz0LgeY7te2fULaNFcj5fVrP+mUKEJZR+NccO7GPumT2RPhuEl9rPnQ==}
peerDependencies:
nx: '>= 17 <= 20'
- '@nx/eslint-plugin@19.1.1':
- resolution: {integrity: sha512-ae+rkkiuW2iNJpVO29foI04eIaz+H/hPkosUBTf6PdJ4XtRGtACA1O7MhJckxB2MGDQc7A3+OvtEIj2wEjBfvw==}
+ '@nx/eslint-plugin@19.3.0':
+ resolution: {integrity: sha512-NZ966Wy4mF34lLi+QOgY9mpOiiAL5UiJ+QqOZcg22QIVz0zPY5HbtbYDZTu8OmR4O/S+3ylguaP1O1P2xiYMBQ==}
peerDependencies:
'@typescript-eslint/parser': ^6.13.2 || ^7.0.0
eslint-config-prettier: ^9.0.0
@@ -2613,8 +2922,8 @@ packages:
eslint-config-prettier:
optional: true
- '@nx/eslint@19.1.1':
- resolution: {integrity: sha512-okmq9o/o3zqvDXFz1xqfcQ0Skmbvo3xMkAsacjuYP8W9kNVsRKFGqzI55lMTbvTYNDeFE30mcHLSpwzkgIm43g==}
+ '@nx/eslint@19.3.0':
+ resolution: {integrity: sha512-x4SrQMnLnX+jM7KGsj+ReOvEHo5S0chLPfJhf0KFnXnzWoWcrq18z0lZ33JaAWWBsjexozDTld2wHj7nkvcjCg==}
peerDependencies:
'@zkochan/js-yaml': 0.0.7
eslint: ^8.0.0 || ^9.0.0
@@ -2622,91 +2931,91 @@ packages:
'@zkochan/js-yaml':
optional: true
- '@nx/js@19.1.1':
- resolution: {integrity: sha512-i8jXT7u6q9McV0mlEwvgN6WAa28FDdBI+45xNF1UApag892qzGjLu81xjrfTYlmF3tcP7xG7DUfqCU5oAoEcXg==}
+ '@nx/js@19.3.0':
+ resolution: {integrity: sha512-bZuV8sXR5kZ2FJzqnjSZqWs21W7AlZKgjzYB7Rt1u1ap4KcVR32NNAUVFjnTuI1A/6rhO39IShTyMhswnBV9qA==}
peerDependencies:
verdaccio: ^5.0.4
peerDependenciesMeta:
verdaccio:
optional: true
- '@nx/linter@19.1.1':
- resolution: {integrity: sha512-xx8fpJTlT4EIDweaYrknD5e5V5PsAO1Vr5lNG01gfQ0oB1B/ewU8h7jMnMGOJ2QTRtv8kEb3FAR38W1oLG2Q2g==}
+ '@nx/linter@19.3.0':
+ resolution: {integrity: sha512-+bpDyXjHBTuVHvbQ7m2hG86m1jJNAPOmnoad/2ZPoQM4LjBTOW8M7s2upZPewjnAJs8Fv02281mO+ORbhW7L9A==}
- '@nx/nx-darwin-arm64@19.1.1':
- resolution: {integrity: sha512-5CcgmNhUg5N62zCuzNZfRRPvaLRZNhLk0OkpMa085atEshM8RUAMbN80ffINaBssYtKu6znJ9LhUK+q7C3KiFQ==}
+ '@nx/nx-darwin-arm64@19.3.0':
+ resolution: {integrity: sha512-TMTxjrN7Y/UsKFjmz0YfhVItLTGWqvud8cmQchw5NEjdNakfjXk0mREufO5/5PwoiRIsen6MbThoTprLpjOUiQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@19.1.1':
- resolution: {integrity: sha512-vDM9vZow3YLA3+7GKTqhtguNcbQPifMTbqm8Aevd/suqCChQsLyD1Hh1Z+o03RNolNTRacNb6GPvoKFY4BJ2tA==}
+ '@nx/nx-darwin-x64@19.3.0':
+ resolution: {integrity: sha512-GH2L6ftnzdIs7JEdv7ZPCdbpAdB5sW6NijK07riYZSONzq5fEruD1yDWDkyZbYBb8RTxsparUWJnq8q1qxEPHQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@19.1.1':
- resolution: {integrity: sha512-FfOBrc1vndWYXSZVgbB9nWRp8/jo7f9b3g3ZfqaVwsGpcYcwz7dxiPV7HQKysTR0WNVv1aTi2Dg1CF+F94qlPw==}
+ '@nx/nx-freebsd-x64@19.3.0':
+ resolution: {integrity: sha512-1ow7Xku1yyjHviCKsWiuHCAnTd3fD+5O5c+e4DXHVthT8wnadKSotvBIWf38DMbMthl7na82e72OzxcdSbrVqQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@19.1.1':
- resolution: {integrity: sha512-Bb94MmoOsPnTI4n1mrILSwGmx9I50LEkEOgksoiOEYdykWKjbz6z4ZnFCJHTeF0bca1OmF5iCjFWU42KlLUsRQ==}
+ '@nx/nx-linux-arm-gnueabihf@19.3.0':
+ resolution: {integrity: sha512-mYQMIUvNr2gww8vbg766uk/C1RxoC1fwioeP87bmV5NRUKSzJ8WEJVxAsqc9RGhAOUaNXOgEuKYrMcVhKyIKJQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@19.1.1':
- resolution: {integrity: sha512-mqiRi95LOUTWldtif3f2aJOFLxg/2jnM1UYj85vUlaLZJmQK64OhQslCAAZCmEWkHAYqEooHaYqj30YmDb92jw==}
+ '@nx/nx-linux-arm64-gnu@19.3.0':
+ resolution: {integrity: sha512-rHL3eQ0RHkeAXnhHHu/NIyouN/ykiXvgyNU3TuCd50+2MZcAbjB+Xq3mwL0MwiP+BQuptiE+snTuxFUJp4ZH6A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@19.1.1':
- resolution: {integrity: sha512-lhyVsuT19Ez4ynhen6dT+Zdq2cABXcphYSkVSASvZGvka/65AS+0D1hX0TFDPJvbTdsHwVszJQZzIqGmYUkhLA==}
+ '@nx/nx-linux-arm64-musl@19.3.0':
+ resolution: {integrity: sha512-im0+OgOD6ShpTkI9ZRz7BjzxhQ/Lk3xjYmmCu+PFGmaybEnkNNDFwsgS0iEVKMdWZ/EQoQvJrqOYsX125iIBuQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@19.1.1':
- resolution: {integrity: sha512-zUQhMwz/gQ0up1iymwTqXbyLJca87HXOP+uAD5wfgarh0yhPDwcGaVsV8O8t2z8W/dH/yYmuppe3gAwsvd5SSg==}
+ '@nx/nx-linux-x64-gnu@19.3.0':
+ resolution: {integrity: sha512-k8q/d6WBSXOeUpBq6Mw69yMKL4n9LaX3o4LBNwBkVCEZ8p6s0njwKefLtjwnKlai0g/k5f0NcilU2zTwP/Ex8g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@19.1.1':
- resolution: {integrity: sha512-3Gc2iwMbFAp50OlIqfgryTtZno/FqPW+AOP1Pijo/jJOZ8DHP3A7Zy8QoJYUgTQxCffzVbhshXW6yy403pV3OQ==}
+ '@nx/nx-linux-x64-musl@19.3.0':
+ resolution: {integrity: sha512-sahEV99glBlpGKG1TIQ5PkJ0QvpHp69wWsBFK2DKtCETxOtsWqwvIjemxTCXRirTqeHiP7BiR6VWsf2YqqqBdw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@19.1.1':
- resolution: {integrity: sha512-91LJG0triTdZDHnT9l1N1YuIwhmR7iCbKsEv345OdPhHJeQ6GAuJCD0SqDk6aZ13xr7LoRlS8c6bnfctXeslQQ==}
+ '@nx/nx-win32-arm64-msvc@19.3.0':
+ resolution: {integrity: sha512-w03gFwLijStmhUji70QJHYo/U16ovybNczxGO7+5TT330X8/y+ihw9FCGHiIcujAjTAE88h0DKGn05WlNqRmfg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@19.1.1':
- resolution: {integrity: sha512-rEWRqcW1osCeaZ9KPfZWARIdOHGd0WXRW6iqqRvZZEAIbGlZP/89Sj2o9Fvs5oHpng7kfrqsDbpbikmmlX7HTQ==}
+ '@nx/nx-win32-x64-msvc@19.3.0':
+ resolution: {integrity: sha512-M7e2zXGfTjH8NLiwqKLdWC9VlfMSQDYlI4/SM4OSpPqhUTfPlRPa+wNKNTG7perKfDXxE9ei8yjocujknXJk/A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@nx/react@19.1.1':
- resolution: {integrity: sha512-ALRPz+u3grkxuqP1o4ZKiPbi1lh/8v6F9Q7r4/rYFhNTbSK+bvABCEULZfzW1GtbpUH6Xm6hX15RyQtxm3Z6JQ==}
+ '@nx/react@19.3.0':
+ resolution: {integrity: sha512-kT0kOp5JjTqPxiBHjIi2LhI4gxPRghC9iitMsG3orD847KG2cP+ONRJWcq9e5lJFgeppiTr7EP3fg/Q5b2ZS1g==}
- '@nx/vite@19.1.1':
- resolution: {integrity: sha512-P1APiRpRN3wpVNcgBejMokaoVhBDTThyu5hRSRRymI64Bw6kLxhQyGm8C2vZULMmrQFfgBvXAaCcJ8uNH1WFFw==}
+ '@nx/vite@19.3.0':
+ resolution: {integrity: sha512-EAAzSNiCi7iP82xqliqoCgOfLCbsgZkr3xWG4JPEw6CJKBf22XmdIb4POr4NhEdDW7ewGAz0oMtu2sYMuPKzAA==}
peerDependencies:
vite: ^5.0.0
vitest: ^1.3.1
- '@nx/web@19.1.1':
- resolution: {integrity: sha512-PEmBQy2WxzGmhMb8OxOARAys+6B24RBBgmqpN1YBzPLDoTeyi5M/HqjHqD5LE6WgywfIazGrCgkFa8+XxqnFlg==}
+ '@nx/web@19.3.0':
+ resolution: {integrity: sha512-kK+jpUKhWflpKHegkNPBDkH3XYjpdEwCKr6izqJU7nvV0P9EHT/jVWRxfic/imTAoC9IZpHwAW9bYSd0LKpe1A==}
- '@nx/workspace@19.1.1':
- resolution: {integrity: sha512-aTOAGotI8tbQiYp1jx+n0+SK18fpmPeRNA95y7xH8uMZLcm7zfOZiE0r450nbAVwU62JWncCvxwdB2weBVkY4w==}
+ '@nx/workspace@19.3.0':
+ resolution: {integrity: sha512-mhhQIXPGOysg/1vqGnXzwB3ODckpwi2OxQm4x4R1rX8tnS7I4+K2MZFyQzpa13vPf4h4Y4yxdDUl+TfZa7lVhQ==}
'@parcel/watcher-android-arm64@2.4.1':
resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
@@ -2842,95 +3151,95 @@ packages:
peerDependencies:
react-native: ^0.0.0-0 || >=0.60 <1.0
- '@react-native-community/cli-clean@13.6.6':
- resolution: {integrity: sha512-cBwJTwl0NyeA4nyMxbhkWZhxtILYkbU3TW3k8AXLg+iGphe0zikYMGB3T+haTvTc6alTyEFwPbimk9bGIqkjAQ==}
+ '@react-native-community/cli-clean@13.6.8':
+ resolution: {integrity: sha512-B1uxlm1N4BQuWFvBL3yRl3LVvydjswsdbTi7tMrHMtSxfRio1p9HjcmDzlzKco09Y+8qBGgakm3jcMZGLbhXQQ==}
- '@react-native-community/cli-config@13.6.6':
- resolution: {integrity: sha512-mbG425zCKr8JZhv/j11382arezwS/70juWMsn8j2lmrGTrP1cUdW0MF15CCIFtJsqyK3Qs+FTmqttRpq81QfSg==}
+ '@react-native-community/cli-config@13.6.8':
+ resolution: {integrity: sha512-RabCkIsWdP4Ex/sf1uSP9qxc30utm+0uIJAjrZkNQynm7T4Lyqn/kT3LKm4yM6M0Qk61YxGguiaXF4601vAduw==}
- '@react-native-community/cli-debugger-ui@13.6.6':
- resolution: {integrity: sha512-Vv9u6eS4vKSDAvdhA0OiQHoA7y39fiPIgJ6biT32tN4avHDtxlc6TWZGiqv7g98SBvDWvoVAmdPLcRf3kU+c8g==}
+ '@react-native-community/cli-debugger-ui@13.6.8':
+ resolution: {integrity: sha512-2cS+MX/Su6sVSjqpDftFOXbK7EuPg98xzsPkdPhkQnkZwvXqodK9CAMuDMbx3lBHHtrPrpMbBCpFmPN8iVOnlA==}
- '@react-native-community/cli-doctor@13.6.6':
- resolution: {integrity: sha512-TWZb5g6EmQe2Ua2TEWNmyaEayvlWH4GmdD9ZC+p8EpKFpB1NpDGMK6sXbpb42TDvwZg5s4TDRplK0PBEA/SVDg==}
+ '@react-native-community/cli-doctor@13.6.8':
+ resolution: {integrity: sha512-/3Vdy9J3hyiu0y3nd/CU3kBqPlTRxnLXg7V6jrA1jbTOlZAMyV9imEkrqEaGK0SMOyMhh9Pipf98Ozhk0Nl4QA==}
- '@react-native-community/cli-hermes@13.6.6':
- resolution: {integrity: sha512-La5Ie+NGaRl3klei6WxKoOxmCUSGGxpOk6vU5pEGf0/O7ky+Ay0io+zXYUZqlNMi/cGpO7ZUijakBYOB/uyuFg==}
+ '@react-native-community/cli-hermes@13.6.8':
+ resolution: {integrity: sha512-lZi/OBFuZUj5cLK94oEgtrtmxGoqeYVRcnHXl/R5c4put9PDl+qH2bEMlGZkFiw57ae3UZKr3TMk+1s4jh3FYQ==}
- '@react-native-community/cli-platform-android@13.6.6':
- resolution: {integrity: sha512-/tMwkBeNxh84syiSwNlYtmUz/Ppc+HfKtdopL/5RB+fd3SV1/5/NPNjMlyLNgFKnpxvKCInQ7dnl6jGHJjeHjg==}
+ '@react-native-community/cli-platform-android@13.6.8':
+ resolution: {integrity: sha512-vWrqeLRRTwp2kO33nbrAgbYn8HR2c2CpIfyVJY9Ckk7HGUSwDyxdcSu7YBvt2ShdfLZH0HctWFNXsgGrfg6BDw==}
- '@react-native-community/cli-platform-apple@13.6.6':
- resolution: {integrity: sha512-bOmSSwoqNNT3AmCRZXEMYKz1Jf1l2F86Nhs7qBcXdY/sGiJ+Flng564LOqvdAlVLTbkgz47KjNKCS2pP4Jg0Mg==}
+ '@react-native-community/cli-platform-apple@13.6.8':
+ resolution: {integrity: sha512-1JPohnlXPqU44zns3ALEzIbH2cKRw6JtEDJERgLuEUbs2r2NeJgqDbKyZ7fTTO8o+pegDnn6+Rr7qGVVOuUzzg==}
- '@react-native-community/cli-platform-ios@13.6.6':
- resolution: {integrity: sha512-vjDnRwhlSN5ryqKTas6/DPkxuouuyFBAqAROH4FR1cspTbn6v78JTZKDmtQy9JMMo7N5vZj1kASU5vbFep9IOQ==}
+ '@react-native-community/cli-platform-ios@13.6.8':
+ resolution: {integrity: sha512-/IIcIRM8qaoD7iZqsvtf6Qq1AwtChWYfB9sTn3mTiolZ5Zd5bXH37g+6liPfAICRkj2Ptq3iXmjrDVUQAxrOXw==}
- '@react-native-community/cli-server-api@13.6.6':
- resolution: {integrity: sha512-ZtCXxoFlM7oDv3iZ3wsrT3SamhtUJuIkX2WePLPlN5bcbq7zimbPm2lHyicNJtpcGQ5ymsgpUWPCNZsWQhXBqQ==}
+ '@react-native-community/cli-server-api@13.6.8':
+ resolution: {integrity: sha512-Lx664oWTzpVfbKUTy+3GIX7e+Mt5Zn+zdkM4ehllNdik/lbB3tM9Nrg8PSvOfI+tTXs2w55+nIydLfH+0FqJVg==}
- '@react-native-community/cli-tools@13.6.6':
- resolution: {integrity: sha512-ptOnn4AJczY5njvbdK91k4hcYazDnGtEPrqIwEI+k/CTBHNdb27Rsm2OZ7ye6f7otLBqF8gj/hK6QzJs8CEMgw==}
+ '@react-native-community/cli-tools@13.6.8':
+ resolution: {integrity: sha512-1MYlae9EkbjC7DBYOGMH5xF9yDoeNYUKgEdDjL6WAUBoF2gtwiZPM6igLKi/+dhb5sCtC7fiLrLi0Oevdf+RmQ==}
- '@react-native-community/cli-types@13.6.6':
- resolution: {integrity: sha512-733iaYzlmvNK7XYbnWlMjdE+2k0hlTBJW071af/xb6Bs+hbJqBP9c03FZuYH2hFFwDDntwj05bkri/P7VgSxug==}
+ '@react-native-community/cli-types@13.6.8':
+ resolution: {integrity: sha512-C4mVByy0i+/NPuPhdMLBR7ubEVkjVS1VwoQu/BoG1crJFNE+167QXAzH01eFbXndsjZaMWmD4Gerx7TYc6lHfA==}
- '@react-native-community/cli@13.6.6':
- resolution: {integrity: sha512-IqclB7VQ84ye8Fcs89HOpOscY4284VZg2pojHNl8H0Lzd4DadXJWQoxC7zWm8v2f8eyeX2kdhxp2ETD5tceIgA==}
+ '@react-native-community/cli@13.6.8':
+ resolution: {integrity: sha512-0lRdgLNaXixWY4BfFRl1J6Ao9Lapo2z+++iE7TD4GAbuxOWJSyFi+KUA8XNfSDyML4jFO02MZgyBPxAWdaminQ==}
engines: {node: '>=18'}
hasBin: true
- '@react-native/assets-registry@0.74.83':
- resolution: {integrity: sha512-2vkLMVnp+YTZYTNSDIBZojSsjz8sl5PscP3j4GcV6idD8V978SZfwFlk8K0ti0BzRs11mzL0Pj17km597S/eTQ==}
+ '@react-native/assets-registry@0.74.84':
+ resolution: {integrity: sha512-dzUhwyaX04QosWZ8zyaaNB/WYZIdeDN1lcpfQbqiOhZJShRH+FLTDVONE/dqlMQrP+EO7lDqF0RrlIt9lnOCQQ==}
engines: {node: '>=18'}
- '@react-native/babel-plugin-codegen@0.74.83':
- resolution: {integrity: sha512-+S0st3t4Ro00bi9gjT1jnK8qTFOU+CwmziA7U9odKyWrCoRJrgmrvogq/Dr1YXlpFxexiGIupGut1VHxr+fxJA==}
+ '@react-native/babel-plugin-codegen@0.74.84':
+ resolution: {integrity: sha512-UR4uiii5szIJA84mSC6GJOfYKDq7/ThyetOQT62+BBcyGeHVtHlNLNRzgaMeLqIQaT8Fq4pccMI+7QqLOMXzdw==}
engines: {node: '>=18'}
- '@react-native/babel-preset@0.74.83':
- resolution: {integrity: sha512-KJuu3XyVh3qgyUer+rEqh9a/JoUxsDOzkJNfRpDyXiAyjDRoVch60X/Xa/NcEQ93iCVHAWs0yQ+XGNGIBCYE6g==}
+ '@react-native/babel-preset@0.74.84':
+ resolution: {integrity: sha512-WUfu6Y4aGuVdocQZvx33BJiQWFH6kRCHYbZfBn2psgFrSRLgQWEQrDCxqPFObNAVSayM0rNhp2FvI5K/Eyeqlg==}
engines: {node: '>=18'}
peerDependencies:
'@babel/core': '*'
- '@react-native/codegen@0.74.83':
- resolution: {integrity: sha512-GgvgHS3Aa2J8/mp1uC/zU8HuTh8ZT5jz7a4mVMWPw7+rGyv70Ba8uOVBq6UH2Q08o617IATYc+0HfyzAfm4n0w==}
+ '@react-native/codegen@0.74.84':
+ resolution: {integrity: sha512-0hXlnu9i0o8v+gXKQi+x6T471L85kCDwW4WrJiYAeOheWrQdNNW6rC3g8+LL7HXAf7QcHGU/8/d57iYfdVK2BQ==}
engines: {node: '>=18'}
peerDependencies:
'@babel/preset-env': ^7.1.6
- '@react-native/community-cli-plugin@0.74.83':
- resolution: {integrity: sha512-7GAFjFOg1mFSj8bnFNQS4u8u7+QtrEeflUIDVZGEfBZQ3wMNI5ycBzbBGycsZYiq00Xvoc6eKFC7kvIaqeJpUQ==}
+ '@react-native/community-cli-plugin@0.74.84':
+ resolution: {integrity: sha512-GBKE+1sUh86fS2XXV46gMCNHMc1KetshMbYJ0AhDhldpaILZHqRBX50mdVsiYVvkzp4QjM0nmYqefuJ9NVwicQ==}
engines: {node: '>=18'}
- '@react-native/debugger-frontend@0.74.83':
- resolution: {integrity: sha512-RGQlVUegBRxAUF9c1ss1ssaHZh6CO+7awgtI9sDeU0PzDZY/40ImoPD5m0o0SI6nXoVzbPtcMGzU+VO590pRfA==}
+ '@react-native/debugger-frontend@0.74.84':
+ resolution: {integrity: sha512-YUEA03UNFbiYzHpYxlcS2D9+3eNT5YLGkl5yRg3nOSN6KbCc/OttGnNZme+tuSOJwjMN/vcvtDKYkTqjJw8U0A==}
engines: {node: '>=18'}
- '@react-native/dev-middleware@0.74.83':
- resolution: {integrity: sha512-UH8iriqnf7N4Hpi20D7M2FdvSANwTVStwFCSD7VMU9agJX88Yk0D1T6Meh2RMhUu4kY2bv8sTkNRm7LmxvZqgA==}
+ '@react-native/dev-middleware@0.74.84':
+ resolution: {integrity: sha512-veYw/WmyrAOQHUiIeULzn2duJQnXDPiKq2jZ/lcmDo6jsLirpp+Q73lx09TYgy/oVoPRuV0nfmU3x9B6EV/7qQ==}
engines: {node: '>=18'}
- '@react-native/gradle-plugin@0.74.83':
- resolution: {integrity: sha512-Pw2BWVyOHoBuJVKxGVYF6/GSZRf6+v1Ygc+ULGz5t20N8qzRWPa2fRZWqoxsN7TkNLPsECYY8gooOl7okOcPAQ==}
+ '@react-native/gradle-plugin@0.74.84':
+ resolution: {integrity: sha512-wYWC5WWXqzCCe4PDogz9pNc4xH5ZamahW5XGSbrrYJ5V3walZ+7z43V6iEBJkZbLjj9YBcSttkXYGr1Xh4veAg==}
engines: {node: '>=18'}
- '@react-native/js-polyfills@0.74.83':
- resolution: {integrity: sha512-/t74n8r6wFhw4JEoOj3bN71N1NDLqaawB75uKAsSjeCwIR9AfCxlzZG0etsXtOexkY9KMeZIQ7YwRPqUdNXuqw==}
+ '@react-native/js-polyfills@0.74.84':
+ resolution: {integrity: sha512-+PgxuUjBw9JVlz6m4ECsIJMLbDopnr4rpLmsG32hQaJrg0wMuvHtsgAY/J/aVCSG2GNUXexfjrnhc+O9yGOZXQ==}
engines: {node: '>=18'}
- '@react-native/metro-babel-transformer@0.74.83':
- resolution: {integrity: sha512-hGdx5N8diu8y+GW/ED39vTZa9Jx1di2ZZ0aapbhH4egN1agIAusj5jXTccfNBwwWF93aJ5oVbRzfteZgjbutKg==}
+ '@react-native/metro-babel-transformer@0.74.84':
+ resolution: {integrity: sha512-YtVGq7jkgyUECv5yt4BOFbOXyW4ddUn8+dnwGGpJKdfhXYL5o5++AxNdE+2x+SZdkj3JUVekGKPwRabFECABaw==}
engines: {node: '>=18'}
peerDependencies:
'@babel/core': '*'
- '@react-native/normalize-colors@0.74.83':
- resolution: {integrity: sha512-jhCY95gRDE44qYawWVvhTjTplW1g+JtKTKM3f8xYT1dJtJ8QWv+gqEtKcfmOHfDkSDaMKG0AGBaDTSK8GXLH8Q==}
+ '@react-native/normalize-colors@0.74.84':
+ resolution: {integrity: sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A==}
- '@react-native/virtualized-lists@0.74.83':
- resolution: {integrity: sha512-rmaLeE34rj7py4FxTod7iMTC7BAsm+HrGA8WxYmEJeyTV7WSaxAkosKoYBz8038mOiwnG9VwA/7FrB6bEQvn1A==}
+ '@react-native/virtualized-lists@0.74.84':
+ resolution: {integrity: sha512-XcV+qdqt2WihaY4iRm/M1FdSy+18lecU9mRXNmy9YK8g9Th/8XbNtmmKI0qWBx3KxyuXMH/zd0ps05YTrX16kw==}
engines: {node: '>=18'}
peerDependencies:
'@types/react': ^18.2.6
@@ -3068,61 +3377,61 @@ packages:
'@safe-global/safe-apps-sdk@8.1.0':
resolution: {integrity: sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==}
- '@safe-global/safe-gateway-typescript-sdk@3.21.1':
- resolution: {integrity: sha512-7nakIjcRSs6781LkizYpIfXh1DYlkUDqyALciqz/BjFU/S97sVjZdL4cuKsG9NEarytE+f6p0Qbq2Bo1aocVUA==}
+ '@safe-global/safe-gateway-typescript-sdk@3.21.3':
+ resolution: {integrity: sha512-6w0WkSgD0X7s7yhtCNxvCVP5uhDRGoeBWflkRaklntY2/oNiSqPgna3cKhXV+itDLiCBTUpDfytzcF0MbkcM2w==}
engines: {node: '>=16'}
- '@scure/base@1.1.6':
- resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==}
+ '@scure/base@1.1.7':
+ resolution: {integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==}
'@scure/bip32@1.3.2':
resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==}
- '@scure/bip32@1.3.3':
- resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==}
+ '@scure/bip32@1.4.0':
+ resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
'@scure/bip39@1.2.1':
resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==}
- '@scure/bip39@1.2.2':
- resolution: {integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==}
+ '@scure/bip39@1.3.0':
+ resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
- '@sentry-internal/browser-utils@8.7.0':
- resolution: {integrity: sha512-RFBK1sYBwV5qGMEwWF0rjOTqQpp4/SvE+qHkOJNRUTVYmfjM+Y9lcxwn4B6lu3aboxePpBw/i1PlP6XwX4UnGA==}
+ '@sentry-internal/browser-utils@8.9.2':
+ resolution: {integrity: sha512-2A0A6TnfzFDvYCRWS9My3t+JKG6KlslhyaN35BTiOTlYDauEekyJP7BFFyeTJXCHm2BQgI8aRZhBKm+oR9QuYw==}
engines: {node: '>=14.18'}
- '@sentry-internal/feedback@8.7.0':
- resolution: {integrity: sha512-qcGtWCtRB4eP7NVQoxW936oPkU4qu9otMLYELPGmOJPnuAG0lujlJXW7BucaM7ADyJgJTE75hG849bHecfnbmQ==}
+ '@sentry-internal/feedback@8.9.2':
+ resolution: {integrity: sha512-v04Q+08ohwautwmiDfK5hI+nFW2B/IYhBz7pZM9x1srkwmNA69XOFyo5u34TeVHhYOPbMM2Ubs0uNEcSWHgbbQ==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay-canvas@8.7.0':
- resolution: {integrity: sha512-FOnvBPbq6MJVHPduc0hcsdE3PeeovQ2z5WJnZDGhvp/Obehxqe+XgX7K/595vRIknv4EokRn/3Kw0mFwG8E+ZQ==}
+ '@sentry-internal/replay-canvas@8.9.2':
+ resolution: {integrity: sha512-vu9TssSjO+XbZjnoyYxMrBI4KgXG+zyqw3ThfPqG6o7O0BGa54fFwtZiMdGq/BHz017FuNiEz4fgtzuDd4gZJQ==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay@8.7.0':
- resolution: {integrity: sha512-bQzOkWplaWTe3u+aDBhxWY3Qy0aT7ss2A3VR8iC6N8ZIEP9PxqyJwTNoouhinfgmlnCguI7RDOO4f3r3e2M80Q==}
+ '@sentry-internal/replay@8.9.2':
+ resolution: {integrity: sha512-YPnrnXJd6mJpJspJ8pI8hd1KTMOxw+BARP5twiDwXlij1RTotwnNoX9UGaSm+ZPTexPD++6Zyp6xQf4vKKP3yg==}
engines: {node: '>=14.18'}
- '@sentry/browser@8.7.0':
- resolution: {integrity: sha512-4EEp+PlcktsMN0p+MdCPl/lghTkq7eOtZjQG9NGhWzfyWrJ3tuL1nsDr2SSivJ1V277F01KtKYo6BFwP2NtBZA==}
+ '@sentry/browser@8.9.2':
+ resolution: {integrity: sha512-jI5XY4j8Sa+YteokI+4SW+A/ErZxPDnspjvV3dm5pIPWvEFhvDyXWZSepqaoqwo3L7fdkRMzXY8Bi4T7qDVMWg==}
engines: {node: '>=14.18'}
- '@sentry/core@8.7.0':
- resolution: {integrity: sha512-Sq/46B+5nWmgnCD6dEMZ6HTkKbV/KAdgaSvT8oXDb9OWoPy1jJ/gbLrhLs62KbjuDQk4/vWnOgHiKQbcslSzMw==}
+ '@sentry/core@8.9.2':
+ resolution: {integrity: sha512-ixm8NISFlPlEo3FjSaqmq4nnd13BRHoafwJ5MG+okCz6BKGZ1SexEggP42/QpGvDprUUHnfncG6WUMgcarr1zA==}
engines: {node: '>=14.18'}
- '@sentry/react@8.7.0':
- resolution: {integrity: sha512-JFo8QW8JB4eaFC8RdkOBO96JvlGgstywmyMZ39qWfFbD735vGl8PnOa0AnrC/5Auc86dZ98/I4OEPboqUE9q1w==}
+ '@sentry/react@8.9.2':
+ resolution: {integrity: sha512-RK4tnkmGg1U9bAjMkY7iyKvZf1diGHYi5o8eOIrJ29OTg3c73C3/MyEuqAlP386tLglcQBn22u9JeP6g4yfiFg==}
engines: {node: '>=14.18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
- '@sentry/types@8.7.0':
- resolution: {integrity: sha512-11KLOKumP6akugVGLvSoEig+JlP0ZEzW3nN9P+ppgdIx9HAxMIh6UvumbieG4/DWjAh2kh6NPNfUw3gk2Gfq1A==}
+ '@sentry/types@8.9.2':
+ resolution: {integrity: sha512-+LFOyQGl+zk5SZRGZD2MEURf7i5RHgP/mt3s85Rza+vz8M211WJ0YsjkIGUJFSY842nged5QLx4JysLaBlLymg==}
engines: {node: '>=14.18'}
- '@sentry/utils@8.7.0':
- resolution: {integrity: sha512-aWmcbSoOmrbzll/FkNQFJcCtLAuJLvTYbRKiCSkV3FScA7UaA742HkTZAPFiioALFIESWk/fcGZqtN0s4I281Q==}
+ '@sentry/utils@8.9.2':
+ resolution: {integrity: sha512-A4srR9mEBFdVXwSEKjQ94msUbVkMr8JeFiEj9ouOFORw/Y/ux/WV2bWVD/ZI9wq0TcTNK8L1wBgU8UMS5lIq3A==}
engines: {node: '>=14.18'}
'@sideway/address@4.1.5':
@@ -3289,8 +3598,8 @@ packages:
'@swc/core': '>= 1.4.13'
'@swc/types': '>= 0.1'
- '@swc-node/register@1.9.1':
- resolution: {integrity: sha512-z//TBXJdRWXoISCXlQmVz+NMm8Qm/UvcfKiGC0tSJdfeVYf5EZkGqvk2OiRH4SIJ6OGFfS9T0YrvA2pDKzWtPA==}
+ '@swc-node/register@1.9.2':
+ resolution: {integrity: sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==}
peerDependencies:
'@swc/core': '>= 1.4.13'
typescript: '>= 4.3'
@@ -3309,68 +3618,68 @@ packages:
chokidar:
optional: true
- '@swc/core-darwin-arm64@1.5.24':
- resolution: {integrity: sha512-M7oLOcC0sw+UTyAuL/9uyB9GeO4ZpaBbH76JSH6g1m0/yg7LYJZGRmplhDmwVSDAR5Fq4Sjoi1CksmmGkgihGA==}
+ '@swc/core-darwin-arm64@1.6.1':
+ resolution: {integrity: sha512-u6GdwOXsOEdNAdSI6nWq6G2BQw5HiSNIZVcBaH1iSvBnxZvWbnIKyDiZKaYnDwTLHLzig2GuUjjE2NaCJPy4jg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.5.24':
- resolution: {integrity: sha512-MfcFjGGYognpSBSos2pYUNYJSmqEhuw5ceGr6qAdME7ddbjGXliza4W6FggsM+JnWwpqa31+e7/R+GetW4WkaQ==}
+ '@swc/core-darwin-x64@1.6.1':
+ resolution: {integrity: sha512-/tXwQibkDNLVbAtr7PUQI0iQjoB708fjhDDDfJ6WILSBVZ3+qs/LHjJ7jHwumEYxVq1XA7Fv2Q7SE/ZSQoWHcQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.5.24':
- resolution: {integrity: sha512-amI2pwtcWV3E/m/nf+AQtn1LWDzKLZyjCmWd3ms7QjEueWYrY8cU1Y4Wp7wNNsxIoPOi8zek1Uj2wwFD/pttNQ==}
+ '@swc/core-linux-arm-gnueabihf@1.6.1':
+ resolution: {integrity: sha512-aDgipxhJTms8iH78emHVutFR2c16LNhO+NTRCdYi+X4PyIn58/DyYTH6VDZ0AeEcS5f132ZFldU5AEgExwihXA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.5.24':
- resolution: {integrity: sha512-sTSvmqMmgT1ynH/nP75Pc51s+iT4crZagHBiDOf5cq+kudUYjda9lWMs7xkXB/TUKFHPCRK0HGunl8bkwiIbuw==}
+ '@swc/core-linux-arm64-gnu@1.6.1':
+ resolution: {integrity: sha512-XkJ+eO4zUKG5g458RyhmKPyBGxI0FwfWFgpfIj5eDybxYJ6s4HBT5MoxyBLorB5kMlZ0XoY/usUMobPVY3nL0g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.5.24':
- resolution: {integrity: sha512-vd2/hfOBGbrX21FxsFdXCUaffjkHvlZkeE2UMRajdXifwv79jqOHIJg3jXG1F3ZrhCghCzirFts4tAZgcG8XWg==}
+ '@swc/core-linux-arm64-musl@1.6.1':
+ resolution: {integrity: sha512-dr6YbLBg/SsNxs1hDqJhxdcrS8dGMlOXJwXIrUvACiA8jAd6S5BxYCaqsCefLYXtaOmu0bbx1FB/evfodqB70Q==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.5.24':
- resolution: {integrity: sha512-Zrdzi7NqzQxm2BvAG5KyOSBEggQ7ayrxh599AqqevJmsUXJ8o2nMiWQOBvgCGp7ye+Biz3pvZn1EnRzAp+TpUg==}
+ '@swc/core-linux-x64-gnu@1.6.1':
+ resolution: {integrity: sha512-A0b/3V+yFy4LXh3O9umIE7LXPC7NBWdjl6AQYqymSMcMu0EOb1/iygA6s6uWhz9y3e172Hpb9b/CGsuD8Px/bg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.5.24':
- resolution: {integrity: sha512-1F8z9NRi52jdZQCGc5sflwYSctL6omxiVmIFVp8TC9nngjQKc00TtX/JC2Eo2HwvgupkFVl5YQJidAck9YtmJw==}
+ '@swc/core-linux-x64-musl@1.6.1':
+ resolution: {integrity: sha512-5dJjlzZXhC87nZZZWbpiDP8kBIO0ibis893F/rtPIQBI5poH+iJuA32EU3wN4/WFHeK4et8z6SGSVghPtWyk4g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.5.24':
- resolution: {integrity: sha512-cKpP7KvS6Xr0jFSTBXY53HZX/YfomK5EMQYpCVDOvfsZeYHN20sQSKXfpVLvA/q2igVt1zzy1XJcOhpJcgiKLg==}
+ '@swc/core-win32-arm64-msvc@1.6.1':
+ resolution: {integrity: sha512-HBi1ZlwvfcUibLtT3g/lP57FaDPC799AD6InolB2KSgkqyBbZJ9wAXM8/CcH67GLIP0tZ7FqblrJTzGXxetTJQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.5.24':
- resolution: {integrity: sha512-IoPWfi0iwqjZuf7gE223+B97/ZwkKbu7qL5KzGP7g3hJrGSKAvv7eC5Y9r2iKKtLKyv5R/T6Ho0kFR/usi7rHw==}
+ '@swc/core-win32-ia32-msvc@1.6.1':
+ resolution: {integrity: sha512-AKqHohlWERclexar5y6ux4sQ8yaMejEXNxeKXm7xPhXrp13/1p4/I3E5bPVX/jMnvpm4HpcKSP0ee2WsqmhhPw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.5.24':
- resolution: {integrity: sha512-zHgF2k1uVJL8KIW+PnVz1To4a3Cz9THbh2z2lbehaF/gKHugH4c3djBozU4das1v35KOqf5jWIEviBLql2wDLQ==}
+ '@swc/core-win32-x64-msvc@1.6.1':
+ resolution: {integrity: sha512-0dLdTLd+ONve8kgC5T6VQ2Y5G+OZ7y0ujjapnK66wpvCBM6BKYGdT/OKhZKZydrC5gUKaxFN6Y5oOt9JOFUrOQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.5.24':
- resolution: {integrity: sha512-Eph9zvO4xvqWZGVzTdtdEJ0Vqf0VIML/o/e4Qd2RLOqtfgnlRi7avmMu5C0oqciJ0tk+hqdUKVUZ4JPoPaiGvQ==}
+ '@swc/core@1.6.1':
+ resolution: {integrity: sha512-Yz5uj5hNZpS5brLtBvKY0L4s2tBAbQ4TjmW8xF1EC3YLFxQRrUjMP49Zm1kp/KYyYvTkSaG48Ffj2YWLu9nChw==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '*'
@@ -3384,18 +3693,18 @@ packages:
'@swc/helpers@0.5.11':
resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==}
- '@swc/types@0.1.7':
- resolution: {integrity: sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==}
+ '@swc/types@0.1.8':
+ resolution: {integrity: sha512-RNFA3+7OJFNYY78x0FYwi1Ow+iF1eF5WvmfY1nXPOEH4R2p/D4Cr1vzje7dNAI2aLFqpv8Wyz4oKSWqIZArpQA==}
'@szmarczak/http-timer@4.0.6':
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
engines: {node: '>=10'}
- '@tanstack/query-core@5.40.0':
- resolution: {integrity: sha512-eD8K8jsOIq0Z5u/QbvOmfvKKE/XC39jA7yv4hgpl/1SRiU+J8QCIwgM/mEHuunQsL87dcvnHqSVLmf9pD4CiaA==}
+ '@tanstack/query-core@5.45.0':
+ resolution: {integrity: sha512-RVfIZQmFUTdjhSAAblvueimfngYyfN6HlwaJUPK71PKd7yi43Vs1S/rdimmZedPWX/WGppcq/U1HOj7O7FwYxw==}
- '@tanstack/react-query@5.40.0':
- resolution: {integrity: sha512-iv/W0Axc4aXhFzkrByToE1JQqayxTPNotCoSCnarR/A1vDIHaoKpg7FTIfP3Ev2mbKn1yrxq0ZKYUdLEJxs6Tg==}
+ '@tanstack/react-query@5.45.1':
+ resolution: {integrity: sha512-mYYfJujKg2kxmkRRjA6nn4YKG3ITsKuH22f1kteJ5IuVQqgKUgbaSQfYwVP0gBS05mhwxO03HVpD0t7BMN7WOA==}
peerDependencies:
react: ^18.0.0
@@ -3414,16 +3723,20 @@ packages:
resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==}
engines: {node: '>=18'}
- '@testing-library/react@15.0.7':
- resolution: {integrity: sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==}
+ '@testing-library/react@16.0.0':
+ resolution: {integrity: sha512-guuxUKRWQ+FgNX0h0NS0FIq3Q3uLtWVpBzcLOggmfMoUpgBnzBzvLLd4fbm6yS8ydJd94cIfY4yP9qUQjM2KwQ==}
engines: {node: '>=18'}
peerDependencies:
+ '@testing-library/dom': ^10.0.0
'@types/react': ^18.0.0
+ '@types/react-dom': ^18.0.0
react: ^18.0.0
react-dom: ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
'@tokenizer/token@0.3.0':
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
@@ -3537,12 +3850,15 @@ packages:
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- '@types/node@18.19.33':
- resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==}
+ '@types/node@18.19.36':
+ resolution: {integrity: sha512-tX1BNmYSWEvViftB26VLNxT6mEr37M7+ldUtq7rlKnv4/2fKYsJIOmqJAjT6h1DNuwQjIKgw3VJ/Dtw3yiTIQw==}
'@types/node@20.14.0':
resolution: {integrity: sha512-5cHBxFGJx6L4s56Bubp4fglrEpmyJypsqI6RgzMfBHWUJQGWAAi8cWcgetEbZXHYXo9C2Fa4EEds/uSyS4cxmA==}
+ '@types/node@20.14.5':
+ resolution: {integrity: sha512-aoRR+fJkZT2l0aGOJhuA8frnCSoNX6W7U2mpNq63+BxBIj5BQFt8rHy627kijCmm63ijdSdwvGgpUsU6MBsZZA==}
+
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
@@ -3693,8 +4009,8 @@ packages:
peerDependencies:
'@vanilla-extract/css': ^1.0.0
- '@vitejs/plugin-react@4.3.0':
- resolution: {integrity: sha512-KcEbMsn4Dpk+LIbHMj7gDPRKaTMStxxWRkRmxsg/jVdFdJCZWt1SchZcf0M4t8lIKdwwMsEyzhrcOXRrDPtOBw==}
+ '@vitejs/plugin-react@4.3.1':
+ resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
@@ -3726,6 +4042,9 @@ packages:
'@vue/compiler-core@3.4.27':
resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
+ '@vue/compiler-core@3.4.29':
+ resolution: {integrity: sha512-TFKiRkKKsRCKvg/jTSSKK7mYLJEQdUiUfykbG49rubC9SfDyvT2JrzTReopWlz2MxqeLyxh9UZhvxEIBgAhtrg==}
+
'@vue/compiler-dom@3.4.27':
resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
@@ -3740,18 +4059,21 @@ packages:
'@vue/shared@3.4.27':
resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
- '@wagmi/connectors@5.0.7':
- resolution: {integrity: sha512-EoTtRKnUPhKpU/LFU7LU4iK8yNU/akU5vSgX+K21QXHi8ImhEEsd2nPEU5kfkWriGf+D/raD4gLZYsfppDRUaw==}
+ '@vue/shared@3.4.29':
+ resolution: {integrity: sha512-hQ2gAQcBO/CDpC82DCrinJNgOHI2v+FA7BDW4lMSPeBpQ7sRe2OLHWe5cph1s7D8DUQAwRt18dBDfJJ220APEA==}
+
+ '@wagmi/connectors@5.0.14':
+ resolution: {integrity: sha512-DXSn0zTLFCKWyj0yOhHcdqR2IZotlr0vK3hYBjFhZNEdxYvPqoPDjBDUX0Z00CFGjsEmJtswI/Er1iQbot6saA==}
peerDependencies:
- '@wagmi/core': 2.10.5
+ '@wagmi/core': 2.11.2
typescript: '>=5.0.4'
viem: 2.x
peerDependenciesMeta:
typescript:
optional: true
- '@wagmi/core@2.10.5':
- resolution: {integrity: sha512-BvqFEdJTTepOKtPnacq7oE8gUZ4llzdxmPSBEYePArd1dvP/e5gwwfS5/8VBcvDvGcoX4N0lw5A4NNOJKL0Q+A==}
+ '@wagmi/core@2.11.2':
+ resolution: {integrity: sha512-M4Yu6SBQoSTlodC+D1iEijuZTyAMYy+XLIIdaDRQ/oVwsOmAMe+YZzbAeCO51UGduekam6QkX2WGeNFEHFtYOA==}
peerDependencies:
'@tanstack/query-core': '>=5.0.0'
typescript: '>=5.0.4'
@@ -3958,8 +4280,8 @@ packages:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
peerDependencies:
acorn: ^8
@@ -3972,11 +4294,20 @@ packages:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
+ acorn-walk@8.3.3:
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ engines: {node: '>=0.4.0'}
+
acorn@8.11.3:
resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.12.0:
+ resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
@@ -4309,6 +4640,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.23.1:
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -4386,6 +4722,9 @@ packages:
caniuse-lite@1.0.30001627:
resolution: {integrity: sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==}
+ caniuse-lite@1.0.30001636:
+ resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==}
+
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -4622,9 +4961,6 @@ packages:
copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
- 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==}
@@ -4814,8 +5150,8 @@ packages:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@4.1.4:
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
engines: {node: '>=6'}
deep-is@0.1.4:
@@ -4917,8 +5253,8 @@ packages:
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dnum@2.12.0:
- resolution: {integrity: sha512-9KadprQFF6ftkN4MqVE2pbbvh7p5YL2z1EHon1j+OFzxTn+BhC9iufWJX0oDhLRzqzMpNramTspIS697lSfrSA==}
+ dnum@2.13.1:
+ resolution: {integrity: sha512-4oZ+BtlvNtKFJji1Fc5073LyJFvgioBQ0PNu/C+r1A8P09Yvka/aXYYD5bsUHMTUPEu01iv4bk+5nPQmt5AA8A==}
doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
@@ -4972,8 +5308,8 @@ packages:
duplexify@4.1.3:
resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==}
- eciesjs@0.3.18:
- resolution: {integrity: sha512-RQhegEtLSyIiGJmFTZfvCTHER/fymipXFVx6OwSRYD6hOuy+6Kjpk0dGvIfP9kxn/smBpxQy71uxpGO406ITCw==}
+ eciesjs@0.3.19:
+ resolution: {integrity: sha512-b+PkRDZ3ym7HEcnbxc22CMVCpgsnr8+gGgST3U5PtgeX1luvINgfXW7efOyUtmn/jFtA/lg5ywBi/Uazf4oeaA==}
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
@@ -4986,6 +5322,9 @@ packages:
electron-to-chromium@1.4.788:
resolution: {integrity: sha512-ubp5+Ev/VV8KuRoWnfP2QF2Bg+O2ZFdb49DiiNbz2VmgkIqrnyYaqIOqj8A6K/3p1xV0QcU5hBQ1+BmB6ot1OA==}
+ electron-to-chromium@1.4.805:
+ resolution: {integrity: sha512-8W4UJwX/w9T0QSzINJckTKG6CYpAUTqsaWcWIsdud3I1FYJcMgW9QqT1/4CBff/pP/TihWh13OmiyY8neto6vw==}
+
elliptic@6.5.5:
resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==}
@@ -5012,15 +5351,15 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- engine.io-client@6.5.3:
- resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==}
+ engine.io-client@6.5.4:
+ resolution: {integrity: sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==}
engine.io-parser@5.2.2:
resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
engines: {node: '>=10.0.0'}
- enhanced-resolve@5.16.1:
- resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
+ enhanced-resolve@5.17.0:
+ resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
engines: {node: '>=10.13.0'}
enquirer@2.3.6:
@@ -5107,6 +5446,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -5301,8 +5645,8 @@ packages:
eth-rpc-errors@4.0.3:
resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==}
- ethereum-cryptography@2.1.3:
- resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==}
+ ethereum-cryptography@2.2.0:
+ resolution: {integrity: sha512-hsm9JhfytIf8QME/3B7j4bc8V+VdTU+Vas1aJlvIS96ffoNAosudXvGoEvWmc7QZYdkC8mrMJz9r0fcbw7GyCA==}
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
@@ -5500,8 +5844,8 @@ packages:
flow-enums-runtime@0.0.6:
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
- flow-parser@0.237.1:
- resolution: {integrity: sha512-PUeG8GQLmrv49vEcFcag7mriJvVs7Yyegnv1DGskvcokhP8UyqWsLV0KoTQ1iAW3ePVUIGUc3MFfBaXwz9MmIg==}
+ flow-parser@0.238.0:
+ resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==}
engines: {node: '>=0.4.0'}
follow-redirects@1.15.6:
@@ -5527,6 +5871,9 @@ packages:
from-exponential@1.1.1:
resolution: {integrity: sha512-VBE7f5OVnYwdgB3LHa+Qo29h8qVpxhVO9Trlc+AWm+/XNAgks1tAwMFHb33mjeiof77GglsJzeYF7OqXrROP/A==}
+ front-matter@4.0.2:
+ resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
+
fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
@@ -5689,8 +6036,8 @@ packages:
peerDependencies:
graphql: '>=0.11 <=16'
- graphql@16.8.1:
- resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
+ graphql@16.8.2:
+ resolution: {integrity: sha512-cvVIBILwuoSyD54U4cF/UXDh5yAobhNV/tPygI4lZhgOIJQE/WLWC4waBRb4I6bDVYb3OVx3lfHbaQOEoUD5sg==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
h3@1.11.1:
@@ -6230,6 +6577,10 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
+ jiti@1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
@@ -6384,8 +6735,8 @@ packages:
lighthouse-logger@1.4.2:
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
- lilconfig@3.1.1:
- resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -6395,8 +6746,8 @@ packages:
resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lint-staged@15.2.5:
- resolution: {integrity: sha512-j+DfX7W9YUvdzEZl3Rk47FhDF6xwDBV5wwsCPw6BwWZVPYJemusQmvb9bRsW23Sqsaa+vRloAWogbK4BUuU2zA==}
+ lint-staged@15.2.7:
+ resolution: {integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==}
engines: {node: '>=18.12.0'}
hasBin: true
@@ -6740,8 +7091,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.0:
- resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
+ mlly@1.7.1:
+ resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
modern-ahocorasick@1.0.1:
resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==}
@@ -6884,8 +7235,8 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.2.0:
- resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
+ npm-run-path@5.3.0:
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
nth-check@2.1.1:
@@ -6897,8 +7248,8 @@ packages:
nwsapi@2.2.10:
resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
- nx@19.1.1:
- resolution: {integrity: sha512-9NPKoAQ+I3KcoFDThAVu7YznE9fKbV/AiE5dAXPbWfye9HjRdnhLQmXN122ADlq4pA5wkXwxvAxRLw2WA7Kkgw==}
+ nx@19.3.0:
+ resolution: {integrity: sha512-WILWiROUkZWwuPJ12tP24Z0NULPEhxFN9i55/fECuVXYaFtkg6FvEne9C4d4bRqhZPcbrz6WhHnzE3NhdjH7XQ==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -7144,9 +7495,6 @@ packages:
resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==}
engines: {node: '>=14.16'}
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
-
picocolors@1.0.1:
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
@@ -7230,8 +7578,8 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- prettier@3.3.0:
- resolution: {integrity: sha512-J9odKxERhCQ10OC2yb93583f6UnYutOeiV5i0zEDS7UGTdUt0u+y8erxl3lBKvwo/JHyyoEdXjwp4dke9oyZ/g==}
+ prettier@3.3.2:
+ resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==}
engines: {node: '>=14'}
hasBin: true
@@ -7416,8 +7764,8 @@ packages:
react: '*'
react-native: '*'
- react-native@0.74.1:
- resolution: {integrity: sha512-0H2XpmghwOtfPpM2LKqHIN7gxy+7G/r1hwJHKLV6uoyXGC/gCojRtoo5NqyKrWpFC8cqyT6wTYCLuG7CxEKilg==}
+ react-native@0.74.2:
+ resolution: {integrity: sha512-EBMBjPPL4/GjHMP4NqsZabT3gI5WU9cSmduABGAGrd8uIcmTZ5F2Ng9k6gFmRm7n8e8CULxDNu98ZpQfBjl7Bw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -7641,6 +7989,9 @@ packages:
rfdc@1.3.1:
resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -8172,8 +8523,8 @@ packages:
uglify-js:
optional: true
- terser@5.31.0:
- resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
+ terser@5.31.1:
+ resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==}
engines: {node: '>=10'}
hasBin: true
@@ -8324,8 +8675,11 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tsx@4.11.2:
- resolution: {integrity: sha512-V5DL5v1BuItjsQ2FN9+4OjR7n5cr8hSgN+VGmm/fd2/0cgQdBIWHcQ3bFYm/5ZTmyxkTDBUIaRuW2divgfPe0A==}
+ tslib@2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+
+ tsx@4.15.6:
+ resolution: {integrity: sha512-is0VQQlfNZRHEuSSTKA6m4xw74IU4AizmuB6lAYLRt9XtuyeQnyJYexhNZOPCB59SqC4JzmSzPnHGBXxf3k0hA==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -8634,8 +8988,8 @@ packages:
typescript:
optional: true
- viem@2.13.3:
- resolution: {integrity: sha512-3tlwDRKHSelupFjbFMdUxF41f79ktyH2F9PAQ9Dltbs1DpdDlR1x+Ksa0th6qkyjjAbpDZP3F5nMTJv/1GVPdQ==}
+ viem@2.15.1:
+ resolution: {integrity: sha512-Vrveen3vDOJyPf8Q8TDyWePG2pTdK6IpSi4P6qlvAP+rXkAeqRvwYBy9AmGm+BeYpCETAyTT0SrCP6458XSt+w==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -8704,6 +9058,34 @@ packages:
terser:
optional: true
+ vite@5.3.1:
+ resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
vitest@1.6.0:
resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -8749,8 +9131,8 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- wagmi@2.9.8:
- resolution: {integrity: sha512-uSfYKB0JWtajz8YSntMBO4QQolx1fPPckwAVrRl9X66zQb0FLqgZeXrnf+PjFnmNbNsSyO3neOD/3TQqNL6m4Q==}
+ wagmi@2.10.2:
+ resolution: {integrity: sha512-0/Fg1ldMnLLpcKghY94kBLsqEo+qs4kYVUx3opfELiZjyB9JKWaqCMCKzae8j21V4FWa6ATkK2pRzy0FiXJSig==}
peerDependencies:
'@tanstack/react-query': '>=5.0.0'
react: '>=18'
@@ -8791,8 +9173,8 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ webpack@5.92.0:
+ resolution: {integrity: sha512-Bsw2X39MYIgxouNATyVpCNVWBCuUwDgWtN78g6lSdPJRLaQ/PUVm/oXcaRAyY/sMFoKFQrsPeqvTizWtq7QPCA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -8876,8 +9258,8 @@ packages:
write-file-atomic@2.4.3:
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
- ws@6.2.2:
- resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
+ ws@6.2.3:
+ resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -8887,8 +9269,8 @@ packages:
utf-8-validate:
optional: true
- ws@7.5.9:
- resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ ws@7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8899,20 +9281,20 @@ packages:
utf-8-validate:
optional: true
- ws@8.11.0:
- resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
+ ws@8.13.0:
+ resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
utf-8-validate:
optional: true
- ws@8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
+ ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8923,8 +9305,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.16.0:
- 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
@@ -8935,8 +9317,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.17.0:
- resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
+ ws@8.17.1:
+ resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -8989,8 +9371,8 @@ packages:
resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==}
engines: {node: '>= 14'}
- yaml@2.4.3:
- resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==}
+ yaml@2.4.5:
+ resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
engines: {node: '>= 14'}
hasBin: true
@@ -9089,20 +9471,20 @@ snapshots:
'@analytics/type-utils@0.6.2': {}
- '@ardatan/relay-compiler@12.0.0(graphql@16.8.1)':
+ '@ardatan/relay-compiler@12.0.0(graphql@16.8.2)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/generator': 7.24.6
'@babel/parser': 7.24.6
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.24.7
'@babel/traverse': 7.24.6
'@babel/types': 7.24.6
- babel-preset-fbjs: 3.4.0(@babel/core@7.24.6)
+ babel-preset-fbjs: 3.4.0(@babel/core@7.24.7)
chalk: 4.1.2
fb-watchman: 2.0.2
fbjs: 3.0.5
glob: 7.2.3
- graphql: 16.8.1
+ graphql: 16.8.2
immutable: 3.7.6
invariant: 2.2.4
nullthrows: 1.1.1
@@ -9129,22 +9511,27 @@ snapshots:
'@babel/highlight': 7.24.6
picocolors: 1.0.1
- '@babel/compat-data@7.24.4': {}
+ '@babel/code-frame@7.24.7':
+ dependencies:
+ '@babel/highlight': 7.24.7
+ picocolors: 1.0.1
'@babel/compat-data@7.24.6': {}
- '@babel/core@7.24.6':
+ '@babel/compat-data@7.24.7': {}
+
+ '@babel/core@7.24.7':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helpers': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/template': 7.24.6
- '@babel/traverse': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helpers': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
@@ -9167,84 +9554,108 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
+ '@babel/generator@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
'@babel/helper-annotate-as-pure@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ '@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.24.7
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-compilation-targets@7.24.6':
dependencies:
'@babel/compat-data': 7.24.6
- '@babel/helper-validator-option': 7.24.6
+ '@babel/helper-validator-option': 7.24.7
browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.6)':
+ '@babel/helper-compilation-targets@7.24.7':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.6)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/compat-data': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.6)':
+ '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-function-name': 7.24.6
- '@babel/helper-member-expression-to-functions': 7.24.5
+ '@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.6)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.24.6
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.6
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-function-name': 7.24.6
'@babel/helper-member-expression-to-functions': 7.24.6
'@babel/helper-optimise-call-expression': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
'@babel/helper-split-export-declaration': 7.24.6
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.6)':
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -9253,20 +9664,29 @@ snapshots:
'@babel/helper-environment-visitor@7.24.6': {}
+ '@babel/helper-environment-visitor@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
'@babel/helper-function-name@7.24.6':
dependencies:
'@babel/template': 7.24.6
'@babel/types': 7.24.6
+ '@babel/helper-function-name@7.24.7':
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
+
'@babel/helper-hoist-variables@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-member-expression-to-functions@7.23.0':
+ '@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.24.7
- '@babel/helper-member-expression-to-functions@7.24.5':
+ '@babel/helper-member-expression-to-functions@7.23.0':
dependencies:
'@babel/types': 7.24.6
@@ -9274,26 +9694,49 @@ snapshots:
dependencies:
'@babel/types': 7.24.6
+ '@babel/helper-member-expression-to-functions@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-imports@7.22.15':
dependencies:
'@babel/types': 7.23.9
- '@babel/helper-module-imports@7.24.3':
+ '@babel/helper-module-imports@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-module-imports@7.24.6':
+ '@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.6
'@babel/helper-split-export-declaration': 7.24.6
'@babel/helper-validator-identifier': 7.24.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
@@ -9303,41 +9746,65 @@ snapshots:
dependencies:
'@babel/types': 7.24.6
+ '@babel/helper-optimise-call-expression@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
'@babel/helper-plugin-utils@7.22.5': {}
'@babel/helper-plugin-utils@7.24.6': {}
- '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-wrap-function': 7.22.20
+ '@babel/helper-plugin-utils@7.24.7': {}
- '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-wrap-function': 7.24.6
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.6)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-wrap-function': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-member-expression-to-functions': 7.24.6
'@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-simple-access@7.24.6':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.24.7
+
+ '@babel/helper-simple-access@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
@@ -9347,36 +9814,54 @@ snapshots:
dependencies:
'@babel/types': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-split-export-declaration@7.24.6':
dependencies:
'@babel/types': 7.24.6
+ '@babel/helper-split-export-declaration@7.24.7':
+ dependencies:
+ '@babel/types': 7.24.7
+
'@babel/helper-string-parser@7.23.4': {}
'@babel/helper-string-parser@7.24.6': {}
+ '@babel/helper-string-parser@7.24.7': {}
+
'@babel/helper-validator-identifier@7.22.20': {}
'@babel/helper-validator-identifier@7.24.6': {}
- '@babel/helper-validator-option@7.24.6': {}
+ '@babel/helper-validator-identifier@7.24.7': {}
- '@babel/helper-wrap-function@7.22.20':
- dependencies:
- '@babel/helper-function-name': 7.24.6
- '@babel/template': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/helper-validator-option@7.24.7': {}
'@babel/helper-wrap-function@7.24.6':
dependencies:
'@babel/helper-function-name': 7.24.6
'@babel/template': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/types': 7.24.7
- '@babel/helpers@7.24.6':
+ '@babel/helper-wrap-function@7.24.7':
dependencies:
- '@babel/template': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/helper-function-name': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helpers@7.24.7':
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.7
'@babel/highlight@7.23.4':
dependencies:
@@ -9391,6 +9876,13 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.0.1
+ '@babel/highlight@7.24.7':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.24.7
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.1
+
'@babel/parser@7.23.9':
dependencies:
'@babel/types': 7.23.9
@@ -9399,1191 +9891,1328 @@ snapshots:
dependencies:
'@babel/types': 7.24.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.6)':
+ '@babel/parser@7.24.7':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/types': 7.24.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-decorators@7.23.9(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-decorators@7.23.9(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+
+ '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)':
dependencies:
'@babel/compat-data': 7.24.6
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
- '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.7)
- '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.6)':
+ '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
+
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
'@babel/helper-split-export-declaration': 7.24.6
globals: 11.12.0
- '@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.6
'@babel/helper-compilation-targets': 7.24.6
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.7)
'@babel/helper-split-export-declaration': 7.24.6
globals: 11.12.0
- '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/template': 7.24.6
- '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/template': 7.24.6
- '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/template': 7.24.7
- '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.7)
- '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7)
+
+ '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
'@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
'@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-simple-access': 7.24.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-simple-access': 7.24.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-hoist-variables': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-identifier': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-hoist-variables': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-validator-identifier': 7.24.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.7)
- '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
+
+ '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-display-name@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-jsx-development@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-react-jsx@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/types': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-react-pure-annotations@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/types': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.6
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.7)
- '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
- '@babel/preset-env@7.24.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/preset-env@7.24.6(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.6)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-object-rest-spread': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.6)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
- core-js-compat: 3.37.0
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
+ core-js-compat: 3.37.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/compat-data': 7.24.6
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
+ '@babel/preset-env@7.24.7(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/compat-data': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7)
core-js-compat: 3.37.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.6(@babel/core@7.24.6)':
+ '@babel/preset-flow@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
'@babel/types': 7.24.6
esutils: 2.0.3
- '@babel/preset-react@7.24.6(@babel/core@7.24.6)':
+ '@babel/preset-react@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-development': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-pure-annotations': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/preset-typescript@7.24.1(@babel/core@7.24.6)':
+ '@babel/preset-typescript@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/preset-typescript@7.24.6(@babel/core@7.24.6)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-validator-option': 7.24.7
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/register@7.24.6(@babel/core@7.24.6)':
+ '@babel/register@7.24.6(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -10612,6 +11241,10 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
+ '@babel/runtime@7.24.7':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
'@babel/template@7.23.9':
dependencies:
'@babel/code-frame': 7.23.5
@@ -10624,6 +11257,12 @@ snapshots:
'@babel/parser': 7.24.6
'@babel/types': 7.24.6
+ '@babel/template@7.24.7':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+
'@babel/traverse@7.23.9':
dependencies:
'@babel/code-frame': 7.24.6
@@ -10654,6 +11293,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.24.7':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
+ debug: 4.3.5
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.23.9':
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -10666,6 +11320,12 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.6
to-fast-properties: 2.0.0
+ '@babel/types@7.24.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
'@coinbase/wallet-sdk@3.9.3':
dependencies:
bn.js: 5.2.1
@@ -10680,7 +11340,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@coinbase/wallet-sdk@4.0.2':
+ '@coinbase/wallet-sdk@4.0.3':
dependencies:
buffer: 6.0.3
clsx: 1.2.1
@@ -10781,72 +11441,141 @@ snapshots:
'@esbuild/aix-ppc64@0.20.2':
optional: true
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
'@esbuild/android-arm64@0.20.2':
optional: true
+ '@esbuild/android-arm64@0.21.5':
+ optional: true
+
'@esbuild/android-arm@0.20.2':
optional: true
+ '@esbuild/android-arm@0.21.5':
+ optional: true
+
'@esbuild/android-x64@0.20.2':
optional: true
+ '@esbuild/android-x64@0.21.5':
+ optional: true
+
'@esbuild/darwin-arm64@0.20.2':
optional: true
+ '@esbuild/darwin-arm64@0.21.5':
+ optional: true
+
'@esbuild/darwin-x64@0.20.2':
optional: true
+ '@esbuild/darwin-x64@0.21.5':
+ optional: true
+
'@esbuild/freebsd-arm64@0.20.2':
optional: true
+ '@esbuild/freebsd-arm64@0.21.5':
+ optional: true
+
'@esbuild/freebsd-x64@0.20.2':
optional: true
+ '@esbuild/freebsd-x64@0.21.5':
+ optional: true
+
'@esbuild/linux-arm64@0.20.2':
optional: true
+ '@esbuild/linux-arm64@0.21.5':
+ optional: true
+
'@esbuild/linux-arm@0.20.2':
optional: true
+ '@esbuild/linux-arm@0.21.5':
+ optional: true
+
'@esbuild/linux-ia32@0.20.2':
optional: true
+ '@esbuild/linux-ia32@0.21.5':
+ optional: true
+
'@esbuild/linux-loong64@0.20.2':
optional: true
+ '@esbuild/linux-loong64@0.21.5':
+ optional: true
+
'@esbuild/linux-mips64el@0.20.2':
optional: true
+ '@esbuild/linux-mips64el@0.21.5':
+ optional: true
+
'@esbuild/linux-ppc64@0.20.2':
optional: true
+ '@esbuild/linux-ppc64@0.21.5':
+ optional: true
+
'@esbuild/linux-riscv64@0.20.2':
optional: true
+ '@esbuild/linux-riscv64@0.21.5':
+ optional: true
+
'@esbuild/linux-s390x@0.20.2':
optional: true
+ '@esbuild/linux-s390x@0.21.5':
+ optional: true
+
'@esbuild/linux-x64@0.20.2':
optional: true
+ '@esbuild/linux-x64@0.21.5':
+ optional: true
+
'@esbuild/netbsd-x64@0.20.2':
optional: true
+ '@esbuild/netbsd-x64@0.21.5':
+ optional: true
+
'@esbuild/openbsd-x64@0.20.2':
optional: true
+ '@esbuild/openbsd-x64@0.21.5':
+ optional: true
+
'@esbuild/sunos-x64@0.20.2':
optional: true
+ '@esbuild/sunos-x64@0.21.5':
+ optional: true
+
'@esbuild/win32-arm64@0.20.2':
optional: true
+ '@esbuild/win32-arm64@0.21.5':
+ optional: true
+
'@esbuild/win32-ia32@0.20.2':
optional: true
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
'@esbuild/win32-x64@0.20.2':
optional: true
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
@@ -10882,12 +11611,12 @@ snapshots:
'@ethereumjs/common': 3.2.0
'@ethereumjs/rlp': 4.0.1
'@ethereumjs/util': 8.1.0
- ethereum-cryptography: 2.1.3
+ ethereum-cryptography: 2.2.0
'@ethereumjs/util@8.1.0':
dependencies:
'@ethereumjs/rlp': 4.0.1
- ethereum-cryptography: 2.1.3
+ ethereum-cryptography: 2.2.0
micro-ftch: 0.3.1
'@floating-ui/core@1.6.2':
@@ -10907,61 +11636,61 @@ snapshots:
'@floating-ui/utils@0.2.2': {}
- '@formatjs/cli@6.2.12(@vue/compiler-core@3.4.27)':
+ '@formatjs/cli@6.2.12(@vue/compiler-core@3.4.29)':
optionalDependencies:
- '@vue/compiler-core': 3.4.27
+ '@vue/compiler-core': 3.4.29
'@formatjs/ecma402-abstract@1.18.2':
dependencies:
'@formatjs/intl-localematcher': 0.5.4
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/ecma402-abstract@2.0.0':
dependencies:
'@formatjs/intl-localematcher': 0.5.4
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/fast-memoize@2.2.0':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/icu-messageformat-parser@2.7.6':
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
'@formatjs/icu-skeleton-parser': 1.8.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/icu-messageformat-parser@2.7.8':
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
'@formatjs/icu-skeleton-parser': 1.8.2
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/icu-skeleton-parser@1.8.0':
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/icu-skeleton-parser@1.8.2':
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/intl-displaynames@6.6.8':
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
'@formatjs/intl-localematcher': 0.5.4
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/intl-listformat@7.5.7':
dependencies:
'@formatjs/ecma402-abstract': 2.0.0
'@formatjs/intl-localematcher': 0.5.4
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/intl-localematcher@0.5.4':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
'@formatjs/intl@2.10.4(typescript@5.4.5)':
dependencies:
@@ -10971,7 +11700,7 @@ snapshots:
'@formatjs/intl-displaynames': 6.6.8
'@formatjs/intl-listformat': 7.5.7
intl-messageformat: 10.5.14
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
typescript: 5.4.5
@@ -10982,7 +11711,7 @@ snapshots:
'@types/node': 17.0.45
chalk: 4.1.2
json-stable-stringify: 1.1.1
- tslib: 2.6.2
+ tslib: 2.6.3
typescript: 5.4.5
'@formatjs/ts-transformer@3.13.14':
@@ -10992,46 +11721,46 @@ snapshots:
'@types/node': 17.0.45
chalk: 4.1.2
json-stable-stringify: 1.1.1
- tslib: 2.6.2
+ tslib: 2.6.3
typescript: 5.4.5
- '@graphql-codegen/add@3.2.3(graphql@16.8.1)':
+ '@graphql-codegen/add@3.2.3(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.2)
+ graphql: 16.8.2
tslib: 2.4.1
- '@graphql-codegen/add@5.0.2(graphql@16.8.1)':
+ '@graphql-codegen/add@5.0.2(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.0)(bufferutil@4.0.8)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.4.5)':
+ '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.5)(bufferutil@4.0.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5)':
dependencies:
'@babel/generator': 7.23.6
'@babel/template': 7.23.9
'@babel/types': 7.23.9
- '@graphql-codegen/client-preset': 4.2.2(graphql@16.8.1)
- '@graphql-codegen/core': 4.0.2(graphql@16.8.1)
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/code-file-loader': 8.1.0(graphql@16.8.1)
- '@graphql-tools/git-loader': 8.0.4(graphql@16.8.1)
- '@graphql-tools/github-loader': 8.0.0(@types/node@20.14.0)(graphql@16.8.1)
- '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/load': 8.0.1(graphql@16.8.1)
- '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-codegen/client-preset': 4.2.2(graphql@16.8.2)
+ '@graphql-codegen/core': 4.0.2(graphql@16.8.2)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.2)
+ '@graphql-tools/code-file-loader': 8.1.0(graphql@16.8.2)
+ '@graphql-tools/git-loader': 8.0.4(graphql@16.8.2)
+ '@graphql-tools/github-loader': 8.0.0(@types/node@20.14.5)(graphql@16.8.2)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.2)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.2)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.2)
+ '@graphql-tools/prisma-loader': 8.0.2(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@whatwg-node/fetch': 0.8.8
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.4.5)
debounce: 1.2.1
detect-indent: 6.1.0
- graphql: 16.8.1
- graphql-config: 5.0.3(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)(typescript@5.4.5)
+ graphql: 16.8.2
+ graphql-config: 5.0.3(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)(typescript@5.4.5)
inquirer: 8.2.6
is-glob: 4.0.3
jiti: 1.21.0
@@ -11042,7 +11771,7 @@ snapshots:
shell-quote: 1.8.1
string-env-interpolation: 1.0.1
ts-log: 2.2.5
- tslib: 2.6.2
+ tslib: 2.6.3
yaml: 2.3.4
yargs: 17.7.2
optionalDependencies:
@@ -11057,397 +11786,397 @@ snapshots:
- typescript
- utf-8-validate
- '@graphql-codegen/client-preset@4.2.2(graphql@16.8.1)':
+ '@graphql-codegen/client-preset@4.2.2(graphql@16.8.2)':
dependencies:
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.23.9
- '@graphql-codegen/add': 5.0.2(graphql@16.8.1)
- '@graphql-codegen/gql-tag-operations': 4.0.4(graphql@16.8.1)
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-codegen/typed-document-node': 5.0.4(graphql@16.8.1)
- '@graphql-codegen/typescript': 4.0.7(graphql@16.8.1)
- '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.1)
- '@graphql-tools/documents': 1.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-codegen/add': 5.0.2(graphql@16.8.2)
+ '@graphql-codegen/gql-tag-operations': 4.0.4(graphql@16.8.2)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-codegen/typed-document-node': 5.0.4(graphql@16.8.2)
+ '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2)
+ '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.2)
+ '@graphql-tools/documents': 1.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/core@4.0.2(graphql@16.8.1)':
+ '@graphql-codegen/core@4.0.2(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-codegen/gql-tag-operations@4.0.4(graphql@16.8.1)':
+ '@graphql-codegen/gql-tag-operations@4.0.4(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
auto-bind: 4.0.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/near-operation-file-preset@3.0.0(graphql@16.8.1)':
+ '@graphql-codegen/near-operation-file-preset@3.0.0(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/add': 3.2.3(graphql@16.8.1)
- '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-codegen/add': 3.2.3(graphql@16.8.2)
+ '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
parse-filepath: 1.0.2
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.1)':
+ '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 8.13.1(graphql@16.8.1)
+ '@graphql-tools/utils': 8.13.1(graphql@16.8.2)
change-case-all: 1.0.14
common-tags: 1.8.2
- graphql: 16.8.1
+ graphql: 16.8.2
import-from: 4.0.0
lodash: 4.17.21
tslib: 2.4.1
- '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.1)':
+ '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 9.2.1(graphql@16.8.1)
+ '@graphql-tools/utils': 9.2.1(graphql@16.8.2)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.8.1
+ graphql: 16.8.2
import-from: 4.0.0
lodash: 4.17.21
tslib: 2.4.1
- '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.1)':
+ '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.8.1
+ graphql: 16.8.2
import-from: 4.0.0
lodash: 4.17.21
- tslib: 2.6.2
+ tslib: 2.6.3
- '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.1)':
+ '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.2.1(graphql@16.8.1)
+ '@graphql-tools/utils': 10.2.1(graphql@16.8.2)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.8.1
+ graphql: 16.8.2
import-from: 4.0.0
lodash: 4.17.21
- tslib: 2.6.2
+ tslib: 2.6.3
- '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.1)':
+ '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.2.1(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2)
+ '@graphql-tools/utils': 10.2.1(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-codegen/typed-document-node@5.0.4(graphql@16.8.1)':
+ '@graphql-codegen/typed-document-node@5.0.4(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 4.1.2(graphql@16.8.2)
auto-bind: 4.0.0
change-case-all: 1.0.15
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/typescript-operations@4.2.1(graphql@16.8.1)':
+ '@graphql-codegen/typescript-operations@4.2.1(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1)
- '@graphql-codegen/typescript': 4.0.7(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2)
+ '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2)
auto-bind: 4.0.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/typescript-react-query@6.1.0(graphql@16.8.1)':
+ '@graphql-codegen/typescript-react-query@6.1.0(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.8.2)
auto-bind: 4.0.0
change-case-all: 1.0.15
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/typescript@4.0.7(graphql@16.8.1)':
+ '@graphql-codegen/typescript@4.0.7(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.1)
- '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.1)
- '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2)
+ '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.2)
+ '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2)
auto-bind: 4.0.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.8.1)':
+ '@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
- '@graphql-tools/optimize': 1.4.0(graphql@16.8.1)
- '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.1)
- '@graphql-tools/utils': 8.13.1(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.2)
+ '@graphql-tools/optimize': 1.4.0(graphql@16.8.2)
+ '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.8.2)
+ '@graphql-tools/utils': 8.13.1(graphql@16.8.2)
auto-bind: 4.0.0
change-case-all: 1.0.14
dependency-graph: 0.11.0
- graphql: 16.8.1
- graphql-tag: 2.12.6(graphql@16.8.1)
+ graphql: 16.8.2
+ graphql-tag: 2.12.6(graphql@16.8.2)
parse-filepath: 1.0.2
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/visitor-plugin-common@4.1.2(graphql@16.8.1)':
+ '@graphql-codegen/visitor-plugin-common@4.1.2(graphql@16.8.2)':
dependencies:
- '@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.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.8.2)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.8.2)
+ '@graphql-tools/relay-operation-optimizer': 7.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
- graphql: 16.8.1
- graphql-tag: 2.12.6(graphql@16.8.1)
+ graphql: 16.8.2
+ graphql-tag: 2.12.6(graphql@16.8.2)
parse-filepath: 1.0.2
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/visitor-plugin-common@5.2.0(graphql@16.8.1)':
+ '@graphql-codegen/visitor-plugin-common@5.2.0(graphql@16.8.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.4(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.2.1(graphql@16.8.1)
+ '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.8.2)
+ '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.2)
+ '@graphql-tools/utils': 10.2.1(graphql@16.8.2)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
- graphql: 16.8.1
- graphql-tag: 2.12.6(graphql@16.8.1)
+ graphql: 16.8.2
+ graphql-tag: 2.12.6(graphql@16.8.2)
parse-filepath: 1.0.2
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/apollo-engine-loader@8.0.0(graphql@16.8.1)':
+ '@graphql-tools/apollo-engine-loader@8.0.0(graphql@16.8.2)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@whatwg-node/fetch': 0.9.16
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- '@graphql-tools/batch-execute@9.0.2(graphql@16.8.1)':
+ '@graphql-tools/batch-execute@9.0.2(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
dataloader: 2.2.2
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
- '@graphql-tools/code-file-loader@8.1.0(graphql@16.8.1)':
+ '@graphql-tools/code-file-loader@8.1.0(graphql@16.8.2)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
globby: 11.1.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
unixify: 1.0.0
transitivePeerDependencies:
- supports-color
- '@graphql-tools/delegate@10.0.3(graphql@16.8.1)':
+ '@graphql-tools/delegate@10.0.3(graphql@16.8.2)':
dependencies:
- '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1)
- '@graphql-tools/executor': 1.2.0(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.2)
+ '@graphql-tools/executor': 1.2.0(graphql@16.8.2)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
dataloader: 2.2.2
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/documents@1.0.0(graphql@16.8.1)':
+ '@graphql-tools/documents@1.0.0(graphql@16.8.2)':
dependencies:
- graphql: 16.8.1
+ graphql: 16.8.2
lodash.sortby: 4.7.0
- tslib: 2.6.2
+ tslib: 2.6.3
- '@graphql-tools/executor-graphql-ws@1.1.0(bufferutil@4.0.8)(graphql@16.8.1)':
+ '@graphql-tools/executor-graphql-ws@1.1.0(bufferutil@4.0.8)(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@types/ws': 8.5.10
- graphql: 16.8.1
- graphql-ws: 5.14.3(graphql@16.8.1)
+ graphql: 16.8.2
+ graphql-ws: 5.14.3(graphql@16.8.2)
isomorphic-ws: 5.0.0(ws@8.16.0(bufferutil@4.0.8))
- tslib: 2.6.2
+ tslib: 2.6.3
ws: 8.16.0(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor-http@1.0.7(@types/node@20.14.0)(graphql@16.8.1)':
+ '@graphql-tools/executor-http@1.0.7(@types/node@20.14.5)(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@repeaterjs/repeater': 3.0.5
'@whatwg-node/fetch': 0.9.16
extract-files: 11.0.0
- graphql: 16.8.1
- meros: 1.3.0(@types/node@20.14.0)
- tslib: 2.6.2
+ graphql: 16.8.2
+ meros: 1.3.0(@types/node@20.14.5)
+ tslib: 2.6.3
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
- '@graphql-tools/executor-legacy-ws@1.0.5(bufferutil@4.0.8)(graphql@16.8.1)':
+ '@graphql-tools/executor-legacy-ws@1.0.5(bufferutil@4.0.8)(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@types/ws': 8.5.10
- graphql: 16.8.1
+ graphql: 16.8.2
isomorphic-ws: 5.0.0(ws@8.16.0(bufferutil@4.0.8))
- tslib: 2.6.2
+ tslib: 2.6.3
ws: 8.16.0(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor@1.2.0(graphql@16.8.1)':
+ '@graphql-tools/executor@1.2.0(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
'@repeaterjs/repeater': 3.0.5
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
- '@graphql-tools/git-loader@8.0.4(graphql@16.8.1)':
+ '@graphql-tools/git-loader@8.0.4(graphql@16.8.2)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
is-glob: 4.0.3
micromatch: 4.0.5
- tslib: 2.6.2
+ tslib: 2.6.3
unixify: 1.0.0
transitivePeerDependencies:
- supports-color
- '@graphql-tools/github-loader@8.0.0(@types/node@20.14.0)(graphql@16.8.1)':
+ '@graphql-tools/github-loader@8.0.0(@types/node@20.14.5)(graphql@16.8.2)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/executor-http': 1.0.7(@types/node@20.14.0)(graphql@16.8.1)
- '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.7(@types/node@20.14.5)(graphql@16.8.2)
+ '@graphql-tools/graphql-tag-pluck': 8.2.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@whatwg-node/fetch': 0.9.16
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
- encoding
- supports-color
- '@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.1)':
+ '@graphql-tools/graphql-file-loader@8.0.0(graphql@16.8.2)':
dependencies:
- '@graphql-tools/import': 7.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/import': 7.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
globby: 11.1.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
unixify: 1.0.0
- '@graphql-tools/graphql-tag-pluck@8.2.0(graphql@16.8.1)':
+ '@graphql-tools/graphql-tag-pluck@8.2.0(graphql@16.8.2)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/parser': 7.23.9
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.24.7)
'@babel/traverse': 7.23.9
'@babel/types': 7.23.9
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- supports-color
- '@graphql-tools/import@7.0.0(graphql@16.8.1)':
+ '@graphql-tools/import@7.0.0(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
resolve-from: 5.0.0
- tslib: 2.6.2
+ tslib: 2.6.3
- '@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1)':
+ '@graphql-tools/json-file-loader@8.0.0(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
globby: 11.1.0
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
unixify: 1.0.0
- '@graphql-tools/load@8.0.1(graphql@16.8.1)':
+ '@graphql-tools/load@8.0.1(graphql@16.8.2)':
dependencies:
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
p-limit: 3.1.0
- tslib: 2.6.2
+ tslib: 2.6.3
- '@graphql-tools/merge@9.0.1(graphql@16.8.1)':
+ '@graphql-tools/merge@9.0.1(graphql@16.8.2)':
dependencies:
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/optimize@1.4.0(graphql@16.8.1)':
+ '@graphql-tools/optimize@1.4.0(graphql@16.8.2)':
dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/optimize@2.0.0(graphql@16.8.1)':
+ '@graphql-tools/optimize@2.0.0(graphql@16.8.2)':
dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/prisma-loader@8.0.2(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)':
+ '@graphql-tools/prisma-loader@8.0.2(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)':
dependencies:
- '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
'@types/js-yaml': 4.0.9
'@types/json-stable-stringify': 1.0.36
'@whatwg-node/fetch': 0.9.16
chalk: 4.1.2
debug: 4.3.4
dotenv: 16.4.1
- graphql: 16.8.1
- graphql-request: 6.1.0(graphql@16.8.1)
+ graphql: 16.8.2
+ graphql-request: 6.1.0(graphql@16.8.2)
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.2
jose: 5.2.1
@@ -11455,7 +12184,7 @@ snapshots:
json-stable-stringify: 1.1.1
lodash: 4.17.21
scuid: 1.1.0
- tslib: 2.6.2
+ tslib: 2.6.3
yaml-ast-parser: 0.0.43
transitivePeerDependencies:
- '@types/node'
@@ -11464,58 +12193,58 @@ snapshots:
- supports-color
- utf-8-validate
- '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.8.1)':
+ '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.8.2)':
dependencies:
- '@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 9.2.1(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@ardatan/relay-compiler': 12.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 9.2.1(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/relay-operation-optimizer@7.0.0(graphql@16.8.1)':
+ '@graphql-tools/relay-operation-optimizer@7.0.0(graphql@16.8.2)':
dependencies:
- '@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@ardatan/relay-compiler': 12.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.8.1)':
+ '@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.8.2)':
dependencies:
- '@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.2.1(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@ardatan/relay-compiler': 12.0.0(graphql@16.8.2)
+ '@graphql-tools/utils': 10.2.1(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/schema@10.0.2(graphql@16.8.1)':
+ '@graphql-tools/schema@10.0.2(graphql@16.8.2)':
dependencies:
- '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
- '@graphql-tools/url-loader@8.0.1(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)':
+ '@graphql-tools/url-loader@8.0.1(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
- '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.7(@types/node@20.14.0)(graphql@16.8.1)
- '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.1(graphql@16.8.1)
+ '@graphql-tools/delegate': 10.0.3(graphql@16.8.2)
+ '@graphql-tools/executor-graphql-ws': 1.1.0(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/executor-http': 1.0.7(@types/node@20.14.5)(graphql@16.8.2)
+ '@graphql-tools/executor-legacy-ws': 1.0.5(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ '@graphql-tools/wrap': 10.0.1(graphql@16.8.2)
'@types/ws': 8.5.10
'@whatwg-node/fetch': 0.9.16
- graphql: 16.8.1
+ graphql: 16.8.2
isomorphic-ws: 5.0.0(ws@8.16.0(bufferutil@4.0.8))
- tslib: 2.6.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
ws: 8.16.0(bufferutil@4.0.8)
transitivePeerDependencies:
@@ -11524,45 +12253,45 @@ snapshots:
- encoding
- utf-8-validate
- '@graphql-tools/utils@10.0.13(graphql@16.8.1)':
+ '@graphql-tools/utils@10.0.13(graphql@16.8.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
cross-inspect: 1.0.0
dset: 3.1.3
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/utils@10.2.1(graphql@16.8.1)':
+ '@graphql-tools/utils@10.2.1(graphql@16.8.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
cross-inspect: 1.0.0
dset: 3.1.3
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/utils@8.13.1(graphql@16.8.1)':
+ '@graphql-tools/utils@8.13.1(graphql@16.8.2)':
dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/utils@9.2.1(graphql@16.8.1)':
+ '@graphql-tools/utils@9.2.1(graphql@16.8.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
- '@graphql-tools/wrap@10.0.1(graphql@16.8.1)':
+ '@graphql-tools/wrap@10.0.1(graphql@16.8.2)':
dependencies:
- '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ '@graphql-tools/delegate': 10.0.3(graphql@16.8.2)
+ '@graphql-tools/schema': 10.0.2(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
+ graphql: 16.8.2
+ tslib: 2.6.3
value-or-promise: 1.0.12
- '@graphql-typed-document-node/core@3.2.0(graphql@16.8.1)':
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.8.2)':
dependencies:
- graphql: 16.8.1
+ graphql: 16.8.2
'@hapi/hoek@9.3.0': {}
@@ -11687,9 +12416,9 @@ snapshots:
'@metamask/json-rpc-engine@7.3.3':
dependencies:
- '@metamask/rpc-errors': 6.2.1
+ '@metamask/rpc-errors': 6.3.0
'@metamask/safe-event-emitter': 3.1.1
- '@metamask/utils': 8.4.0
+ '@metamask/utils': 8.5.0
transitivePeerDependencies:
- supports-color
@@ -11697,7 +12426,7 @@ snapshots:
dependencies:
'@metamask/json-rpc-engine': 7.3.3
'@metamask/safe-event-emitter': 3.1.1
- '@metamask/utils': 8.4.0
+ '@metamask/utils': 8.5.0
readable-stream: 3.6.2
transitivePeerDependencies:
- supports-color
@@ -11716,9 +12445,9 @@ snapshots:
'@metamask/json-rpc-engine': 7.3.3
'@metamask/json-rpc-middleware-stream': 6.0.2
'@metamask/object-multiplex': 2.0.0
- '@metamask/rpc-errors': 6.2.1
+ '@metamask/rpc-errors': 6.3.0
'@metamask/safe-event-emitter': 3.1.1
- '@metamask/utils': 8.4.0
+ '@metamask/utils': 8.5.0
detect-browser: 5.3.0
extension-port-stream: 3.0.0
fast-deep-equal: 3.1.3
@@ -11728,9 +12457,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/rpc-errors@6.2.1':
+ '@metamask/rpc-errors@6.3.0':
dependencies:
- '@metamask/utils': 8.4.0
+ '@metamask/utils': 8.5.0
fast-safe-stringify: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -11739,13 +12468,13 @@ snapshots:
'@metamask/safe-event-emitter@3.1.1': {}
- '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8))':
+ '@metamask/sdk-communication-layer@0.20.5(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8))':
dependencies:
bufferutil: 4.0.8
cross-fetch: 4.0.0
date-fns: 2.30.0
debug: 4.3.5
- eciesjs: 0.3.18
+ eciesjs: 0.3.19
eventemitter2: 6.4.9
readable-stream: 3.6.2
socket.io-client: 4.7.5(bufferutil@4.0.8)
@@ -11754,27 +12483,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)':
dependencies:
i18next: 22.5.1
qr-code-styling: 1.6.0-rc.1
- react-i18next: 14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
+ react-i18next: 14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
- '@metamask/sdk@0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)':
+ '@metamask/sdk@0.20.5(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 15.0.0
- '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8))
- '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
+ '@metamask/sdk-communication-layer': 0.20.5(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8))
+ '@metamask/sdk-install-modal-web': 0.20.4(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
cross-fetch: 4.0.0
debug: 4.3.5
- eciesjs: 0.3.18
+ eciesjs: 0.3.19
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
i18next: 22.5.1
@@ -11782,7 +12511,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.0
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0(rollup@4.18.0)
socket.io-client: 4.7.5(bufferutil@4.0.8)
@@ -11800,6 +12529,8 @@ snapshots:
- supports-color
- utf-8-validate
+ '@metamask/superstruct@3.0.0': {}
+
'@metamask/utils@5.0.2':
dependencies:
'@ethereumjs/tx': 4.2.0
@@ -11810,37 +12541,37 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/utils@8.4.0':
+ '@metamask/utils@8.5.0':
dependencies:
'@ethereumjs/tx': 4.2.0
+ '@metamask/superstruct': 3.0.0
'@noble/hashes': 1.4.0
- '@scure/base': 1.1.6
+ '@scure/base': 1.1.7
'@types/debug': 4.1.12
debug: 4.3.5
pony-cause: 2.1.11
semver: 7.6.2
- superstruct: 1.0.4
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
- '@microsoft/api-extractor-model@7.28.13(@types/node@20.14.0)':
+ '@microsoft/api-extractor-model@7.28.13(@types/node@20.14.5)':
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.14.0)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.5)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.43.0(@types/node@20.14.0)':
+ '@microsoft/api-extractor@7.43.0(@types/node@20.14.5)':
dependencies:
- '@microsoft/api-extractor-model': 7.28.13(@types/node@20.14.0)
+ '@microsoft/api-extractor-model': 7.28.13(@types/node@20.14.5)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.14.0)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.5)
'@rushstack/rig-package': 0.5.2
- '@rushstack/terminal': 0.10.0(@types/node@20.14.0)
- '@rushstack/ts-command-line': 4.19.1(@types/node@20.14.0)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.5)
+ '@rushstack/ts-command-line': 4.19.1(@types/node@20.14.5)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -11875,7 +12606,7 @@ snapshots:
'@motionone/easing': 10.18.0
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/dom@10.18.0':
dependencies:
@@ -11884,23 +12615,23 @@ snapshots:
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
hey-listen: 1.0.8
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/easing@10.18.0':
dependencies:
'@motionone/utils': 10.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/generators@10.18.0':
dependencies:
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/svelte@10.16.4':
dependencies:
'@motionone/dom': 10.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/types@10.17.1': {}
@@ -11908,19 +12639,19 @@ snapshots:
dependencies:
'@motionone/types': 10.17.1
hey-listen: 1.0.8
- tslib: 2.6.2
+ tslib: 2.6.3
'@motionone/vue@10.16.4':
dependencies:
'@motionone/dom': 10.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@mui/base@5.0.0-beta.40(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
'@floating-ui/react-dom': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/types': 7.2.14(@types/react@18.3.3)
- '@mui/utils': 5.15.14(@types/react@18.3.3)(react@18.3.1)
+ '@mui/utils': 5.15.20(@types/react@18.3.3)(react@18.3.1)
'@popperjs/core': 2.11.8
clsx: 2.1.1
prop-types: 15.8.1
@@ -11929,16 +12660,16 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
- '@mui/core-downloads-tracker@5.15.19': {}
+ '@mui/core-downloads-tracker@5.15.20': {}
- '@mui/material@5.15.19(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/material@5.15.20(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
'@mui/base': 5.0.0-beta.40(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/core-downloads-tracker': 5.15.19
- '@mui/system': 5.15.15(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
+ '@mui/core-downloads-tracker': 5.15.20
+ '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@mui/types': 7.2.14(@types/react@18.3.3)
- '@mui/utils': 5.15.14(@types/react@18.3.3)(react@18.3.1)
+ '@mui/utils': 5.15.20(@types/react@18.3.3)(react@18.3.1)
'@types/react-transition-group': 4.4.10
clsx: 2.1.1
csstype: 3.1.3
@@ -11952,10 +12683,10 @@ snapshots:
'@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@types/react': 18.3.3
- '@mui/private-theming@5.15.14(@types/react@18.3.3)(react@18.3.1)':
+ '@mui/private-theming@5.15.20(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
- '@mui/utils': 5.15.14(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.24.7
+ '@mui/utils': 5.15.20(@types/react@18.3.3)(react@18.3.1)
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
@@ -11963,7 +12694,7 @@ snapshots:
'@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
'@emotion/cache': 11.11.0
csstype: 3.1.3
prop-types: 15.8.1
@@ -11972,13 +12703,13 @@ snapshots:
'@emotion/react': 11.11.4(@types/react@18.3.3)(react@18.3.1)
'@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
- '@mui/system@5.15.15(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)':
+ '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
- '@mui/private-theming': 5.15.14(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.24.7
+ '@mui/private-theming': 5.15.20(@types/react@18.3.3)(react@18.3.1)
'@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)
'@mui/types': 7.2.14(@types/react@18.3.3)
- '@mui/utils': 5.15.14(@types/react@18.3.3)(react@18.3.1)
+ '@mui/utils': 5.15.20(@types/react@18.3.3)(react@18.3.1)
clsx: 2.1.1
csstype: 3.1.3
prop-types: 15.8.1
@@ -11992,9 +12723,9 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
- '@mui/utils@5.15.14(@types/react@18.3.3)(react@18.3.1)':
+ '@mui/utils@5.15.20(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
'@types/prop-types': 15.7.12
prop-types: 15.8.1
react: 18.3.1
@@ -12006,14 +12737,12 @@ snapshots:
dependencies:
'@noble/hashes': 1.3.2
- '@noble/curves@1.3.0':
+ '@noble/curves@1.4.0':
dependencies:
- '@noble/hashes': 1.3.3
+ '@noble/hashes': 1.4.0
'@noble/hashes@1.3.2': {}
- '@noble/hashes@1.3.3': {}
-
'@noble/hashes@1.4.0': {}
'@nodelib/fs.scandir@2.1.5':
@@ -12028,9 +12757,9 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@nrwl/cypress@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nrwl/cypress@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nx/cypress': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/cypress': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12046,15 +12775,15 @@ snapshots:
- typescript
- verdaccio
- '@nrwl/devkit@19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nrwl/devkit@19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
transitivePeerDependencies:
- nx
- '@nrwl/eslint-plugin-nx@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nrwl/eslint-plugin-nx@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nx/eslint-plugin': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/eslint-plugin': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12070,9 +12799,9 @@ snapshots:
- typescript
- verdaccio
- '@nrwl/js@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nrwl/js@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12085,9 +12814,9 @@ snapshots:
- typescript
- verdaccio
- '@nrwl/react@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nrwl/react@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nx/react': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nx/react': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12103,18 +12832,18 @@ snapshots:
- verdaccio
- webpack
- '@nrwl/tao@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))':
+ '@nrwl/tao@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))':
dependencies:
- nx: 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
- tslib: 2.6.2
+ nx: 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
+ tslib: 2.6.3
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- '@nrwl/vite@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))(vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0))':
+ '@nrwl/vite@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))(vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1))':
dependencies:
- '@nx/vite': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))(vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0))
+ '@nx/vite': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))(vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12129,9 +12858,9 @@ snapshots:
- vite
- vitest
- '@nrwl/web@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nrwl/web@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nx/web': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/web': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12144,23 +12873,23 @@ snapshots:
- typescript
- verdaccio
- '@nrwl/workspace@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))':
+ '@nrwl/workspace@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))':
dependencies:
- '@nx/workspace': 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ '@nx/workspace': 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- '@nx/cypress@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nx/cypress@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nrwl/cypress': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/eslint': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nrwl/cypress': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/eslint': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.5)
detect-port: 1.5.1
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12175,24 +12904,24 @@ snapshots:
- typescript
- verdaccio
- '@nx/devkit@19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nx/devkit@19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nrwl/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nrwl/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
ejs: 3.1.9
enquirer: 2.3.6
ignore: 5.3.1
minimatch: 9.0.3
- nx: 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ nx: 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
semver: 7.6.2
tmp: 0.2.1
- tslib: 2.6.2
+ tslib: 2.6.3
yargs-parser: 21.1.1
- '@nx/eslint-plugin@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nx/eslint-plugin@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nrwl/eslint-plugin-nx': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nrwl/eslint-plugin-nx': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
'@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
'@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5)
@@ -12200,7 +12929,7 @@ snapshots:
confusing-browser-globals: 1.0.11
jsonc-eslint-parser: 2.4.0
semver: 7.6.2
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
eslint-config-prettier: 9.1.0(eslint@8.57.0)
transitivePeerDependencies:
@@ -12216,14 +12945,14 @@ snapshots:
- typescript
- verdaccio
- '@nx/eslint@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nx/eslint@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/linter': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/linter': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
eslint: 8.57.0
semver: 7.6.2
- tslib: 2.6.2
+ tslib: 2.6.3
typescript: 5.4.5
optionalDependencies:
'@zkochan/js-yaml': 0.0.7
@@ -12238,21 +12967,21 @@ snapshots:
- supports-color
- verdaccio
- '@nx/js@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nx/js@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-proposal-decorators': 7.23.9(@babel/core@7.24.6)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.6)
- '@babel/preset-env': 7.24.5(@babel/core@7.24.6)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.6)
- '@babel/runtime': 7.24.5
- '@nrwl/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/workspace': 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
- babel-plugin-const-enum: 1.2.0(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-decorators': 7.23.9(@babel/core@7.24.7)
+ '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.7)
+ '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.7)
+ '@babel/preset-env': 7.24.6(@babel/core@7.24.7)
+ '@babel/preset-typescript': 7.24.6(@babel/core@7.24.7)
+ '@babel/runtime': 7.24.6
+ '@nrwl/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/workspace': 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.24.7)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.6)(@babel/traverse@7.24.6)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7)
chalk: 4.1.2
columnify: 1.6.0
detect-port: 1.5.1
@@ -12266,9 +12995,9 @@ snapshots:
ora: 5.3.0
semver: 7.6.2
source-map-support: 0.5.19
- ts-node: 10.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(typescript@5.4.5)
+ ts-node: 10.9.1(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(typescript@5.4.5)
tsconfig-paths: 4.2.0
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12280,9 +13009,9 @@ snapshots:
- supports-color
- typescript
- '@nx/linter@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nx/linter@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nx/eslint': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nx/eslint': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12296,49 +13025,49 @@ snapshots:
- supports-color
- verdaccio
- '@nx/nx-darwin-arm64@19.1.1':
+ '@nx/nx-darwin-arm64@19.3.0':
optional: true
- '@nx/nx-darwin-x64@19.1.1':
+ '@nx/nx-darwin-x64@19.3.0':
optional: true
- '@nx/nx-freebsd-x64@19.1.1':
+ '@nx/nx-freebsd-x64@19.3.0':
optional: true
- '@nx/nx-linux-arm-gnueabihf@19.1.1':
+ '@nx/nx-linux-arm-gnueabihf@19.3.0':
optional: true
- '@nx/nx-linux-arm64-gnu@19.1.1':
+ '@nx/nx-linux-arm64-gnu@19.3.0':
optional: true
- '@nx/nx-linux-arm64-musl@19.1.1':
+ '@nx/nx-linux-arm64-musl@19.3.0':
optional: true
- '@nx/nx-linux-x64-gnu@19.1.1':
+ '@nx/nx-linux-x64-gnu@19.3.0':
optional: true
- '@nx/nx-linux-x64-musl@19.1.1':
+ '@nx/nx-linux-x64-musl@19.3.0':
optional: true
- '@nx/nx-win32-arm64-msvc@19.1.1':
+ '@nx/nx-win32-arm64-msvc@19.3.0':
optional: true
- '@nx/nx-win32-x64-msvc@19.1.1':
+ '@nx/nx-win32-x64-msvc@19.3.0':
optional: true
- '@nx/react@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))':
+ '@nx/react@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))':
dependencies:
- '@nrwl/react': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/eslint': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/web': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nrwl/react': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/eslint': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/web': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.5)
'@svgr/webpack': 8.1.0(typescript@5.4.5)
chalk: 4.1.2
- file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ file-loader: 6.2.0(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))
minimatch: 9.0.3
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12354,17 +13083,17 @@ snapshots:
- verdaccio
- webpack
- '@nx/vite@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))(vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0))':
+ '@nx/vite@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))(vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1))':
dependencies:
- '@nrwl/vite': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))(vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0))
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nrwl/vite': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))(vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1))
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.5)
'@swc/helpers': 0.5.11
enquirer: 2.3.6
tsconfig-paths: 4.2.0
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
- vitest: 1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
+ vitest: 1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12377,15 +13106,15 @@ snapshots:
- typescript
- verdaccio
- '@nx/web@19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)':
+ '@nx/web@19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)':
dependencies:
- '@nrwl/web': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
- '@nx/js': 19.1.1(@babel/traverse@7.24.6)(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nrwl/web': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
+ '@nx/js': 19.3.0(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))(typescript@5.4.5)
chalk: 4.1.2
detect-port: 1.5.1
http-server: 14.1.1
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -12398,14 +13127,14 @@ snapshots:
- typescript
- verdaccio
- '@nx/workspace@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))':
+ '@nx/workspace@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))':
dependencies:
- '@nrwl/workspace': 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
- '@nx/devkit': 19.1.1(nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ '@nrwl/workspace': 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
+ '@nx/devkit': 19.3.0(nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)))
chalk: 4.1.2
enquirer: 2.3.6
- nx: 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
- tslib: 2.6.2
+ nx: 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
+ tslib: 2.6.3
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@swc-node/register'
@@ -12477,18 +13206,18 @@ snapshots:
dependencies:
asn1js: 3.0.5
pvtsutils: 1.3.5
- tslib: 2.6.2
+ tslib: 2.6.3
'@peculiar/json-schema@1.1.12':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
'@peculiar/webcrypto@1.4.5':
dependencies:
'@peculiar/asn1-schema': 2.3.8
'@peculiar/json-schema': 1.1.12
pvtsutils: 1.3.5
- tslib: 2.6.2
+ tslib: 2.6.3
webcrypto-core: 1.7.8
'@phenomnomnominal/tsquery@5.0.1(typescript@5.4.5)':
@@ -12500,9 +13229,9 @@ snapshots:
'@popperjs/core@2.11.8': {}
- '@rainbow-me/rainbowkit@2.1.2(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))(wagmi@2.9.8(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5)))':
+ '@rainbow-me/rainbowkit@2.1.2(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))(wagmi@2.10.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5)))':
dependencies:
- '@tanstack/react-query': 5.40.0(react@18.3.1)
+ '@tanstack/react-query': 5.45.1(react@18.3.1)
'@vanilla-extract/css': 1.14.0
'@vanilla-extract/dynamic': 2.1.0
'@vanilla-extract/sprinkles': 1.6.1(@vanilla-extract/css@1.14.0)
@@ -12512,8 +13241,8 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1)
ua-parser-js: 1.0.38
- viem: 2.13.3(bufferutil@4.0.8)(typescript@5.4.5)
- wagmi: 2.9.8(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
+ viem: 2.15.1(bufferutil@4.0.8)(typescript@5.4.5)
+ wagmi: 2.10.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
transitivePeerDependencies:
- '@types/react'
@@ -12525,24 +13254,24 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
optional: true
- '@react-native-community/cli-clean@13.6.6':
+ '@react-native-community/cli-clean@13.6.8':
dependencies:
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-config@13.6.6':
+ '@react-native-community/cli-config@13.6.8':
dependencies:
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
cosmiconfig: 5.2.1
deepmerge: 4.3.1
@@ -12551,19 +13280,19 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-debugger-ui@13.6.6':
+ '@react-native-community/cli-debugger-ui@13.6.8':
dependencies:
serve-static: 1.15.0
transitivePeerDependencies:
- supports-color
- '@react-native-community/cli-doctor@13.6.6':
+ '@react-native-community/cli-doctor@13.6.8':
dependencies:
- '@react-native-community/cli-config': 13.6.6
- '@react-native-community/cli-platform-android': 13.6.6
- '@react-native-community/cli-platform-apple': 13.6.6
- '@react-native-community/cli-platform-ios': 13.6.6
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-config': 13.6.8
+ '@react-native-community/cli-platform-android': 13.6.8
+ '@react-native-community/cli-platform-apple': 13.6.8
+ '@react-native-community/cli-platform-ios': 13.6.8
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
command-exists: 1.2.9
deepmerge: 4.3.1
@@ -12575,22 +13304,22 @@ snapshots:
semver: 7.6.2
strip-ansi: 5.2.0
wcwidth: 1.0.1
- yaml: 2.4.3
+ yaml: 2.4.5
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-hermes@13.6.6':
+ '@react-native-community/cli-hermes@13.6.8':
dependencies:
- '@react-native-community/cli-platform-android': 13.6.6
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-platform-android': 13.6.8
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
hermes-profile-transformer: 0.0.6
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-platform-android@13.6.6':
+ '@react-native-community/cli-platform-android@13.6.8':
dependencies:
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
@@ -12599,9 +13328,9 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-platform-apple@13.6.6':
+ '@react-native-community/cli-platform-apple@13.6.8':
dependencies:
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-tools': 13.6.8
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
@@ -12610,30 +13339,30 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-platform-ios@13.6.6':
+ '@react-native-community/cli-platform-ios@13.6.8':
dependencies:
- '@react-native-community/cli-platform-apple': 13.6.6
+ '@react-native-community/cli-platform-apple': 13.6.8
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-server-api@13.6.6(bufferutil@4.0.8)':
+ '@react-native-community/cli-server-api@13.6.8(bufferutil@4.0.8)':
dependencies:
- '@react-native-community/cli-debugger-ui': 13.6.6
- '@react-native-community/cli-tools': 13.6.6
+ '@react-native-community/cli-debugger-ui': 13.6.8
+ '@react-native-community/cli-tools': 13.6.8
compression: 1.7.4
connect: 3.7.0
errorhandler: 1.5.1
nocache: 3.0.4
pretty-format: 26.6.2
serve-static: 1.15.0
- ws: 6.2.2(bufferutil@4.0.8)
+ ws: 6.2.3(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- '@react-native-community/cli-tools@13.6.6':
+ '@react-native-community/cli-tools@13.6.8':
dependencies:
appdirsjs: 1.2.7
chalk: 4.1.2
@@ -12649,20 +13378,20 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-types@13.6.6':
+ '@react-native-community/cli-types@13.6.8':
dependencies:
joi: 17.13.1
- '@react-native-community/cli@13.6.6(bufferutil@4.0.8)':
+ '@react-native-community/cli@13.6.8(bufferutil@4.0.8)':
dependencies:
- '@react-native-community/cli-clean': 13.6.6
- '@react-native-community/cli-config': 13.6.6
- '@react-native-community/cli-debugger-ui': 13.6.6
- '@react-native-community/cli-doctor': 13.6.6
- '@react-native-community/cli-hermes': 13.6.6
- '@react-native-community/cli-server-api': 13.6.6(bufferutil@4.0.8)
- '@react-native-community/cli-tools': 13.6.6
- '@react-native-community/cli-types': 13.6.6
+ '@react-native-community/cli-clean': 13.6.8
+ '@react-native-community/cli-config': 13.6.8
+ '@react-native-community/cli-debugger-ui': 13.6.8
+ '@react-native-community/cli-doctor': 13.6.8
+ '@react-native-community/cli-hermes': 13.6.8
+ '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)
+ '@react-native-community/cli-tools': 13.6.8
+ '@react-native-community/cli-types': 13.6.8
chalk: 4.1.2
commander: 9.5.0
deepmerge: 4.3.1
@@ -12678,83 +13407,83 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/assets-registry@0.74.83': {}
+ '@react-native/assets-registry@0.74.84': {}
- '@react-native/babel-plugin-codegen@0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))':
+ '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
dependencies:
- '@react-native/codegen': 0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))
+ '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/template': 7.24.6
- '@react-native/babel-plugin-codegen': 0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6)
+ '@react-native/babel-preset@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7)
+ '@babel/template': 7.24.7
+ '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.7)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/codegen@0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))':
+ '@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
dependencies:
- '@babel/parser': 7.24.6
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
+ '@babel/parser': 7.24.7
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
glob: 7.2.3
hermes-parser: 0.19.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6))
+ jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7))
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- '@react-native/community-cli-plugin@0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(bufferutil@4.0.8)':
+ '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)':
dependencies:
- '@react-native-community/cli-server-api': 13.6.6(bufferutil@4.0.8)
- '@react-native-community/cli-tools': 13.6.6
- '@react-native/dev-middleware': 0.74.83(bufferutil@4.0.8)
- '@react-native/metro-babel-transformer': 0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))
+ '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)
+ '@react-native-community/cli-tools': 13.6.8
+ '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)
+ '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.9(bufferutil@4.0.8)
@@ -12771,12 +13500,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/debugger-frontend@0.74.83': {}
+ '@react-native/debugger-frontend@0.74.84': {}
- '@react-native/dev-middleware@0.74.83(bufferutil@4.0.8)':
+ '@react-native/dev-middleware@0.74.84(bufferutil@4.0.8)':
dependencies:
'@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.74.83
+ '@react-native/debugger-frontend': 0.74.84
'@rnx-kit/chromium-edge-launcher': 1.0.0
chrome-launcher: 0.15.2
connect: 3.7.0
@@ -12787,35 +13516,35 @@ snapshots:
selfsigned: 2.4.1
serve-static: 1.15.0
temp-dir: 2.0.0
- ws: 6.2.2(bufferutil@4.0.8)
+ ws: 6.2.3(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- '@react-native/gradle-plugin@0.74.83': {}
+ '@react-native/gradle-plugin@0.74.84': {}
- '@react-native/js-polyfills@0.74.83': {}
+ '@react-native/js-polyfills@0.74.84': {}
- '@react-native/metro-babel-transformer@0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))':
+ '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))':
dependencies:
- '@babel/core': 7.24.6
- '@react-native/babel-preset': 0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))
+ '@babel/core': 7.24.7
+ '@react-native/babel-preset': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))
hermes-parser: 0.19.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- '@react-native/normalize-colors@0.74.83': {}
+ '@react-native/normalize-colors@0.74.84': {}
- '@react-native/virtualized-lists@0.74.83(@types/react@18.3.3)(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
@@ -12825,7 +13554,7 @@ snapshots:
'@rnx-kit/chromium-edge-launcher@1.0.0':
dependencies:
- '@types/node': 18.19.33
+ '@types/node': 18.19.36
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -12890,7 +13619,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
- '@rushstack/node-core-library@4.0.2(@types/node@20.14.0)':
+ '@rushstack/node-core-library@4.0.2(@types/node@20.14.5)':
dependencies:
fs-extra: 7.0.1
import-lazy: 4.0.0
@@ -12899,23 +13628,23 @@ snapshots:
semver: 7.5.4
z-schema: 5.0.5
optionalDependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@rushstack/rig-package@0.5.2':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.10.0(@types/node@20.14.0)':
+ '@rushstack/terminal@0.10.0(@types/node@20.14.5)':
dependencies:
- '@rushstack/node-core-library': 4.0.2(@types/node@20.14.0)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.5)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
- '@rushstack/ts-command-line@4.19.1(@types/node@20.14.0)':
+ '@rushstack/ts-command-line@4.19.1(@types/node@20.14.5)':
dependencies:
- '@rushstack/terminal': 0.10.0(@types/node@20.14.0)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.5)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -12934,7 +13663,7 @@ snapshots:
'@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.4.5)':
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.21.1
+ '@safe-global/safe-gateway-typescript-sdk': 3.21.3
viem: 1.21.4(bufferutil@4.0.8)(typescript@5.4.5)
transitivePeerDependencies:
- bufferutil
@@ -12942,87 +13671,87 @@ snapshots:
- utf-8-validate
- zod
- '@safe-global/safe-gateway-typescript-sdk@3.21.1': {}
+ '@safe-global/safe-gateway-typescript-sdk@3.21.3': {}
- '@scure/base@1.1.6': {}
+ '@scure/base@1.1.7': {}
'@scure/bip32@1.3.2':
dependencies:
'@noble/curves': 1.2.0
'@noble/hashes': 1.3.2
- '@scure/base': 1.1.6
+ '@scure/base': 1.1.7
- '@scure/bip32@1.3.3':
+ '@scure/bip32@1.4.0':
dependencies:
- '@noble/curves': 1.3.0
- '@noble/hashes': 1.3.3
- '@scure/base': 1.1.6
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.7
'@scure/bip39@1.2.1':
dependencies:
'@noble/hashes': 1.3.2
- '@scure/base': 1.1.6
+ '@scure/base': 1.1.7
- '@scure/bip39@1.2.2':
+ '@scure/bip39@1.3.0':
dependencies:
- '@noble/hashes': 1.3.3
- '@scure/base': 1.1.6
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.7
- '@sentry-internal/browser-utils@8.7.0':
+ '@sentry-internal/browser-utils@8.9.2':
dependencies:
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry-internal/feedback@8.7.0':
+ '@sentry-internal/feedback@8.9.2':
dependencies:
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry-internal/replay-canvas@8.7.0':
+ '@sentry-internal/replay-canvas@8.9.2':
dependencies:
- '@sentry-internal/replay': 8.7.0
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry-internal/replay': 8.9.2
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry-internal/replay@8.7.0':
+ '@sentry-internal/replay@8.9.2':
dependencies:
- '@sentry-internal/browser-utils': 8.7.0
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry-internal/browser-utils': 8.9.2
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry/browser@8.7.0':
+ '@sentry/browser@8.9.2':
dependencies:
- '@sentry-internal/browser-utils': 8.7.0
- '@sentry-internal/feedback': 8.7.0
- '@sentry-internal/replay': 8.7.0
- '@sentry-internal/replay-canvas': 8.7.0
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry-internal/browser-utils': 8.9.2
+ '@sentry-internal/feedback': 8.9.2
+ '@sentry-internal/replay': 8.9.2
+ '@sentry-internal/replay-canvas': 8.9.2
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry/core@8.7.0':
+ '@sentry/core@8.9.2':
dependencies:
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
- '@sentry/react@8.7.0(react@18.3.1)':
+ '@sentry/react@8.9.2(react@18.3.1)':
dependencies:
- '@sentry/browser': 8.7.0
- '@sentry/core': 8.7.0
- '@sentry/types': 8.7.0
- '@sentry/utils': 8.7.0
+ '@sentry/browser': 8.9.2
+ '@sentry/core': 8.9.2
+ '@sentry/types': 8.9.2
+ '@sentry/utils': 8.9.2
hoist-non-react-statics: 3.3.2
react: 18.3.1
- '@sentry/types@8.7.0': {}
+ '@sentry/types@8.9.2': {}
- '@sentry/utils@8.7.0':
+ '@sentry/utils@8.9.2':
dependencies:
- '@sentry/types': 8.7.0
+ '@sentry/types': 8.9.2
'@sideway/address@4.1.5':
dependencies:
@@ -13126,54 +13855,54 @@ snapshots:
'@stablelib/random': 1.0.2
'@stablelib/wipe': 1.0.1
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.6)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- '@svgr/babel-preset@8.1.0(@babel/core@7.24.6)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.6
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.6)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.7)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7)
'@svgr/core@8.1.0(typescript@5.4.5)':
dependencies:
- '@babel/core': 7.24.6
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.4.5)
snake-case: 3.0.4
@@ -13188,8 +13917,8 @@ snapshots:
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))':
dependencies:
- '@babel/core': 7.24.6
- '@svgr/babel-preset': 8.1.0(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7)
'@svgr/core': 8.1.0(typescript@5.4.5)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -13207,11 +13936,11 @@ snapshots:
'@svgr/webpack@8.1.0(typescript@5.4.5)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.24.6)
- '@babel/preset-env': 7.24.5(@babel/core@7.24.6)
- '@babel/preset-react': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.24.7)
+ '@babel/preset-env': 7.24.6(@babel/core@7.24.7)
+ '@babel/preset-react': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-typescript': 7.24.6(@babel/core@7.24.7)
'@svgr/core': 8.1.0(typescript@5.4.5)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5)
@@ -13219,20 +13948,20 @@ snapshots:
- supports-color
- typescript
- '@swc-node/core@1.13.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)':
+ '@swc-node/core@1.13.1(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)':
dependencies:
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
- '@swc/types': 0.1.7
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
+ '@swc/types': 0.1.8
- '@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5)':
+ '@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5)':
dependencies:
- '@swc-node/core': 1.13.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)
+ '@swc-node/core': 1.13.1(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)
'@swc-node/sourcemap-support': 0.5.0
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
colorette: 2.0.20
- debug: 4.3.4
+ debug: 4.3.5
pirates: 4.0.6
- tslib: 2.6.2
+ tslib: 2.6.3
typescript: 5.4.5
transitivePeerDependencies:
- '@swc/types'
@@ -13241,12 +13970,12 @@ snapshots:
'@swc-node/sourcemap-support@0.5.0':
dependencies:
source-map-support: 0.5.21
- tslib: 2.6.2
+ tslib: 2.6.3
- '@swc/cli@0.3.12(@swc/core@1.5.24(@swc/helpers@0.5.11))(chokidar@3.6.0)':
+ '@swc/cli@0.3.12(@swc/core@1.6.1(@swc/helpers@0.5.11))(chokidar@3.6.0)':
dependencies:
'@mole-inc/bin-wrapper': 8.0.1
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
'@swc/counter': 0.1.3
commander: 8.3.0
fast-glob: 3.3.2
@@ -13258,60 +13987,60 @@ snapshots:
optionalDependencies:
chokidar: 3.6.0
- '@swc/core-darwin-arm64@1.5.24':
+ '@swc/core-darwin-arm64@1.6.1':
optional: true
- '@swc/core-darwin-x64@1.5.24':
+ '@swc/core-darwin-x64@1.6.1':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.5.24':
+ '@swc/core-linux-arm-gnueabihf@1.6.1':
optional: true
- '@swc/core-linux-arm64-gnu@1.5.24':
+ '@swc/core-linux-arm64-gnu@1.6.1':
optional: true
- '@swc/core-linux-arm64-musl@1.5.24':
+ '@swc/core-linux-arm64-musl@1.6.1':
optional: true
- '@swc/core-linux-x64-gnu@1.5.24':
+ '@swc/core-linux-x64-gnu@1.6.1':
optional: true
- '@swc/core-linux-x64-musl@1.5.24':
+ '@swc/core-linux-x64-musl@1.6.1':
optional: true
- '@swc/core-win32-arm64-msvc@1.5.24':
+ '@swc/core-win32-arm64-msvc@1.6.1':
optional: true
- '@swc/core-win32-ia32-msvc@1.5.24':
+ '@swc/core-win32-ia32-msvc@1.6.1':
optional: true
- '@swc/core-win32-x64-msvc@1.5.24':
+ '@swc/core-win32-x64-msvc@1.6.1':
optional: true
- '@swc/core@1.5.24(@swc/helpers@0.5.11)':
+ '@swc/core@1.6.1(@swc/helpers@0.5.11)':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.7
+ '@swc/types': 0.1.8
optionalDependencies:
- '@swc/core-darwin-arm64': 1.5.24
- '@swc/core-darwin-x64': 1.5.24
- '@swc/core-linux-arm-gnueabihf': 1.5.24
- '@swc/core-linux-arm64-gnu': 1.5.24
- '@swc/core-linux-arm64-musl': 1.5.24
- '@swc/core-linux-x64-gnu': 1.5.24
- '@swc/core-linux-x64-musl': 1.5.24
- '@swc/core-win32-arm64-msvc': 1.5.24
- '@swc/core-win32-ia32-msvc': 1.5.24
- '@swc/core-win32-x64-msvc': 1.5.24
+ '@swc/core-darwin-arm64': 1.6.1
+ '@swc/core-darwin-x64': 1.6.1
+ '@swc/core-linux-arm-gnueabihf': 1.6.1
+ '@swc/core-linux-arm64-gnu': 1.6.1
+ '@swc/core-linux-arm64-musl': 1.6.1
+ '@swc/core-linux-x64-gnu': 1.6.1
+ '@swc/core-linux-x64-musl': 1.6.1
+ '@swc/core-win32-arm64-msvc': 1.6.1
+ '@swc/core-win32-ia32-msvc': 1.6.1
+ '@swc/core-win32-x64-msvc': 1.6.1
'@swc/helpers': 0.5.11
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.11':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
- '@swc/types@0.1.7':
+ '@swc/types@0.1.8':
dependencies:
'@swc/counter': 0.1.3
@@ -13319,11 +14048,11 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tanstack/query-core@5.40.0': {}
+ '@tanstack/query-core@5.45.0': {}
- '@tanstack/react-query@5.40.0(react@18.3.1)':
+ '@tanstack/react-query@5.45.1(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 5.40.0
+ '@tanstack/query-core': 5.45.0
react: 18.3.1
'@tanstack/react-table@8.17.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
@@ -13336,8 +14065,8 @@ snapshots:
'@testing-library/dom@10.1.0':
dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/runtime': 7.24.6
+ '@babel/code-frame': 7.24.7
+ '@babel/runtime': 7.24.7
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -13345,15 +14074,15 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@16.0.0(@testing-library/dom@10.1.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
'@testing-library/dom': 10.1.0
- '@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
+ '@types/react-dom': 18.3.0
'@tokenizer/token@0.3.0': {}
@@ -13400,7 +14129,7 @@ snapshots:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/responselike': 1.0.3
'@types/debug@4.1.12':
@@ -13431,7 +14160,7 @@ snapshots:
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/hoist-non-react-statics@3.3.5':
dependencies:
@@ -13462,11 +14191,11 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/ms@0.7.34': {}
@@ -13476,7 +14205,7 @@ snapshots:
'@types/node@17.0.45': {}
- '@types/node@18.19.33':
+ '@types/node@18.19.36':
dependencies:
undici-types: 5.26.5
@@ -13484,6 +14213,10 @@ snapshots:
dependencies:
undici-types: 5.26.5
+ '@types/node@20.14.5':
+ dependencies:
+ undici-types: 5.26.5
+
'@types/parse-json@4.0.2': {}
'@types/picomatch@2.3.3': {}
@@ -13509,11 +14242,11 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/secp256k1@4.0.6':
dependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/semver@7.5.8': {}
@@ -13523,7 +14256,7 @@ snapshots:
'@types/ws@8.5.10':
dependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
'@types/yargs-parser@21.0.3': {}
@@ -13688,14 +14421,14 @@ snapshots:
dependencies:
'@vanilla-extract/css': 1.14.0
- '@vitejs/plugin-react@4.3.0(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0))':
+ '@vitejs/plugin-react@4.3.1(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1))':
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
@@ -13749,6 +14482,15 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.0
+ '@vue/compiler-core@3.4.29':
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@vue/shared': 3.4.29
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.0
+ optional: true
+
'@vue/compiler-dom@3.4.27':
dependencies:
'@vue/compiler-core': 3.4.27
@@ -13770,17 +14512,20 @@ snapshots:
'@vue/shared@3.4.27': {}
- '@wagmi/connectors@5.0.7(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))':
+ '@vue/shared@3.4.29':
+ optional: true
+
+ '@wagmi/connectors@5.0.14(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(@wagmi/core@2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))':
dependencies:
- '@coinbase/wallet-sdk': 4.0.2
- '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)
+ '@coinbase/wallet-sdk': 4.0.3
+ '@metamask/sdk': 0.20.5(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)
'@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)
'@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)
- '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
- '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ '@wagmi/core': 2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
+ '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
- viem: 2.13.3(bufferutil@4.0.8)(typescript@5.4.5)
+ viem: 2.15.1(bufferutil@4.0.8)(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
@@ -13810,14 +14555,14 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))':
+ '@wagmi/core@2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))':
dependencies:
eventemitter3: 5.0.1
mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.4.5)
- viem: 2.13.3(bufferutil@4.0.8)(typescript@5.4.5)
+ viem: 2.15.1(bufferutil@4.0.8)(typescript@5.4.5)
zustand: 4.4.1(@types/react@18.3.3)(immer@10.1.1)(react@18.3.1)
optionalDependencies:
- '@tanstack/query-core': 5.40.0
+ '@tanstack/query-core': 5.45.0
typescript: 5.4.5
transitivePeerDependencies:
- '@types/react'
@@ -13827,21 +14572,21 @@ snapshots:
- utf-8-validate
- zod
- '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
+ '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.10
'@walletconnect/relay-auth': 1.0.4
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
events: 3.3.0
isomorphic-unfetch: 3.1.0
lodash.isequal: 4.5.0
@@ -13869,17 +14614,17 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)':
+ '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)':
dependencies:
'@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.3.3)(react@18.3.1)
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
- '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -13944,18 +14689,18 @@ snapshots:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/safe-json': 1.0.2
events: 3.3.0
- ws: 7.5.9(bufferutil@4.0.8)
+ ws: 7.5.10(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
unstorage: 1.10.2(idb-keyval@6.2.1)
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -14018,16 +14763,16 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
+ '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
dependencies:
- '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
+ '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -14052,12 +14797,12 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
+ '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -14076,16 +14821,16 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
+ '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)':
dependencies:
'@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/logger': 2.1.2
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(bufferutil@4.0.8)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -14106,7 +14851,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
+ '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -14116,7 +14861,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -14246,7 +14991,7 @@ snapshots:
busboy: 1.6.0
fast-querystring: 1.1.2
fast-url-parser: 1.1.3
- tslib: 2.6.2
+ tslib: 2.6.3
'@whatwg-node/node-fetch@0.5.5':
dependencies:
@@ -14254,7 +14999,7 @@ snapshots:
'@whatwg-node/events': 0.1.1
busboy: 1.6.0
fast-querystring: 1.1.2
- tslib: 2.6.2
+ tslib: 2.6.3
'@xobotyi/scrollbar-width@1.9.5': {}
@@ -14267,7 +15012,7 @@ snapshots:
'@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
js-yaml: 3.14.1
- tslib: 2.6.2
+ tslib: 2.6.3
'@zkochan/js-yaml@0.0.7':
dependencies:
@@ -14290,9 +15035,9 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-assertions@1.9.0(acorn@8.11.3):
+ acorn-import-attributes@1.9.5(acorn@8.12.0):
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.0
acorn-jsx@5.3.2(acorn@8.11.3):
dependencies:
@@ -14300,8 +15045,14 @@ snapshots:
acorn-walk@8.3.2: {}
+ acorn-walk@8.3.3:
+ dependencies:
+ acorn: 8.12.0
+
acorn@8.11.3: {}
+ acorn@8.12.0: {}
+
address@1.2.2: {}
agent-base@7.1.0:
@@ -14485,7 +15236,7 @@ snapshots:
dependencies:
pvtsutils: 1.3.5
pvutils: 1.1.3
- tslib: 2.6.2
+ tslib: 2.6.3
assertion-error@1.1.0: {}
@@ -14493,7 +15244,7 @@ snapshots:
ast-types@0.15.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
astral-regex@1.0.0: {}
@@ -14503,7 +15254,7 @@ snapshots:
async-mutex@0.2.6:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
async@2.6.4:
dependencies:
@@ -14541,24 +15292,24 @@ snapshots:
dependencies:
dequal: 2.0.3
- babel-core@7.0.0-bridge.0(@babel/core@7.24.6):
+ babel-core@7.0.0-bridge.0(@babel/core@7.24.7):
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
- babel-plugin-const-enum@1.2.0(@babel/core@7.24.6):
+ babel-plugin-const-enum@1.2.0(@babel/core@7.24.7):
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.7)
'@babel/traverse': 7.24.6
transitivePeerDependencies:
- supports-color
babel-plugin-formatjs@10.5.16:
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.7)
'@babel/traverse': 7.24.6
'@babel/types': 7.24.6
'@formatjs/icu-messageformat-parser': 2.7.8
@@ -14566,14 +15317,14 @@ snapshots:
'@types/babel__core': 7.20.5
'@types/babel__helper-plugin-utils': 7.10.3
'@types/babel__traverse': 7.20.6
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- supports-color
- ts-jest
babel-plugin-macros@2.8.0:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.24.6
cosmiconfig: 6.0.0
resolve: 1.22.8
@@ -14583,75 +15334,77 @@ snapshots:
cosmiconfig: 7.1.0
resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7):
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6):
+ babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7):
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
- core-js-compat: 3.37.0
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7):
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
+ '@babel/core': 7.24.7
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {}
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6):
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.7):
dependencies:
- '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.6)(@babel/traverse@7.24.6):
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7):
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.7
optionalDependencies:
- '@babel/traverse': 7.24.6
-
- babel-preset-fbjs@3.4.0(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.6)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.6)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.6)
+ '@babel/traverse': 7.24.7
+
+ babel-preset-fbjs@3.4.0(@babel/core@7.24.7):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.7)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.7)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.7)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
+ transitivePeerDependencies:
+ - supports-color
balanced-match@1.0.2: {}
@@ -14721,6 +15474,13 @@ snapshots:
node-releases: 2.0.14
update-browserslist-db: 1.0.16(browserslist@4.23.0)
+ browserslist@4.23.1:
+ dependencies:
+ caniuse-lite: 1.0.30001636
+ electron-to-chromium: 1.4.805
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.16(browserslist@4.23.1)
+
bser@2.1.1:
dependencies:
node-int64: 0.4.0
@@ -14795,7 +15555,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.2
+ tslib: 2.6.3
camelcase@5.3.1: {}
@@ -14803,17 +15563,19 @@ snapshots:
caniuse-lite@1.0.30001627: {}
+ caniuse-lite@1.0.30001636: {}
+
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
upper-case-first: 2.0.2
chai@4.4.1:
dependencies:
assertion-error: 1.1.0
check-error: 1.0.3
- deep-eql: 4.1.3
+ deep-eql: 4.1.4
get-func-name: 2.0.2
loupe: 2.3.7
pathval: 1.1.1
@@ -14871,7 +15633,7 @@ snapshots:
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
chardet@0.7.0: {}
@@ -15060,7 +15822,7 @@ snapshots:
constant-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
upper-case: 2.0.2
content-disposition@0.5.4:
@@ -15077,10 +15839,6 @@ snapshots:
dependencies:
toggle-selection: 1.0.6
- core-js-compat@3.37.0:
- dependencies:
- browserslist: 4.23.0
-
core-js-compat@3.37.1:
dependencies:
browserslist: 4.23.0
@@ -15139,7 +15897,7 @@ snapshots:
cross-inspect@1.0.0:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
cross-spawn@5.1.0:
dependencies:
@@ -15225,7 +15983,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
date-fns@3.6.0: {}
@@ -15261,7 +16019,7 @@ snapshots:
dependencies:
mimic-response: 3.1.0
- deep-eql@4.1.3:
+ deep-eql@4.1.4:
dependencies:
type-detect: 4.0.8
@@ -15325,7 +16083,7 @@ snapshots:
detect-port@1.5.1:
dependencies:
address: 1.2.2
- debug: 4.3.4
+ debug: 4.3.5
transitivePeerDependencies:
- supports-color
@@ -15341,7 +16099,7 @@ snapshots:
dlv@1.1.3: {}
- dnum@2.12.0:
+ dnum@2.13.1:
dependencies:
from-exponential: 1.1.1
@@ -15381,7 +16139,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
dotenv-expand@10.0.0: {}
@@ -15400,7 +16158,7 @@ snapshots:
readable-stream: 3.6.2
stream-shift: 1.0.3
- eciesjs@0.3.18:
+ eciesjs@0.3.19:
dependencies:
'@types/secp256k1': 4.0.6
futoin-hkdf: 1.5.3
@@ -15414,6 +16172,8 @@ snapshots:
electron-to-chromium@1.4.788: {}
+ electron-to-chromium@1.4.805: {}
+
elliptic@6.5.5:
dependencies:
bn.js: 4.12.0
@@ -15440,12 +16200,12 @@ snapshots:
dependencies:
once: 1.4.0
- engine.io-client@6.5.3(bufferutil@4.0.8):
+ engine.io-client@6.5.4(bufferutil@4.0.8):
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.5
engine.io-parser: 5.2.2
- ws: 8.11.0(bufferutil@4.0.8)
+ ws: 8.17.1(bufferutil@4.0.8)
xmlhttprequest-ssl: 2.0.0
transitivePeerDependencies:
- bufferutil
@@ -15454,7 +16214,7 @@ snapshots:
engine.io-parser@5.2.2: {}
- enhanced-resolve@5.16.1:
+ enhanced-resolve@5.17.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -15717,6 +16477,32 @@ snapshots:
'@esbuild/win32-ia32': 0.20.2
'@esbuild/win32-x64': 0.20.2
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
escalade@3.1.2: {}
escape-html@1.0.3: {}
@@ -15821,10 +16607,10 @@ snapshots:
object.entries: 1.1.7
object.fromentries: 2.0.7
- eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.0):
+ eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.2):
dependencies:
eslint: 8.57.0
- prettier: 3.3.0
+ prettier: 3.3.2
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
optionalDependencies:
@@ -15982,12 +16768,12 @@ snapshots:
dependencies:
fast-safe-stringify: 2.1.1
- ethereum-cryptography@2.1.3:
+ ethereum-cryptography@2.2.0:
dependencies:
- '@noble/curves': 1.3.0
- '@noble/hashes': 1.3.3
- '@scure/bip32': 1.3.3
- '@scure/bip39': 1.2.2
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
+ '@scure/bip32': 1.4.0
+ '@scure/bip39': 1.3.0
event-target-shim@5.0.1: {}
@@ -16028,7 +16814,7 @@ snapshots:
human-signals: 5.0.0
is-stream: 3.0.0
merge-stream: 2.0.0
- npm-run-path: 5.2.0
+ npm-run-path: 5.3.0
onetime: 6.0.0
signal-exit: 4.1.0
strip-final-newline: 3.0.0
@@ -16137,11 +16923,11 @@ snapshots:
dependencies:
flat-cache: 3.2.0
- file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11))):
+ file-loader@6.2.0(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11))):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ webpack: 5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11))
file-type@17.1.6:
dependencies:
@@ -16221,7 +17007,7 @@ snapshots:
flow-enums-runtime@0.0.6: {}
- flow-parser@0.237.1: {}
+ flow-parser@0.238.0: {}
follow-redirects@1.15.6: {}
@@ -16239,6 +17025,10 @@ snapshots:
from-exponential@1.1.1: {}
+ front-matter@4.0.2:
+ dependencies:
+ js-yaml: 3.14.1
+
fs-constants@1.0.0: {}
fs-extra@11.2.0:
@@ -16388,20 +17178,20 @@ snapshots:
graphemer@1.4.0: {}
- graphql-config@5.0.3(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)(typescript@5.4.5):
+ graphql-config@5.0.3(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)(typescript@5.4.5):
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/load': 8.0.1(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.0)(bufferutil@4.0.8)(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.13(graphql@16.8.1)
+ '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.2)
+ '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.2)
+ '@graphql-tools/load': 8.0.1(graphql@16.8.2)
+ '@graphql-tools/merge': 9.0.1(graphql@16.8.2)
+ '@graphql-tools/url-loader': 8.0.1(@types/node@20.14.5)(bufferutil@4.0.8)(graphql@16.8.2)
+ '@graphql-tools/utils': 10.0.13(graphql@16.8.2)
cosmiconfig: 8.3.6(typescript@5.4.5)
- graphql: 16.8.1
+ graphql: 16.8.2
jiti: 1.21.0
minimatch: 4.2.3
string-env-interpolation: 1.0.1
- tslib: 2.6.2
+ tslib: 2.6.3
transitivePeerDependencies:
- '@types/node'
- bufferutil
@@ -16409,24 +17199,24 @@ snapshots:
- typescript
- utf-8-validate
- graphql-request@6.1.0(graphql@16.8.1):
+ graphql-request@6.1.0(graphql@16.8.2):
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2)
cross-fetch: 3.1.8
- graphql: 16.8.1
+ graphql: 16.8.2
transitivePeerDependencies:
- encoding
- graphql-tag@2.12.6(graphql@16.8.1):
+ graphql-tag@2.12.6(graphql@16.8.2):
dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
+ graphql: 16.8.2
+ tslib: 2.6.3
- graphql-ws@5.14.3(graphql@16.8.1):
+ graphql-ws@5.14.3(graphql@16.8.2):
dependencies:
- graphql: 16.8.1
+ graphql: 16.8.2
- graphql@16.8.1: {}
+ graphql@16.8.2: {}
h3@1.11.1:
dependencies:
@@ -16485,7 +17275,7 @@ snapshots:
header-case@2.0.4:
dependencies:
capital-case: 1.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
hermes-estree@0.19.1: {}
@@ -16613,11 +17403,11 @@ snapshots:
i18next-browser-languagedetector@7.1.0:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
i18next@22.5.1:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
iconv-lite@0.4.24:
dependencies:
@@ -16700,7 +17490,7 @@ snapshots:
'@formatjs/ecma402-abstract': 2.0.0
'@formatjs/fast-memoize': 2.2.0
'@formatjs/icu-messageformat-parser': 2.7.8
- tslib: 2.6.2
+ tslib: 2.6.3
invariant@2.2.4:
dependencies:
@@ -16794,7 +17584,7 @@ snapshots:
is-lower-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
is-map@2.0.2: {}
@@ -16866,7 +17656,7 @@ snapshots:
is-upper-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
is-weakmap@2.0.1: {}
@@ -16918,9 +17708,9 @@ snapshots:
dependencies:
ws: 8.13.0(bufferutil@4.0.8)
- isows@1.0.4(ws@8.13.0(bufferutil@4.0.8)):
+ isows@1.0.4(ws@8.17.1(bufferutil@4.0.8)):
dependencies:
- ws: 8.13.0(bufferutil@4.0.8)
+ ws: 8.17.1(bufferutil@4.0.8)
iterator.prototype@1.1.2:
dependencies:
@@ -16957,7 +17747,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.6
+ '@babel/code-frame': 7.24.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -17006,6 +17796,8 @@ snapshots:
jiti@1.21.0: {}
+ jiti@1.21.6: {}
+
jju@1.4.0: {}
joi@17.13.1:
@@ -17037,21 +17829,21 @@ snapshots:
jsc-safe-url@0.2.4: {}
- jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6)):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-flow': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6)
- '@babel/register': 7.24.6(@babel/core@7.24.6)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.6)
+ jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7)):
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.24.7)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/register': 7.24.6(@babel/core@7.24.7)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.24.7)
chalk: 4.1.2
- flow-parser: 0.237.1
+ flow-parser: 0.238.0
graceful-fs: 4.2.11
micromatch: 4.0.7
neo-async: 2.6.2
@@ -17195,24 +17987,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- lilconfig@3.1.1: {}
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
lines-and-columns@2.0.4: {}
- lint-staged@15.2.5:
+ lint-staged@15.2.7:
dependencies:
chalk: 5.3.0
commander: 12.1.0
debug: 4.3.5
execa: 8.0.1
- lilconfig: 3.1.1
+ lilconfig: 3.1.2
listr2: 8.2.1
micromatch: 4.0.7
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.4.3
+ yaml: 2.4.5
transitivePeerDependencies:
- supports-color
@@ -17228,8 +18020,8 @@ snapshots:
get-port-please: 3.1.2
h3: 1.11.1
http-shutdown: 1.2.2
- jiti: 1.21.0
- mlly: 1.7.0
+ jiti: 1.21.6
+ mlly: 1.7.1
node-forge: 1.3.1
pathe: 1.1.2
std-env: 3.7.0
@@ -17258,7 +18050,7 @@ snapshots:
colorette: 2.0.20
eventemitter3: 5.0.1
log-update: 6.0.0
- rfdc: 1.3.1
+ rfdc: 1.4.1
wrap-ansi: 9.0.0
lit-element@3.3.3:
@@ -17287,7 +18079,7 @@ snapshots:
local-pkg@0.5.0:
dependencies:
- mlly: 1.7.0
+ mlly: 1.7.1
pkg-types: 1.1.1
locate-path@3.0.0:
@@ -17353,11 +18145,11 @@ snapshots:
lower-case-first@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
lower-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
lowercase-keys@2.0.0: {}
@@ -17422,15 +18214,15 @@ snapshots:
merge2@1.4.1: {}
- meros@1.3.0(@types/node@20.14.0):
+ meros@1.3.0(@types/node@20.14.5):
optionalDependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
mersenne-twister@1.1.0: {}
metro-babel-transformer@0.80.9:
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.24.7
hermes-parser: 0.20.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -17482,18 +18274,18 @@ snapshots:
metro-minify-terser@0.80.9:
dependencies:
- terser: 5.31.0
+ terser: 5.31.1
metro-resolver@0.80.9: {}
metro-runtime@0.80.9:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
metro-source-map@0.80.9:
dependencies:
- '@babel/traverse': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
invariant: 2.2.4
metro-symbolicate: 0.80.9
nullthrows: 1.1.1
@@ -17516,20 +18308,20 @@ snapshots:
metro-transform-plugins@0.80.9:
dependencies:
- '@babel/core': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/template': 7.24.6
- '@babel/traverse': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
metro-transform-worker@0.80.9(bufferutil@4.0.8):
dependencies:
- '@babel/core': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/core': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/types': 7.24.7
metro: 0.80.9(bufferutil@4.0.8)
metro-babel-transformer: 0.80.9
metro-cache: 0.80.9
@@ -17546,13 +18338,13 @@ snapshots:
metro@0.80.9(bufferutil@4.0.8):
dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/core': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/template': 7.24.6
- '@babel/traverse': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/code-frame': 7.24.7
+ '@babel/core': 7.24.7
+ '@babel/generator': 7.24.7
+ '@babel/parser': 7.24.7
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.7
+ '@babel/types': 7.24.7
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
@@ -17587,7 +18379,7 @@ snapshots:
source-map: 0.5.7
strip-ansi: 6.0.1
throat: 5.0.0
- ws: 7.5.9(bufferutil@4.0.8)
+ ws: 7.5.10(bufferutil@4.0.8)
yargs: 17.7.2
transitivePeerDependencies:
- bufferutil
@@ -17673,9 +18465,9 @@ snapshots:
mkdirp@1.0.4: {}
- mlly@1.7.0:
+ mlly@1.7.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.0
pathe: 1.1.2
pkg-types: 1.1.1
ufo: 1.5.3
@@ -17735,7 +18527,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.2
+ tslib: 2.6.3
nocache@3.0.4: {}
@@ -17798,7 +18590,7 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.2.0:
+ npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
@@ -17810,9 +18602,9 @@ snapshots:
nwsapi@2.2.10: {}
- nx@19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11)):
+ nx@19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11)):
dependencies:
- '@nrwl/tao': 19.1.1(@swc-node/register@1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ '@nrwl/tao': 19.3.0(@swc-node/register@1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5))(@swc/core@1.6.1(@swc/helpers@0.5.11))
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.7
@@ -17826,6 +18618,7 @@ snapshots:
enquirer: 2.3.6
figures: 3.2.0
flat: 5.0.2
+ front-matter: 4.0.2
fs-extra: 11.2.0
ignore: 5.3.1
jest-diff: 29.7.0
@@ -17842,22 +18635,22 @@ snapshots:
tar-stream: 2.2.0
tmp: 0.2.1
tsconfig-paths: 4.2.0
- tslib: 2.6.2
+ tslib: 2.6.3
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 19.1.1
- '@nx/nx-darwin-x64': 19.1.1
- '@nx/nx-freebsd-x64': 19.1.1
- '@nx/nx-linux-arm-gnueabihf': 19.1.1
- '@nx/nx-linux-arm64-gnu': 19.1.1
- '@nx/nx-linux-arm64-musl': 19.1.1
- '@nx/nx-linux-x64-gnu': 19.1.1
- '@nx/nx-linux-x64-musl': 19.1.1
- '@nx/nx-win32-arm64-msvc': 19.1.1
- '@nx/nx-win32-x64-msvc': 19.1.1
- '@swc-node/register': 1.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5)
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@nx/nx-darwin-arm64': 19.3.0
+ '@nx/nx-darwin-x64': 19.3.0
+ '@nx/nx-freebsd-x64': 19.3.0
+ '@nx/nx-linux-arm-gnueabihf': 19.3.0
+ '@nx/nx-linux-arm64-gnu': 19.3.0
+ '@nx/nx-linux-arm64-musl': 19.3.0
+ '@nx/nx-linux-x64-gnu': 19.3.0
+ '@nx/nx-linux-x64-musl': 19.3.0
+ '@nx/nx-win32-arm64-msvc': 19.3.0
+ '@nx/nx-win32-x64-msvc': 19.3.0
+ '@swc-node/register': 1.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@swc/types@0.1.8)(typescript@5.4.5)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
transitivePeerDependencies:
- debug
@@ -18039,7 +18832,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
parent-module@1.0.1:
dependencies:
@@ -18072,14 +18865,14 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
path-browserify@1.0.1: {}
path-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
path-exists@3.0.0: {}
@@ -18109,8 +18902,6 @@ snapshots:
peek-readable@5.0.0: {}
- picocolors@1.0.0: {}
-
picocolors@1.0.1: {}
picomatch@2.3.1: {}
@@ -18159,7 +18950,7 @@ snapshots:
pkg-types@1.1.1:
dependencies:
confbox: 0.1.7
- mlly: 1.7.0
+ mlly: 1.7.1
pathe: 1.1.2
pngjs@5.0.0: {}
@@ -18190,7 +18981,7 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier@3.3.0: {}
+ prettier@3.3.2: {}
pretty-format@26.6.2:
dependencies:
@@ -18257,7 +19048,7 @@ snapshots:
pvtsutils@1.3.5:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
pvutils@1.1.3: {}
@@ -18319,7 +19110,7 @@ snapshots:
react-devtools-core@5.2.0(bufferutil@4.0.8):
dependencies:
shell-quote: 1.8.1
- ws: 7.5.9(bufferutil@4.0.8)
+ ws: 7.5.10(bufferutil@4.0.8)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -18330,15 +19121,15 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1):
+ react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.24.7
html-parse-stringify: 3.0.1
i18next: 22.5.1
react: 18.3.1
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
react-intl@6.6.8(react@18.3.1)(typescript@5.4.5):
dependencies:
@@ -18352,7 +19143,7 @@ snapshots:
hoist-non-react-statics: 3.3.2
intl-messageformat: 10.5.14
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
typescript: 5.4.5
@@ -18368,26 +19159,26 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native-webview@11.26.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1):
+ react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 18.3.1
- react-native: 0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)
- react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1):
+ react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 13.6.6(bufferutil@4.0.8)
- '@react-native-community/cli-platform-android': 13.6.6
- '@react-native-community/cli-platform-ios': 13.6.6
- '@react-native/assets-registry': 0.74.83
- '@react-native/codegen': 0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))
- '@react-native/community-cli-plugin': 0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(bufferutil@4.0.8)
- '@react-native/gradle-plugin': 0.74.83
- '@react-native/js-polyfills': 0.74.83
- '@react-native/normalize-colors': 0.74.83
- '@react-native/virtualized-lists': 0.74.83(@types/react@18.3.3)(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
+ '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)
+ '@react-native-community/cli-platform-android': 13.6.8
+ '@react-native-community/cli-platform-ios': 13.6.8
+ '@react-native/assets-registry': 0.74.84
+ '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))
+ '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)
+ '@react-native/gradle-plugin': 0.74.84
+ '@react-native/js-polyfills': 0.74.84
+ '@react-native/normalize-colors': 0.74.84
+ '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -18413,7 +19204,7 @@ snapshots:
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
whatwg-fetch: 3.6.20
- ws: 6.2.2(bufferutil@4.0.8)
+ ws: 6.2.3(bufferutil@4.0.8)
yargs: 17.7.2
optionalDependencies:
'@types/react': 18.3.3
@@ -18431,7 +19222,7 @@ snapshots:
dependencies:
react: 18.3.1
react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -18440,7 +19231,7 @@ snapshots:
react: 18.3.1
react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1)
react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.2
+ tslib: 2.6.3
use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1)
use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
optionalDependencies:
@@ -18469,7 +19260,7 @@ snapshots:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -18489,10 +19280,10 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-universal-interface@0.6.2(react@18.3.1)(tslib@2.6.2):
+ react-universal-interface@0.6.2(react@18.3.1)(tslib@2.6.3):
dependencies:
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
react-use@17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -18505,13 +19296,13 @@ snapshots:
nano-css: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-universal-interface: 0.6.2(react@18.3.1)(tslib@2.6.2)
+ react-universal-interface: 0.6.2(react@18.3.1)(tslib@2.6.3)
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
set-harmonic-interval: 1.0.1
throttle-debounce: 3.0.1
ts-easing: 0.2.0
- tslib: 2.6.2
+ tslib: 2.6.3
react@18.3.1:
dependencies:
@@ -18550,7 +19341,7 @@ snapshots:
ast-types: 0.15.2
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.6.2
+ tslib: 2.6.3
reflect.getprototypeof@1.0.5:
dependencies:
@@ -18574,7 +19365,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.24.6
regexp.prototype.flags@1.5.1:
dependencies:
@@ -18604,7 +19395,7 @@ snapshots:
relay-runtime@12.0.0:
dependencies:
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.24.7
fbjs: 3.0.5
invariant: 2.2.4
transitivePeerDependencies:
@@ -18669,6 +19460,8 @@ snapshots:
rfdc@1.3.1: {}
+ rfdc@1.4.1: {}
+
rimraf@2.6.3:
dependencies:
glob: 7.2.3
@@ -18724,7 +19517,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
safe-array-concat@1.1.0:
dependencies:
@@ -18830,7 +19623,7 @@ snapshots:
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
upper-case-first: 2.0.2
serialize-error@2.1.0: {}
@@ -18958,13 +19751,13 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.6.3
socket.io-client@4.7.5(bufferutil@4.0.8):
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.5
- engine.io-client: 6.5.3(bufferutil@4.0.8)
+ engine.io-client: 6.5.4(bufferutil@4.0.8)
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -19016,7 +19809,7 @@ snapshots:
sponge-case@1.0.1:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
sprintf-js@1.0.3: {}
@@ -19199,18 +19992,18 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.0.0
+ picocolors: 1.0.1
swap-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
symbol-tree@3.2.4: {}
synckit@0.8.8:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.2
+ tslib: 2.6.3
system-architecture@0.1.0: {}
@@ -19230,21 +20023,21 @@ snapshots:
dependencies:
rimraf: 2.6.3
- terser-webpack-plugin@5.3.10(@swc/core@1.5.24(@swc/helpers@0.5.11))(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.11))(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.0
- webpack: 5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11))
+ terser: 5.31.1
+ webpack: 5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11))
optionalDependencies:
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
- terser@5.31.0:
+ terser@5.31.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.12.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -19273,7 +20066,7 @@ snapshots:
title-case@3.0.3:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
tmp@0.0.33:
dependencies:
@@ -19325,14 +20118,14 @@ snapshots:
ts-log@2.2.5: {}
- ts-node@10.9.1(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(typescript@5.4.5):
+ ts-node@10.9.1(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(typescript@5.4.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
@@ -19343,16 +20136,16 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
- ts-node@10.9.2(@swc/core@1.5.24(@swc/helpers@0.5.11))(@types/node@20.14.0)(typescript@5.4.5):
+ ts-node@10.9.2(@swc/core@1.6.1(@swc/helpers@0.5.11))(@types/node@20.14.5)(typescript@5.4.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
@@ -19363,7 +20156,7 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.5.24(@swc/helpers@0.5.11)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.11)
ts-toolbelt@9.6.0: {}
@@ -19390,9 +20183,11 @@ snapshots:
tslib@2.6.2: {}
- tsx@4.11.2:
+ tslib@2.6.3: {}
+
+ tsx@4.15.6:
dependencies:
- esbuild: 0.20.2
+ esbuild: 0.21.5
get-tsconfig: 4.7.5
optionalDependencies:
fsevents: 2.3.3
@@ -19567,13 +20362,19 @@ snapshots:
escalade: 3.1.2
picocolors: 1.0.1
+ update-browserslist-db@1.0.16(browserslist@4.23.1):
+ dependencies:
+ browserslist: 4.23.1
+ escalade: 3.1.2
+ picocolors: 1.0.1
+
upper-case-first@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
upper-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
uqr@0.1.2: {}
@@ -19595,7 +20396,7 @@ snapshots:
use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
dependencies:
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -19608,7 +20409,7 @@ snapshots:
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
'@types/react': 18.3.3
@@ -19673,7 +20474,7 @@ snapshots:
- utf-8-validate
- zod
- viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5):
+ viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5):
dependencies:
'@adraffy/ens-normalize': 1.10.0
'@noble/curves': 1.2.0
@@ -19681,8 +20482,8 @@ snapshots:
'@scure/bip32': 1.3.2
'@scure/bip39': 1.2.1
abitype: 1.0.0(typescript@5.4.5)
- isows: 1.0.4(ws@8.13.0(bufferutil@4.0.8))
- ws: 8.13.0(bufferutil@4.0.8)
+ isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8))
+ ws: 8.17.1(bufferutil@4.0.8)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
@@ -19690,13 +20491,13 @@ snapshots:
- utf-8-validate
- zod
- vite-node@1.6.0(@types/node@20.14.0)(terser@5.31.0):
+ vite-node@1.6.0(@types/node@20.14.5)(terser@5.31.1):
dependencies:
cac: 6.7.14
debug: 4.3.5
pathe: 1.1.2
picocolors: 1.0.1
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.2.12(@types/node@20.14.5)(terser@5.31.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -19707,9 +20508,9 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@3.9.1(@types/node@20.14.0)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0)):
+ vite-plugin-dts@3.9.1(@types/node@20.14.5)(rollup@4.18.0)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1)):
dependencies:
- '@microsoft/api-extractor': 7.43.0(@types/node@20.14.0)
+ '@microsoft/api-extractor': 7.43.0(@types/node@20.14.5)
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
'@vue/language-core': 1.8.27(typescript@5.4.5)
debug: 4.3.5
@@ -19718,60 +20519,70 @@ snapshots:
typescript: 5.4.5
vue-tsc: 1.8.27(typescript@5.4.5)
optionalDependencies:
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-static-copy@1.0.5(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0)):
+ vite-plugin-static-copy@1.0.5(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1)):
dependencies:
chokidar: 3.6.0
fast-glob: 3.3.2
fs-extra: 11.2.0
picocolors: 1.0.1
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
- vite-plugin-svgr@4.2.0(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0)):
+ vite-plugin-svgr@4.2.0(rollup@4.18.0)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1)):
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
'@svgr/core': 8.1.0(typescript@5.4.5)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.2.12(@types/node@20.14.0)(terser@5.31.0)):
+ vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.5)(terser@5.31.1)):
dependencies:
debug: 4.3.4
globrex: 0.1.2
tsconfck: 3.0.3(typescript@5.4.5)
optionalDependencies:
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.3.1(@types/node@20.14.5)(terser@5.31.1)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.2.12(@types/node@20.14.0)(terser@5.31.0):
+ vite@5.2.12(@types/node@20.14.5)(terser@5.31.1):
dependencies:
esbuild: 0.20.2
postcss: 8.4.38
rollup: 4.18.0
optionalDependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
+ fsevents: 2.3.3
+ terser: 5.31.1
+
+ vite@5.3.1(@types/node@20.14.5)(terser@5.31.1):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.38
+ rollup: 4.18.0
+ optionalDependencies:
+ '@types/node': 20.14.5
fsevents: 2.3.3
- terser: 5.31.0
+ terser: 5.31.1
- vitest@1.6.0(@types/node@20.14.0)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.0):
+ vitest@1.6.0(@types/node@20.14.5)(jsdom@24.1.0(bufferutil@4.0.8))(terser@5.31.1):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
'@vitest/snapshot': 1.6.0
'@vitest/spy': 1.6.0
'@vitest/utils': 1.6.0
- acorn-walk: 8.3.2
+ acorn-walk: 8.3.3
chai: 4.4.1
debug: 4.3.5
execa: 8.0.1
@@ -19783,11 +20594,11 @@ snapshots:
strip-literal: 2.1.0
tinybench: 2.8.0
tinypool: 0.8.4
- vite: 5.2.12(@types/node@20.14.0)(terser@5.31.0)
- vite-node: 1.6.0(@types/node@20.14.0)(terser@5.31.0)
+ vite: 5.2.12(@types/node@20.14.5)(terser@5.31.1)
+ vite-node: 1.6.0(@types/node@20.14.5)(terser@5.31.1)
why-is-node-running: 2.2.2
optionalDependencies:
- '@types/node': 20.14.0
+ '@types/node': 20.14.5
jsdom: 24.1.0(bufferutil@4.0.8)
transitivePeerDependencies:
- less
@@ -19818,14 +20629,14 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.9.8(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.40.0)(@tanstack/react-query@5.40.0(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5)):
+ wagmi@2.10.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5)):
dependencies:
- '@tanstack/react-query': 5.40.0(react@18.3.1)
- '@wagmi/connectors': 5.0.7(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(@wagmi/core@2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
- '@wagmi/core': 2.10.5(@tanstack/query-core@5.40.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.13.3(bufferutil@4.0.8)(typescript@5.4.5))
+ '@tanstack/react-query': 5.45.1(react@18.3.1)
+ '@wagmi/connectors': 5.0.14(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)))(@types/react@18.3.3)(@wagmi/core@2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@14.1.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
+ '@wagmi/core': 2.11.2(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@10.1.1)(react@18.3.1)(typescript@5.4.5)(viem@2.15.1(bufferutil@4.0.8)(typescript@5.4.5))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
- viem: 2.13.3(bufferutil@4.0.8)(typescript@5.4.5)
+ viem: 2.15.1(bufferutil@4.0.8)(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
@@ -19877,7 +20688,7 @@ snapshots:
'@peculiar/json-schema': 1.1.12
asn1js: 3.0.5
pvtsutils: 1.3.5
- tslib: 2.6.2
+ tslib: 2.6.3
webextension-polyfill@0.10.0: {}
@@ -19887,18 +20698,18 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)):
+ webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
+ acorn: 8.12.0
+ acorn-import-attributes: 1.9.5(acorn@8.12.0)
+ browserslist: 4.23.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.16.1
+ enhanced-resolve: 5.17.0
es-module-lexer: 1.5.3
eslint-scope: 5.1.1
events: 3.3.0
@@ -19910,7 +20721,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.5.24(@swc/helpers@0.5.11))(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.11)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.11))(webpack@5.92.0(@swc/core@1.6.1(@swc/helpers@0.5.11)))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -20027,17 +20838,13 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- ws@6.2.2(bufferutil@4.0.8):
+ ws@6.2.3(bufferutil@4.0.8):
dependencies:
async-limiter: 1.0.1
optionalDependencies:
bufferutil: 4.0.8
- ws@7.5.9(bufferutil@4.0.8):
- optionalDependencies:
- bufferutil: 4.0.8
-
- ws@8.11.0(bufferutil@4.0.8):
+ ws@7.5.10(bufferutil@4.0.8):
optionalDependencies:
bufferutil: 4.0.8
@@ -20053,6 +20860,10 @@ snapshots:
optionalDependencies:
bufferutil: 4.0.8
+ ws@8.17.1(bufferutil@4.0.8):
+ optionalDependencies:
+ bufferutil: 4.0.8
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -20077,7 +20888,7 @@ snapshots:
yaml@2.3.4: {}
- yaml@2.4.3: {}
+ yaml@2.4.5: {}
yargs-parser@18.1.3:
dependencies: