diff --git a/.changeset/wise-mangos-shake.md b/.changeset/wise-mangos-shake.md new file mode 100644 index 00000000000..b281d410f87 --- /dev/null +++ b/.changeset/wise-mangos-shake.md @@ -0,0 +1,5 @@ +--- +'@masknet/encryption': patch +--- + +chore: support type for ts 5.7 diff --git a/package.json b/package.json index ad89c156606..08823c267f9 100644 --- a/package.json +++ b/package.json @@ -36,9 +36,9 @@ "@emotion/react": "11.11.4", "@emotion/serialize": "1.1.4", "@emotion/styled": "11.11.5", - "@lingui/core": "^4.11.3", - "@lingui/react": "^4.11.3", - "@masknet/kit": "0.4.0", + "@lingui/core": "^4.12.0", + "@lingui/react": "^4.12.0", + "@masknet/kit": "0.4.1", "@mui/base": "5.0.0-beta.40", "@mui/icons-material": "5.15.21", "@mui/lab": "5.0.0-alpha.170", @@ -48,7 +48,7 @@ "@types/masknet__global-types": "workspace:^", "@types/react": "npm:types-react@beta", "@types/react-dom": "npm:types-react-dom@beta", - "@typescript/lib-dom": "npm:@types/web@^0.0.150", + "@typescript/lib-dom": "npm:@types/web@^0.0.171", "i18next": "^23.11.5", "knip": "^5.23.2", "lodash-es": "^4.17.21", @@ -64,16 +64,16 @@ "@commitlint/config-conventional": "^19.2.2", "@eslint-react/eslint-plugin": "^1.14.3", "@eslint/compat": "^1.1.1", - "@lingui/cli": "^4.11.3", - "@lingui/macro": "^4.11.3", - "@lingui/swc-plugin": "^4.0.8", + "@lingui/cli": "^4.12.0", + "@lingui/macro": "^4.12.0", + "@lingui/swc-plugin": "^4.0.10", "@magic-works/i18n-codegen": "^0.6.1", "@masknet/cli": "workspace:^", "@masknet/config": "workspace:^", "@masknet/eslint-plugin": "^0.3.0", "@nice-labs/git-rev": "^3.5.1", "@swc-node/register": "^1.10.9", - "@swc/core": "1.6.13", + "@swc/core": "1.7.35", "@tanstack/eslint-plugin-query": "^5.59.7", "@types/lodash-es": "^4.17.12", "@vitest/ui": "^1.6.0", @@ -92,7 +92,7 @@ "lint-staged": "^15.2.7", "prettier": "^3.3.2", "svgo": "^3.3.2", - "typescript": "5.5.2", + "typescript": "5.7.0-beta", "typescript-eslint": "^8.8.1", "vite": "^5.3.2", "vitest": "^1.6.0" @@ -108,7 +108,7 @@ "@protobufjs/inquire": "1.1.0", "@splinetool/runtime": "0.9.342", "@tanstack/react-query": "^5.49.2", - "@types/node": "20.14.9", + "@types/node": "22.7.5", "@types/react": "$@types/react", "@types/react-dom": "$@types/react-dom", "glob-stream": "7.0.0", diff --git a/packages/backup-format/src/container/index.ts b/packages/backup-format/src/container/index.ts index 8e2b1d0baf6..ed8a47036a7 100644 --- a/packages/backup-format/src/container/index.ts +++ b/packages/backup-format/src/container/index.ts @@ -14,13 +14,16 @@ function getMagicHeader(version: SupportedVersions) { } /** @internal */ -export async function createContainer(version: SupportedVersions, data: ArrayBuffer) { +export async function createContainer(version: SupportedVersions, data: ArrayBuffer | Uint8Array) { const checksum = await crypto.subtle.digest({ name: 'SHA-256' }, data) return concatArrayBuffer(getMagicHeader(version), data, checksum) } /** @internal */ -export async function parseEncryptedJSONContainer(version: SupportedVersions, _container: ArrayBuffer) { +export async function parseEncryptedJSONContainer( + version: SupportedVersions, + _container: ArrayBuffer | ArrayLike, +) { const container = new Uint8Array(_container) for (const [index, value] of getMagicHeader(version).entries()) { diff --git a/packages/backup-format/src/version-3/index.ts b/packages/backup-format/src/version-3/index.ts index 77b5ecc7d5b..5dfac57fc91 100644 --- a/packages/backup-format/src/version-3/index.ts +++ b/packages/backup-format/src/version-3/index.ts @@ -7,11 +7,11 @@ export async function encryptBackup(password: BufferSource, binaryBackup: Buffer const AESParam: AesGcmParams = { name: 'AES-GCM', iv: crypto.getRandomValues(new Uint8Array(16)) } const encrypted = new Uint8Array(await crypto.subtle.encrypt(AESParam, AESKey, binaryBackup)) - const container = encode([pbkdf2IV, AESParam.iv, encrypted]) + const container = encode([pbkdf2IV, AESParam.iv, encrypted]) as Uint8Array return createContainer(SupportedVersions.Version0, container) } -export async function decryptBackup(password: BufferSource, data: ArrayBuffer) { +export async function decryptBackup(password: BufferSource, data: ArrayBuffer | ArrayLike) { const container = await parseEncryptedJSONContainer(SupportedVersions.Version0, data) const _ = decode(container) diff --git a/packages/base/package.json b/packages/base/package.json index aeb8d76f35d..fa2e8feb638 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -12,7 +12,7 @@ }, "types": "./dist/index.d.ts", "dependencies": { - "@masknet/kit": "0.4.0", + "@masknet/kit": "0.4.1", "anchorme": "^2.1.2", "pvtsutils": "^1.3.5", "tiny-secp256k1": "^2.2.3", diff --git a/packages/base/src/Identifier/identifier.ts b/packages/base/src/Identifier/identifier.ts index 6b5642f9f3b..e6f162bad44 100644 --- a/packages/base/src/Identifier/identifier.ts +++ b/packages/base/src/Identifier/identifier.ts @@ -138,7 +138,7 @@ export class ECKeyIdentifier extends Identifier { } declare [Symbol.toStringTag]: string #ec: undefined - static [Symbol.hasInstance](x: any): boolean { + static override [Symbol.hasInstance](x: any): boolean { return typeof x === 'object' && x !== null && #ec in x } static { @@ -190,7 +190,7 @@ export class PostIVIdentifier extends Identifier { } declare [Symbol.toStringTag]: string #post_iv: undefined - static [Symbol.hasInstance](x: any): boolean { + static override [Symbol.hasInstance](x: any): boolean { return typeof x === 'object' && x !== null && #post_iv in x } static { @@ -240,7 +240,7 @@ export class PostIdentifier extends Identifier { } declare [Symbol.toStringTag]: string #post: undefined - static [Symbol.hasInstance](x: any): boolean { + static override [Symbol.hasInstance](x: any): boolean { return typeof x === 'object' && x !== null && #post in x } static { @@ -304,7 +304,7 @@ export class ProfileIdentifier extends Identifier { } declare [Symbol.toStringTag]: string #profile: undefined - static [Symbol.hasInstance](x: any): boolean { + static override [Symbol.hasInstance](x: any): boolean { return typeof x === 'object' && x !== null && #profile in x } static { diff --git a/packages/config/tsconfig.json b/packages/config/tsconfig.json index 778594841e5..ae50bd65bc7 100644 --- a/packages/config/tsconfig.json +++ b/packages/config/tsconfig.json @@ -13,6 +13,7 @@ "noImplicitThis": true, // noPropertyAccessFromIndexSignature: false, // noUncheckedIndexedAccess: false, + "noUncheckedSideEffectImports": true, // noUnusedLocals: false, // noUnusedParameters: false, "useUnknownInCatchVariables": true, diff --git a/packages/encryption/src/image-steganography/index.ts b/packages/encryption/src/image-steganography/index.ts index a043080f019..d87f8b96450 100644 --- a/packages/encryption/src/image-steganography/index.ts +++ b/packages/encryption/src/image-steganography/index.ts @@ -18,7 +18,7 @@ export interface EncodeImageOptions extends SteganographyIO { preset: SteganographyPreset } -export async function steganographyEncodeImage(buf: ArrayBuffer, options: EncodeImageOptions) { +export async function steganographyEncodeImage(buf: ArrayLike | ArrayBufferLike, options: EncodeImageOptions) { const { downloadImage, data, password, grayscaleAlgorithm } = options const preset = getPreset(options.preset) if (!preset) throw new Error('Failed to find preset.') diff --git a/packages/injected-script/main/Patches/DataTransfer.ts b/packages/injected-script/main/Patches/DataTransfer.ts index 24689403036..4a61637fa01 100644 --- a/packages/injected-script/main/Patches/DataTransfer.ts +++ b/packages/injected-script/main/Patches/DataTransfer.ts @@ -139,7 +139,7 @@ export class __FileList extends $unsafe.NewObject implements FileList { if (!(#files in list)) return $.apply($.FileListPrototypeDesc.item.value!, this, arguments) return list.#files[index] ?? null } - [Symbol.iterator](): IterableIterator { + [Symbol.iterator](): ArrayIterator { const list = $unsafe.unwrapXRayVision(this) if (!(#files in list)) return $.apply($.FileListPrototypeDesc[Symbol.iterator].value!, this, arguments) return $unsafe.Array_values(list.#files) @@ -254,7 +254,7 @@ export class __DataTransferItemList extends $unsafe.NewObject implements DataTra new $.DOMException('The object is in an invalid state.', 'InvalidStateError'), ) } - [Symbol.iterator](): IterableIterator { + [Symbol.iterator](): ArrayIterator { const list = $unsafe.unwrapXRayVision(this) if (!(#items in list)) return $.apply($.DataTransferItemListPrototypeDesc[Symbol.iterator].value!, this, arguments) diff --git a/packages/mask-sdk/shared/serializer.ts b/packages/mask-sdk/shared/serializer.ts index 64a74be536f..79f6be79d73 100644 --- a/packages/mask-sdk/shared/serializer.ts +++ b/packages/mask-sdk/shared/serializer.ts @@ -32,7 +32,7 @@ const [ArrayBufferEncode, ArrayBufferDecode] = createClassSerializer( (e) => [...new Uint8Array(e)], (e) => new Uint8Array(e).buffer, ) -const [U8ArrayEncode, U8ArrayDecode] = createClassSerializer( +const [U8ArrayEncode, U8ArrayDecode] = createClassSerializer( Uint8Array, (e) => [...e], (e) => new Uint8Array(e), diff --git a/packages/mask/background/database/persona/helper.ts b/packages/mask/background/database/persona/helper.ts index 9da72db248f..97544ba59af 100644 --- a/packages/mask/background/database/persona/helper.ts +++ b/packages/mask/background/database/persona/helper.ts @@ -83,7 +83,7 @@ export async function encryptByLocalKey(who: ProfileIdentifier, content: Uint8Ar }) if (!key) throw new Error('No local key found') const result = await crypto.subtle.encrypt({ iv, name: 'AES-GCM' }, key, content) - return result as Uint8Array + return result } async function getLocalKeyOf(id: ProfileIdentifier, tx: FullPersonaDBTransaction<'readonly'>) { diff --git a/packages/mask/background/services/crypto/steganography.ts b/packages/mask/background/services/crypto/steganography.ts index f5359ec0cd7..fc3c532ddae 100644 --- a/packages/mask/background/services/crypto/steganography.ts +++ b/packages/mask/background/services/crypto/steganography.ts @@ -11,7 +11,7 @@ async function fetchImage(url: string) { const steganographyDownloadImage = memoizePromise(memoize, fetchImage, (x) => x) export function steganographyEncodeImage( - buf: ArrayBuffer, + buf: ArrayLike | ArrayBufferLike, options: Omit, ): Promise { return __steganographyEncodeImage(buf, { ...options, downloadImage: steganographyDownloadImage }) diff --git a/packages/mask/background/services/wallet/services/wallet/database/secret.ts b/packages/mask/background/services/wallet/services/wallet/database/secret.ts index 9de7efe5732..171b8af932b 100644 --- a/packages/mask/background/services/wallet/services/wallet/database/secret.ts +++ b/packages/mask/background/services/wallet/services/wallet/database/secret.ts @@ -24,10 +24,10 @@ function deriveAES(key: CryptoKey, iv: ArrayBuffer) { function createAES() { return crypto.subtle.generateKey({ name: 'AES-GCM', length: 256 }, true, ['encrypt', 'decrypt']) } -function encrypt(message: ArrayBuffer, key: CryptoKey, iv: ArrayBuffer) { +function encrypt(message: BufferSource, key: CryptoKey, iv: BufferSource) { return crypto.subtle.encrypt({ name: 'AES-GCM', iv }, key, message) } -function decrypt(message: ArrayBuffer, key: CryptoKey, iv: ArrayBuffer) { +function decrypt(message: BufferSource, key: CryptoKey, iv: BufferSource) { return crypto.subtle.decrypt({ name: 'AES-GCM', iv }, key, message) } function wrapKey(key: CryptoKey, wrapKey: CryptoKey) { diff --git a/packages/mask/content-script/site-adaptors/twitter.com/locales/languages.ts b/packages/mask/content-script/site-adaptors/twitter.com/locales/languages.ts index 242ca52c3dd..0e3296f54c9 100644 --- a/packages/mask/content-script/site-adaptors/twitter.com/locales/languages.ts +++ b/packages/mask/content-script/site-adaptors/twitter.com/locales/languages.ts @@ -2,17 +2,17 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import qya_AA from './qya-AA.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' -import lingui_en_US from '../../../../shared-ui/locale/en-US.json' -import lingui_ja_JP from '../../../../shared-ui/locale/ja-JP.json' -import lingui_ko_KR from '../../../../shared-ui/locale/ko-KR.json' -import lingui_zh_CN from '../../../../shared-ui/locale/zh-CN.json' -import lingui_zh_TW from '../../../../shared-ui/locale/zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import qya_AA from './qya-AA.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } +import lingui_en_US from '../../../../shared-ui/locale/en-US.json' with { type: 'json' } +import lingui_ja_JP from '../../../../shared-ui/locale/ja-JP.json' with { type: 'json' } +import lingui_ko_KR from '../../../../shared-ui/locale/ko-KR.json' with { type: 'json' } +import lingui_zh_CN from '../../../../shared-ui/locale/zh-CN.json' with { type: 'json' } +import lingui_zh_TW from '../../../../shared-ui/locale/zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/mask/dashboard/locales/languages.ts b/packages/mask/dashboard/locales/languages.ts index 2a95fe50bf3..0dbab1d7e9f 100644 --- a/packages/mask/dashboard/locales/languages.ts +++ b/packages/mask/dashboard/locales/languages.ts @@ -2,17 +2,17 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import qya_AA from './qya-AA.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' -import lingui_en_US from '../../shared-ui/locale/en-US.json' -import lingui_ja_JP from '../../shared-ui/locale/ja-JP.json' -import lingui_ko_KR from '../../shared-ui/locale/ko-KR.json' -import lingui_zh_CN from '../../shared-ui/locale/zh-CN.json' -import lingui_zh_TW from '../../shared-ui/locale/zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import qya_AA from './qya-AA.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } +import lingui_en_US from '../../shared-ui/locale/en-US.json' with { type: 'json' } +import lingui_ja_JP from '../../shared-ui/locale/ja-JP.json' with { type: 'json' } +import lingui_ko_KR from '../../shared-ui/locale/ko-KR.json' with { type: 'json' } +import lingui_zh_CN from '../../shared-ui/locale/zh-CN.json' with { type: 'json' } +import lingui_zh_TW from '../../shared-ui/locale/zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/mask/popups/pages/Wallet/ChangeOwner/index.tsx b/packages/mask/popups/pages/Wallet/ChangeOwner/index.tsx index 218b2b81921..232ef6acb44 100644 --- a/packages/mask/popups/pages/Wallet/ChangeOwner/index.tsx +++ b/packages/mask/popups/pages/Wallet/ChangeOwner/index.tsx @@ -5,7 +5,7 @@ import { useNavigate } from 'react-router-dom' import type { AbiItem } from 'web3-utils' import { useContainer } from '@masknet/shared-base-ui' import { EVMContract, EVMExplorerResolver, EVMWeb3 } from '@masknet/web3-providers' -import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' +import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' with { type: 'json' } import type { Wallet } from '@masknet/web3-contracts/types/Wallet.js' import { Box, Link, Popover, Typography, alpha } from '@mui/material' import { Icons } from '@masknet/icons' diff --git a/packages/mask/popups/pages/Wallet/utils.ts b/packages/mask/popups/pages/Wallet/utils.ts index 300f0b29f83..517038a4cae 100644 --- a/packages/mask/popups/pages/Wallet/utils.ts +++ b/packages/mask/popups/pages/Wallet/utils.ts @@ -3,7 +3,7 @@ import type { BigNumber } from 'bignumber.js' import * as web3_utils from /* webpackDefer: true */ 'web3-utils' import type { AbiItem } from 'web3-utils' import { EVMWeb3 } from '@masknet/web3-providers' -import ERC20_ABI from '@masknet/web3-contracts/abis/ERC20.json' +import ERC20_ABI from '@masknet/web3-contracts/abis/ERC20.json' with { type: 'json' } import { toFixed, type RecentTransaction } from '@masknet/web3-shared-base' import { ProviderType, diff --git a/packages/mask/shared-ui/locale/languages.ts b/packages/mask/shared-ui/locale/languages.ts index bca96b50ce3..188887e7a59 100644 --- a/packages/mask/shared-ui/locale/languages.ts +++ b/packages/mask/shared-ui/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/mask/shared-ui/locales/languages.ts b/packages/mask/shared-ui/locales/languages.ts index a4347f5fd32..1300b003583 100644 --- a/packages/mask/shared-ui/locales/languages.ts +++ b/packages/mask/shared-ui/locales/languages.ts @@ -2,17 +2,17 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import qya_AA from './qya-AA.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' -import lingui_en_US from '../locale/en-US.json' -import lingui_ja_JP from '../locale/ja-JP.json' -import lingui_ko_KR from '../locale/ko-KR.json' -import lingui_zh_CN from '../locale/zh-CN.json' -import lingui_zh_TW from '../locale/zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import qya_AA from './qya-AA.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } +import lingui_en_US from '../locale/en-US.json' with { type: 'json' } +import lingui_ja_JP from '../locale/ja-JP.json' with { type: 'json' } +import lingui_ko_KR from '../locale/ko-KR.json' with { type: 'json' } +import lingui_zh_CN from '../locale/zh-CN.json' with { type: 'json' } +import lingui_zh_TW from '../locale/zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Approval/src/locale/languages.ts b/packages/plugins/Approval/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Approval/src/locale/languages.ts +++ b/packages/plugins/Approval/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/ArtBlocks/src/hooks/useArtBlocksContract.ts b/packages/plugins/ArtBlocks/src/hooks/useArtBlocksContract.ts index 39f0de16d75..83f5a3e32f2 100644 --- a/packages/plugins/ArtBlocks/src/hooks/useArtBlocksContract.ts +++ b/packages/plugins/ArtBlocks/src/hooks/useArtBlocksContract.ts @@ -1,7 +1,7 @@ import type { AbiItem } from 'web3-utils' import { useContract } from '@masknet/web3-hooks-evm' import { type ChainId, useArtBlocksConstants } from '@masknet/web3-shared-evm' -import ArtBlocksCoreContractABI from '@masknet/web3-contracts/abis/ArtBlocksMinterContract.json' +import ArtBlocksCoreContractABI from '@masknet/web3-contracts/abis/ArtBlocksMinterContract.json' with { type: 'json' } import type { ArtBlocksMinterContract } from '@masknet/web3-contracts/types/ArtBlocksMinterContract.js' diff --git a/packages/plugins/ArtBlocks/src/locale/languages.ts b/packages/plugins/ArtBlocks/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/ArtBlocks/src/locale/languages.ts +++ b/packages/plugins/ArtBlocks/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Avatar/src/locale/languages.ts b/packages/plugins/Avatar/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Avatar/src/locale/languages.ts +++ b/packages/plugins/Avatar/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Calendar/src/locale/languages.ts b/packages/plugins/Calendar/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Calendar/src/locale/languages.ts +++ b/packages/plugins/Calendar/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Claim/src/hooks/useClaimAirdrop.tsx b/packages/plugins/Claim/src/hooks/useClaimAirdrop.tsx index e7d2e55c8da..992ec4aa1f7 100644 --- a/packages/plugins/Claim/src/hooks/useClaimAirdrop.tsx +++ b/packages/plugins/Claim/src/hooks/useClaimAirdrop.tsx @@ -3,7 +3,7 @@ import { useAsyncFn } from 'react-use' import type { AbiItem } from 'web3-utils' import { useTheme } from '@mui/material' import type { AirdropV2 } from '@masknet/web3-contracts/types/AirdropV2.js' -import AirDropV2ABI from '@masknet/web3-contracts/abis/AirdropV2.json' +import AirDropV2ABI from '@masknet/web3-contracts/abis/AirdropV2.json' with { type: 'json' } import { useChainContext } from '@masknet/web3-hooks-base' import { useContract } from '@masknet/web3-hooks-evm' import { diff --git a/packages/plugins/Claim/src/locale/languages.ts b/packages/plugins/Claim/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Claim/src/locale/languages.ts +++ b/packages/plugins/Claim/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Collectible/src/locale/languages.ts b/packages/plugins/Collectible/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Collectible/src/locale/languages.ts +++ b/packages/plugins/Collectible/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/CrossChainBridge/src/locale/languages.ts b/packages/plugins/CrossChainBridge/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/CrossChainBridge/src/locale/languages.ts +++ b/packages/plugins/CrossChainBridge/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/CyberConnect/src/locale/languages.ts b/packages/plugins/CyberConnect/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/CyberConnect/src/locale/languages.ts +++ b/packages/plugins/CyberConnect/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Debugger/src/locale/languages.ts b/packages/plugins/Debugger/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Debugger/src/locale/languages.ts +++ b/packages/plugins/Debugger/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/FileService/src/Worker/arweave.ts b/packages/plugins/FileService/src/Worker/arweave.ts index c4edfbb7382..03dfece2c97 100644 --- a/packages/plugins/FileService/src/Worker/arweave.ts +++ b/packages/plugins/FileService/src/Worker/arweave.ts @@ -7,7 +7,7 @@ import type { JWKInterface } from 'arweave/web/lib/wallet.js' import { fetchText } from '@masknet/web3-providers/helpers' import { LANDING_PAGE, MESON_PREFIX, Provider } from '../constants.js' import { sign } from './remote-signing.js' -import TOKEN from './arweave-token.json' +import TOKEN from './arweave-token.json' with { type: 'json' } import type { ProviderAgent, LandingPageMetadata, AttachmentOptions } from '../types.js' import { makeFileKeySigned } from '../helpers.js' diff --git a/packages/plugins/FileService/src/helpers.ts b/packages/plugins/FileService/src/helpers.ts index c0da0652d9f..f0f10902425 100644 --- a/packages/plugins/FileService/src/helpers.ts +++ b/packages/plugins/FileService/src/helpers.ts @@ -9,9 +9,9 @@ import type { TypedMessage } from '@masknet/typed-message' import { createTypedMessageMetadataReader } from '@masknet/typed-message-react' import { META_KEY_1, META_KEY_2, META_KEY_3, RECOVERY_PAGE } from './constants.js' import { type FileInfo, type FileInfoV1, Provider } from './types.js' -import schemaV1 from './schema-v1.json' -import schemaV2 from './schema-v2.json' -import schemaV3 from './schema-v3.json' +import schemaV1 from './schema-v1.json' with { type: 'json' } +import schemaV2 from './schema-v2.json' with { type: 'json' } +import schemaV3 from './schema-v3.json' with { type: 'json' } // Note: if the latest version has been changed, please update packages/mask/content-script/components/CompositionDialog/useSubmit.ts const reader_v1 = createTypedMessageMetadataReader(META_KEY_1, schemaV1) diff --git a/packages/plugins/FileService/src/locale/languages.ts b/packages/plugins/FileService/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/FileService/src/locale/languages.ts +++ b/packages/plugins/FileService/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/FriendTech/src/locale/languages.ts b/packages/plugins/FriendTech/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/FriendTech/src/locale/languages.ts +++ b/packages/plugins/FriendTech/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Gitcoin/src/locale/languages.ts b/packages/plugins/Gitcoin/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Gitcoin/src/locale/languages.ts +++ b/packages/plugins/Gitcoin/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/GoPlusSecurity/src/locale/languages.ts b/packages/plugins/GoPlusSecurity/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/GoPlusSecurity/src/locale/languages.ts +++ b/packages/plugins/GoPlusSecurity/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Handle/src/locale/languages.ts b/packages/plugins/Handle/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Handle/src/locale/languages.ts +++ b/packages/plugins/Handle/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/MaskBox/src/hooks/useMaskBoxContract.ts b/packages/plugins/MaskBox/src/hooks/useMaskBoxContract.ts index 0146c99f568..6a3b904c60b 100644 --- a/packages/plugins/MaskBox/src/hooks/useMaskBoxContract.ts +++ b/packages/plugins/MaskBox/src/hooks/useMaskBoxContract.ts @@ -1,6 +1,6 @@ import type { AbiItem } from 'web3-utils' import type { MaskBox } from '@masknet/web3-contracts/types/MaskBox.js' -import MASK_BOX_ABI from '@masknet/web3-contracts/abis/MaskBox.json' +import MASK_BOX_ABI from '@masknet/web3-contracts/abis/MaskBox.json' with { type: 'json' } import { useMaskBoxConstants, type ChainId } from '@masknet/web3-shared-evm' import { useChainContext } from '@masknet/web3-hooks-base' import { useContract } from '@masknet/web3-hooks-evm' diff --git a/packages/plugins/MaskBox/src/hooks/useMaskBoxQualificationContract.ts b/packages/plugins/MaskBox/src/hooks/useMaskBoxQualificationContract.ts index 1a4bf07ecbe..1a8dfecbb72 100644 --- a/packages/plugins/MaskBox/src/hooks/useMaskBoxQualificationContract.ts +++ b/packages/plugins/MaskBox/src/hooks/useMaskBoxQualificationContract.ts @@ -1,7 +1,7 @@ import type { AbiItem } from 'web3-utils' import type { ChainId } from '@masknet/web3-shared-evm' import type { MaskBoxQualification } from '@masknet/web3-contracts/types/MaskBoxQualification.js' -import MASK_BOX_QUALIFICATION_CONTRACT from '@masknet/web3-contracts/abis/MaskBoxQualification.json' +import MASK_BOX_QUALIFICATION_CONTRACT from '@masknet/web3-contracts/abis/MaskBoxQualification.json' with { type: 'json' } import { useContract } from '@masknet/web3-hooks-evm' export function useMaskBoxQualificationContract(chainId: ChainId, address?: string) { diff --git a/packages/plugins/MaskBox/src/locale/languages.ts b/packages/plugins/MaskBox/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/MaskBox/src/locale/languages.ts +++ b/packages/plugins/MaskBox/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/NextID/src/locale/languages.ts b/packages/plugins/NextID/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/NextID/src/locale/languages.ts +++ b/packages/plugins/NextID/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Pets/src/locale/languages.ts b/packages/plugins/Pets/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Pets/src/locale/languages.ts +++ b/packages/plugins/Pets/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/ProfileCard/src/SiteAdaptor/AvatarBadge/ProfileAvatarBadge.tsx b/packages/plugins/ProfileCard/src/SiteAdaptor/AvatarBadge/ProfileAvatarBadge.tsx index b563990a74e..ca137064728 100644 --- a/packages/plugins/ProfileCard/src/SiteAdaptor/AvatarBadge/ProfileAvatarBadge.tsx +++ b/packages/plugins/ProfileCard/src/SiteAdaptor/AvatarBadge/ProfileAvatarBadge.tsx @@ -22,11 +22,9 @@ export function ProfileAvatarBadge({ userId, address, className, ...rest }: Prop useEffect(() => { const button = buttonRef.current if (!button) return - let closeTimer: ReturnType let openTimer: ReturnType const enter = () => { clearTimeout(openTimer) - clearTimeout(closeTimer) openTimer = setTimeout(() => { CrossIsolationMessages.events.profileCardEvent.sendToLocal({ @@ -48,10 +46,8 @@ export function ProfileAvatarBadge({ userId, address, className, ...rest }: Prop // Other badges might want to open the profile card const unsubscribe = CrossIsolationMessages.events.profileCardEvent.on((event) => { if (!event.open) return - clearTimeout(closeTimer) }) return () => { - clearTimeout(closeTimer) clearTimeout(openTimer) button.removeEventListener('mouseenter', enter) button.removeEventListener('mouseleave', leave) diff --git a/packages/plugins/ProfileCard/src/locale/languages.ts b/packages/plugins/ProfileCard/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/ProfileCard/src/locale/languages.ts +++ b/packages/plugins/ProfileCard/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/RSS3/src/locale/languages.ts b/packages/plugins/RSS3/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/RSS3/src/locale/languages.ts +++ b/packages/plugins/RSS3/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/RSS3/src/locales/languages.ts b/packages/plugins/RSS3/src/locales/languages.ts index 0ba2b8aa2d1..a4f23137d3d 100644 --- a/packages/plugins/RSS3/src/locales/languages.ts +++ b/packages/plugins/RSS3/src/locales/languages.ts @@ -2,17 +2,17 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import qya_AA from './qya-AA.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' -import lingui_en_US from '../locale/en-US.json' -import lingui_ja_JP from '../locale/ja-JP.json' -import lingui_ko_KR from '../locale/ko-KR.json' -import lingui_zh_CN from '../locale/zh-CN.json' -import lingui_zh_TW from '../locale/zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import qya_AA from './qya-AA.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } +import lingui_en_US from '../locale/en-US.json' with { type: 'json' } +import lingui_ja_JP from '../locale/ja-JP.json' with { type: 'json' } +import lingui_ko_KR from '../locale/ko-KR.json' with { type: 'json' } +import lingui_zh_CN from '../locale/zh-CN.json' with { type: 'json' } +import lingui_zh_TW from '../locale/zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/helpers.ts b/packages/plugins/RedPacket/src/SiteAdaptor/helpers.ts index 5d2eb3adde9..4a840d5cfcb 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/helpers.ts +++ b/packages/plugins/RedPacket/src/SiteAdaptor/helpers.ts @@ -4,8 +4,8 @@ import type { RedPacketJSONPayload, RedPacketNftJSONPayload } from '@masknet/web import { ChainId } from '@masknet/web3-shared-evm' import { Ok, type Result } from 'ts-results-es' import { RedPacketMetaKey, RedPacketNftMetaKey } from '../constants.js' -import schemaNtf from '../schema-nft.json' -import schema from '../schema.json' +import schemaNtf from '../schema-nft.json' with { type: 'json' } +import schema from '../schema.json' with { type: 'json' } const reader = createTypedMessageMetadataReader(RedPacketMetaKey, schema) export function RedPacketMetadataReader( diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useCreateNftRedPacketReceipt.ts b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useCreateNftRedPacketReceipt.ts index d2eb8c3a0f8..9e54fe289f6 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useCreateNftRedPacketReceipt.ts +++ b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useCreateNftRedPacketReceipt.ts @@ -2,7 +2,7 @@ import { useAsyncRetry } from 'react-use' import type { AbiItem } from 'web3-utils' import type { NetworkPluginID } from '@masknet/shared-base' import { type ChainId, useNftRedPacketConstants, decodeEvents } from '@masknet/web3-shared-evm' -import NFT_REDPACKET_ABI from '@masknet/web3-contracts/abis/NftRedPacket.json' +import NFT_REDPACKET_ABI from '@masknet/web3-contracts/abis/NftRedPacket.json' with { type: 'json' } import { useChainContext } from '@masknet/web3-hooks-base' import { isSameAddress } from '@masknet/web3-shared-base' import { EVMWeb3 } from '@masknet/web3-providers' diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useNftRedPacketContract.ts b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useNftRedPacketContract.ts index af0557f1ddf..455686faa93 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useNftRedPacketContract.ts +++ b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useNftRedPacketContract.ts @@ -1,5 +1,5 @@ import type { AbiItem } from 'web3-utils' -import NftRedPacketABI from '@masknet/web3-contracts/abis/NftRedPacket.json' +import NftRedPacketABI from '@masknet/web3-contracts/abis/NftRedPacket.json' with { type: 'json' } import { type ChainId, useNftRedPacketConstants } from '@masknet/web3-shared-evm' import type { NftRedPacket } from '@masknet/web3-contracts/types/NftRedPacket.js' import { useContract } from '@masknet/web3-hooks-evm' diff --git a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useRedPacketContract.ts b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useRedPacketContract.ts index 82c142824ec..4d927133597 100644 --- a/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useRedPacketContract.ts +++ b/packages/plugins/RedPacket/src/SiteAdaptor/hooks/useRedPacketContract.ts @@ -1,8 +1,8 @@ import { useContract } from '@masknet/web3-hooks-evm' -import HappyRedPacketV1ABI from '@masknet/web3-contracts/abis/HappyRedPacketV1.json' -import HappyRedPacketV2ABI from '@masknet/web3-contracts/abis/HappyRedPacketV2.json' -import HappyRedPacketV3ABI from '@masknet/web3-contracts/abis/HappyRedPacketV3.json' -import HappyRedPacketV4ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' +import HappyRedPacketV1ABI from '@masknet/web3-contracts/abis/HappyRedPacketV1.json' with { type: 'json' } +import HappyRedPacketV2ABI from '@masknet/web3-contracts/abis/HappyRedPacketV2.json' with { type: 'json' } +import HappyRedPacketV3ABI from '@masknet/web3-contracts/abis/HappyRedPacketV3.json' with { type: 'json' } +import HappyRedPacketV4ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } import type { HappyRedPacketV1 } from '@masknet/web3-contracts/types/HappyRedPacketV1.js' import type { HappyRedPacketV2 } from '@masknet/web3-contracts/types/HappyRedPacketV2.js' import type { HappyRedPacketV3 } from '@masknet/web3-contracts/types/HappyRedPacketV3.js' diff --git a/packages/plugins/RedPacket/src/locale/languages.ts b/packages/plugins/RedPacket/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/RedPacket/src/locale/languages.ts +++ b/packages/plugins/RedPacket/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Savings/src/SiteAdaptor/SavingsDialog.tsx b/packages/plugins/Savings/src/SiteAdaptor/SavingsDialog.tsx index 265c10525be..e7f339baaca 100644 --- a/packages/plugins/Savings/src/SiteAdaptor/SavingsDialog.tsx +++ b/packages/plugins/Savings/src/SiteAdaptor/SavingsDialog.tsx @@ -17,7 +17,7 @@ import { ChainId, getAaveConstant } from '@masknet/web3-shared-evm' import { InjectedDialog, PluginWalletStatusBar, NetworkTab } from '@masknet/shared' import { EVMContract } from '@masknet/web3-providers' import type { AaveProtocolDataProvider } from '@masknet/web3-contracts/types/AaveProtocolDataProvider.js' -import AaveProtocolDataProviderABI from '@masknet/web3-contracts/abis/AaveProtocolDataProvider.json' +import AaveProtocolDataProviderABI from '@masknet/web3-contracts/abis/AaveProtocolDataProvider.json' with { type: 'json' } import { type SavingsProtocol, TabType, type TokenPair } from '../types.js' import { SavingsTable } from './SavingsTable/index.js' import { LidoProtocol } from '../protocols/LDOProtocol.js' diff --git a/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx b/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx index d1c86be5bbe..2aaa54a30f8 100644 --- a/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx +++ b/packages/plugins/Savings/src/SiteAdaptor/SavingsForm.tsx @@ -16,7 +16,7 @@ import { } from '@masknet/shared' import { NetworkPluginID, Sniffings } from '@masknet/shared-base' import { LoadingBase, makeStyles } from '@masknet/theme' -import AaveLendingPoolAddressProviderABI from '@masknet/web3-contracts/abis/AaveLendingPoolAddressProvider.json' +import AaveLendingPoolAddressProviderABI from '@masknet/web3-contracts/abis/AaveLendingPoolAddressProvider.json' with { type: 'json' } import type { AaveLendingPoolAddressProvider } from '@masknet/web3-contracts/types/AaveLendingPoolAddressProvider.js' import { useChainContext, diff --git a/packages/plugins/Savings/src/locale/languages.ts b/packages/plugins/Savings/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Savings/src/locale/languages.ts +++ b/packages/plugins/Savings/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Savings/src/protocols/AAVEProtocol.ts b/packages/plugins/Savings/src/protocols/AAVEProtocol.ts index 8d7b455be59..6ae823e981a 100644 --- a/packages/plugins/Savings/src/protocols/AAVEProtocol.ts +++ b/packages/plugins/Savings/src/protocols/AAVEProtocol.ts @@ -1,8 +1,8 @@ import type { AbiItem } from 'web3-utils' import { BigNumber } from 'bignumber.js' -import AaveLendingPoolABI from '@masknet/web3-contracts/abis/AaveLendingPool.json' -import AaveLendingPoolAddressProviderABI from '@masknet/web3-contracts/abis/AaveLendingPoolAddressProvider.json' -import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' +import AaveLendingPoolABI from '@masknet/web3-contracts/abis/AaveLendingPool.json' with { type: 'json' } +import AaveLendingPoolAddressProviderABI from '@masknet/web3-contracts/abis/AaveLendingPoolAddressProvider.json' with { type: 'json' } +import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' with { type: 'json' } import type { AaveLendingPool } from '@masknet/web3-contracts/types/AaveLendingPool.js' import type { AaveLendingPoolAddressProvider } from '@masknet/web3-contracts/types/AaveLendingPoolAddressProvider.js' import type { ERC20 } from '@masknet/web3-contracts/types/ERC20.js' diff --git a/packages/plugins/Savings/src/protocols/LDOProtocol.ts b/packages/plugins/Savings/src/protocols/LDOProtocol.ts index 644a1eae675..711c4c5832c 100644 --- a/packages/plugins/Savings/src/protocols/LDOProtocol.ts +++ b/packages/plugins/Savings/src/protocols/LDOProtocol.ts @@ -15,9 +15,9 @@ import type { LidoWithdraw } from '@masknet/web3-contracts/types/LidoWithdraw.js import type { LidoStETH } from '@masknet/web3-contracts/types/LidoStETH.js' import { EVMWeb3, Lido as LidoAPI } from '@masknet/web3-providers' -import LidoABI from '@masknet/web3-contracts/abis/Lido.json' -import LidoWithdrawABI from '@masknet/web3-contracts/abis/LidoWithdraw.json' -import LidoStEthABI from '@masknet/web3-contracts/abis/LidoStETH.json' +import LidoABI from '@masknet/web3-contracts/abis/Lido.json' with { type: 'json' } +import LidoWithdrawABI from '@masknet/web3-contracts/abis/LidoWithdraw.json' with { type: 'json' } +import LidoStEthABI from '@masknet/web3-contracts/abis/LidoStETH.json' with { type: 'json' } import { ProtocolType, type SavingsProtocol, type TokenPair } from '../types.js' const MAX_DEADLINE = BigInt('0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff') diff --git a/packages/plugins/ScamSniffer/src/locale/languages.ts b/packages/plugins/ScamSniffer/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/ScamSniffer/src/locale/languages.ts +++ b/packages/plugins/ScamSniffer/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/ScamWarning/src/locale/languages.ts b/packages/plugins/ScamWarning/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/ScamWarning/src/locale/languages.ts +++ b/packages/plugins/ScamWarning/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/SmartPay/src/locale/languages.ts b/packages/plugins/SmartPay/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/SmartPay/src/locale/languages.ts +++ b/packages/plugins/SmartPay/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Snapshot/src/locale/languages.ts b/packages/plugins/Snapshot/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Snapshot/src/locale/languages.ts +++ b/packages/plugins/Snapshot/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/SwitchLogo/src/locale/languages.ts b/packages/plugins/SwitchLogo/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/SwitchLogo/src/locale/languages.ts +++ b/packages/plugins/SwitchLogo/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Tips/src/locale/languages.ts b/packages/plugins/Tips/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Tips/src/locale/languages.ts +++ b/packages/plugins/Tips/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Trader/src/locale/languages.ts b/packages/plugins/Trader/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Trader/src/locale/languages.ts +++ b/packages/plugins/Trader/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Trader/tsconfig.json b/packages/plugins/Trader/tsconfig.json index 31f15c016e6..75539085f23 100644 --- a/packages/plugins/Trader/tsconfig.json +++ b/packages/plugins/Trader/tsconfig.json @@ -9,7 +9,7 @@ "references": [ { "path": "../Transak/tsconfig.json" }, { "path": "../GoPlusSecurity/tsconfig.json" }, - { "path": "../../plugin-infra/tsconfig.json" }, + { "path": "../../encryption/tsconfig.json" }, { "path": "../../plugin-infra/tsconfig.json" }, { "path": "../../shared-base/tsconfig.json" }, { "path": "../../shared/tsconfig.json" } diff --git a/packages/plugins/Transak/src/locale/languages.ts b/packages/plugins/Transak/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Transak/src/locale/languages.ts +++ b/packages/plugins/Transak/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/VCent/src/locale/languages.ts b/packages/plugins/VCent/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/VCent/src/locale/languages.ts +++ b/packages/plugins/VCent/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useFollow.ts b/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useFollow.ts index fbdf2772089..89f2108f767 100644 --- a/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useFollow.ts +++ b/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useFollow.ts @@ -5,7 +5,7 @@ import { useChainContext } from '@masknet/web3-hooks-base' import { useContract } from '@masknet/web3-hooks-evm' import { EVMWeb3, Lens } from '@masknet/web3-providers' import { ChainId, ContractTransaction, splitSignature, useLensConstants } from '@masknet/web3-shared-evm' -import LensHubABI from '@masknet/web3-contracts/abis/LensHub.json' +import LensHubABI from '@masknet/web3-contracts/abis/LensHub.json' with { type: 'json' } import type { LensHub } from '@masknet/web3-contracts/types/LensHub.js' import type { NetworkPluginID } from '@masknet/shared-base' import { BroadcastType, type FollowModuleTypedData } from '@masknet/web3-providers/types' diff --git a/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useUnfollow.ts b/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useUnfollow.ts index 83880da1412..686a34967d0 100644 --- a/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useUnfollow.ts +++ b/packages/plugins/Web3Profile/src/SiteAdaptor/hooks/Lens/useUnfollow.ts @@ -1,7 +1,7 @@ import { fetchJSON } from '@masknet/plugin-infra/dom/context' import type { NetworkPluginID } from '@masknet/shared-base' import { useCustomSnackbar, type ShowSnackbarOptions, type SnackbarKey, type SnackbarMessage } from '@masknet/theme' -import LensHubABI from '@masknet/web3-contracts/abis/LensHub.json' +import LensHubABI from '@masknet/web3-contracts/abis/LensHub.json' with { type: 'json' } import type { LensHub } from '@masknet/web3-contracts/types/LensHub.js' import { useChainContext } from '@masknet/web3-hooks-base' import { useContract } from '@masknet/web3-hooks-evm' diff --git a/packages/plugins/Web3Profile/src/locale/languages.ts b/packages/plugins/Web3Profile/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/Web3Profile/src/locale/languages.ts +++ b/packages/plugins/Web3Profile/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/plugins/template/src/locale/languages.ts b/packages/plugins/template/src/locale/languages.ts index 28022236e28..783646a15ac 100644 --- a/packages/plugins/template/src/locale/languages.ts +++ b/packages/plugins/template/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/scripts/src/locale-kit-next/index.ts b/packages/scripts/src/locale-kit-next/index.ts index e7c7fa61434..32bff65c9fc 100644 --- a/packages/scripts/src/locale-kit-next/index.ts +++ b/packages/scripts/src/locale-kit-next/index.ts @@ -27,7 +27,7 @@ export async function syncLanguages() { { let code = header for (const [language] of languages) { - code += `import ${language.replace('-', '_')} from './${language}.json'\n` + code += `import ${language.replace('-', '_')} from './${language}.json' with { type: 'json' }\n` } code += `export const languages = {\n` for (const [language, familyName] of languages) { @@ -91,10 +91,10 @@ export async function syncLanguages() { { let code = header for (const [language] of languages) { - code += `import ${language.replace('-', '_')} from './${language}.json'\n` + code += `import ${language.replace('-', '_')} from './${language}.json' with { type: 'json' }\n` } for (const [language] of linguiLanguages) { - code += `import lingui_${language.replace('-', '_')} from '${relativeToInput}/${language}.json'\n` + code += `import lingui_${language.replace('-', '_')} from '${relativeToInput}/${language}.json' with { type: 'json' }\n` } code += `export const languages = {\n` for (const [language, familyName] of languages) { diff --git a/packages/shared-base-ui/src/locale/languages.ts b/packages/shared-base-ui/src/locale/languages.ts index bca96b50ce3..188887e7a59 100644 --- a/packages/shared-base-ui/src/locale/languages.ts +++ b/packages/shared-base-ui/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/shared/src/locale/languages.ts b/packages/shared/src/locale/languages.ts index bca96b50ce3..188887e7a59 100644 --- a/packages/shared/src/locale/languages.ts +++ b/packages/shared/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/shared/src/locales/languages.ts b/packages/shared/src/locales/languages.ts index 36b3df5663e..f5efbfdd9c3 100644 --- a/packages/shared/src/locales/languages.ts +++ b/packages/shared/src/locales/languages.ts @@ -2,17 +2,17 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import qya_AA from './qya-AA.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' -import lingui_en_US from '../locale/en-US.json' -import lingui_ja_JP from '../locale/ja-JP.json' -import lingui_ko_KR from '../locale/ko-KR.json' -import lingui_zh_CN from '../locale/zh-CN.json' -import lingui_zh_TW from '../locale/zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import qya_AA from './qya-AA.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } +import lingui_en_US from '../locale/en-US.json' with { type: 'json' } +import lingui_ja_JP from '../locale/ja-JP.json' with { type: 'json' } +import lingui_ko_KR from '../locale/ko-KR.json' with { type: 'json' } +import lingui_zh_CN from '../locale/zh-CN.json' with { type: 'json' } +import lingui_zh_TW from '../locale/zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/theme/src/locale/languages.ts b/packages/theme/src/locale/languages.ts index bca96b50ce3..188887e7a59 100644 --- a/packages/theme/src/locale/languages.ts +++ b/packages/theme/src/locale/languages.ts @@ -2,11 +2,11 @@ // Run `npx gulp sync-languages` to regenerate. // Default fallback language in a family of languages are chosen by the alphabet order // To overwrite this, please overwrite packages/scripts/src/locale-kit-next/index.ts -import en_US from './en-US.json' -import ja_JP from './ja-JP.json' -import ko_KR from './ko-KR.json' -import zh_CN from './zh-CN.json' -import zh_TW from './zh-TW.json' +import en_US from './en-US.json' with { type: 'json' } +import ja_JP from './ja-JP.json' with { type: 'json' } +import ko_KR from './ko-KR.json' with { type: 'json' } +import zh_CN from './zh-CN.json' with { type: 'json' } +import zh_TW from './zh-TW.json' with { type: 'json' } export const languages = { en: en_US, ja: ja_JP, diff --git a/packages/web3-hooks/evm/src/useERC20TokenContract.ts b/packages/web3-hooks/evm/src/useERC20TokenContract.ts index d74c26bbafb..e34c4aec220 100644 --- a/packages/web3-hooks/evm/src/useERC20TokenContract.ts +++ b/packages/web3-hooks/evm/src/useERC20TokenContract.ts @@ -1,6 +1,6 @@ import type { AbiItem } from 'web3-utils' import { EMPTY_LIST } from '@masknet/shared-base' -import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' +import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' with { type: 'json' } import type { ERC20 } from '@masknet/web3-contracts/types/ERC20.js' import type { ChainId } from '@masknet/web3-shared-evm' import { useContract, useContracts } from './useContract.js' diff --git a/packages/web3-hooks/evm/src/useERC721TokenContract.ts b/packages/web3-hooks/evm/src/useERC721TokenContract.ts index af336322b70..de61ed1285e 100644 --- a/packages/web3-hooks/evm/src/useERC721TokenContract.ts +++ b/packages/web3-hooks/evm/src/useERC721TokenContract.ts @@ -1,5 +1,5 @@ import type { AbiItem } from 'web3-utils' -import ERC721ABI from '@masknet/web3-contracts/abis/ERC721.json' +import ERC721ABI from '@masknet/web3-contracts/abis/ERC721.json' with { type: 'json' } import type { ERC721 } from '@masknet/web3-contracts/types/ERC721.js' import type { ChainId } from '@masknet/web3-shared-evm' import { useContract } from './useContract.js' diff --git a/packages/web3-hooks/evm/src/useWrappedEtherContract.ts b/packages/web3-hooks/evm/src/useWrappedEtherContract.ts index 5b000526010..dc7960cd47b 100644 --- a/packages/web3-hooks/evm/src/useWrappedEtherContract.ts +++ b/packages/web3-hooks/evm/src/useWrappedEtherContract.ts @@ -1,5 +1,5 @@ import type { AbiItem } from 'web3-utils' -import WETH_ABI from '@masknet/web3-contracts/abis/WETH.json' +import WETH_ABI from '@masknet/web3-contracts/abis/WETH.json' with { type: 'json' } import type { WETH } from '@masknet/web3-contracts/types/WETH.js' import { type ChainId, useTokenConstants } from '@masknet/web3-shared-evm' import { useContract } from './useContract.js' diff --git a/packages/web3-hooks/evm/tsconfig.json b/packages/web3-hooks/evm/tsconfig.json index fc8e0d8d7de..64d635c2c7d 100644 --- a/packages/web3-hooks/evm/tsconfig.json +++ b/packages/web3-hooks/evm/tsconfig.json @@ -12,6 +12,7 @@ { "path": "../../web3-hooks/base/tsconfig.json" }, { "path": "../../web3-shared/base/tsconfig.json" }, { "path": "../../web3-shared/evm/tsconfig.json" }, + { "path": "../../web3-providers/tsconfig.json" }, { "path": "../../shared-base/tsconfig.json" } ] } diff --git a/packages/web3-providers/src/Cloudflare/index.ts b/packages/web3-providers/src/Cloudflare/index.ts index 722544edd45..025e178fd98 100644 --- a/packages/web3-providers/src/Cloudflare/index.ts +++ b/packages/web3-providers/src/Cloudflare/index.ts @@ -6,7 +6,7 @@ import { getTokenAssetBaseURLConstants, isNativeTokenAddress, } from '@masknet/web3-shared-evm' -import SPECIAL_ICON_LIST from './TokenIconSpecialIconList.json' +import SPECIAL_ICON_LIST from './TokenIconSpecialIconList.json' with { type: 'json' } import type { TokenIconAPI } from '../entry-types.js' class CloudflareAPI implements TokenIconAPI.Provider { diff --git a/packages/web3-providers/src/CoinGecko/constants.ts b/packages/web3-providers/src/CoinGecko/constants.ts index e0d1f2a13e5..4a947cbbe26 100644 --- a/packages/web3-providers/src/CoinGecko/constants.ts +++ b/packages/web3-providers/src/CoinGecko/constants.ts @@ -1,5 +1,5 @@ import { ChainId } from '@masknet/web3-shared-evm' -import Coingecko from '@masknet/web3-constants/evm/coingecko.json' +import Coingecko from '@masknet/web3-constants/evm/coingecko.json' with { type: 'json' } export const COINGECKO_URL_BASE = 'https://coingecko-agent.r2d2.to/api/v3' export const COINGECKO_CHAIN_ID_LIST = [ diff --git a/packages/web3-providers/src/NextID/proof.ts b/packages/web3-providers/src/NextID/proof.ts index 542c024144c..f636de0d12e 100644 --- a/packages/web3-providers/src/NextID/proof.ts +++ b/packages/web3-providers/src/NextID/proof.ts @@ -18,7 +18,7 @@ import { } from '@masknet/shared-base' import { PROOF_BASE_URL_DEV, PROOF_BASE_URL_PROD, RELATION_SERVICE_URL } from './constants.js' import { staleNextIDCached } from './helpers.js' -import PRESET_LENS from './preset-lens.json' +import PRESET_LENS from './preset-lens.json' with { type: 'json' } import { fetchJSON, fetchSquashedJSON } from '../helpers/fetchJSON.js' import type { NextIDBaseAPI } from '../entry-types.js' import { Expiration, stableSquashedCached } from '../entry-helpers.js' diff --git a/packages/web3-providers/src/RedPacket/api.ts b/packages/web3-providers/src/RedPacket/api.ts index 55580d89c44..efe48588b89 100644 --- a/packages/web3-providers/src/RedPacket/api.ts +++ b/packages/web3-providers/src/RedPacket/api.ts @@ -1,7 +1,7 @@ import { secondsToMilliseconds } from 'date-fns' import { abiCoder, type ChainId, type SchemaType } from '@masknet/web3-shared-evm' import { isSameAddress } from '@masknet/web3-shared-base' -import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' +import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } import { EVMChainResolver } from '../Web3/EVM/apis/ResolverAPI.js' import { EVMWeb3Readonly } from '../Web3/EVM/apis/ConnectionReadonlyAPI.js' import type { RedPacketJSONPayloadFromChain } from './types.js' diff --git a/packages/web3-providers/src/RedPacket/index.ts b/packages/web3-providers/src/RedPacket/index.ts index 302a18721c3..a1bec543690 100644 --- a/packages/web3-providers/src/RedPacket/index.ts +++ b/packages/web3-providers/src/RedPacket/index.ts @@ -4,8 +4,8 @@ import type { AbiItem } from 'web3-utils' import { createIndicator, createPageable, type PageIndicator, type Pageable } from '@masknet/shared-base' import { type Transaction, attemptUntil, type NonFungibleCollection } from '@masknet/web3-shared-base' import { decodeFunctionParams, type ChainId, type SchemaType } from '@masknet/web3-shared-evm' -import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' -import NFT_REDPACKET_ABI from '@masknet/web3-contracts/abis/NftRedPacket.json' +import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } +import NFT_REDPACKET_ABI from '@masknet/web3-contracts/abis/NftRedPacket.json' with { type: 'json' } import { DSEARCH_BASE_URL } from '../DSearch/constants.js' import { fetchFromDSearch } from '../DSearch/helpers.js' import { ChainbaseRedPacketAPI } from '../Chainbase/index.js' diff --git a/packages/web3-providers/src/SmartPay/libs/ContractWallet.ts b/packages/web3-providers/src/SmartPay/libs/ContractWallet.ts index 15da260d787..9881a287e8d 100644 --- a/packages/web3-providers/src/SmartPay/libs/ContractWallet.ts +++ b/packages/web3-providers/src/SmartPay/libs/ContractWallet.ts @@ -8,8 +8,8 @@ import { Web3, } from '@masknet/web3-shared-evm' import type { WalletProxy } from '@masknet/web3-contracts/types/WalletProxy.js' -import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' -import WalletProxyABI from '@masknet/web3-contracts/abis/WalletProxy.json' +import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' with { type: 'json' } +import WalletProxyABI from '@masknet/web3-contracts/abis/WalletProxy.json' with { type: 'json' } import { WalletProxyByteCode } from '@masknet/web3-contracts/bytes/WalletProxy.mjs' export class ContractWallet { diff --git a/packages/web3-providers/src/SmartPay/libs/DepositPaymaster.ts b/packages/web3-providers/src/SmartPay/libs/DepositPaymaster.ts index 05e804a6cd4..3d513f1b1c2 100644 --- a/packages/web3-providers/src/SmartPay/libs/DepositPaymaster.ts +++ b/packages/web3-providers/src/SmartPay/libs/DepositPaymaster.ts @@ -1,7 +1,7 @@ import type { AbiItem } from 'web3-utils' import { BigNumber } from 'bignumber.js' import { type ChainId, createContract, getSmartPayConstants, ProviderURL } from '@masknet/web3-shared-evm' -import DepositPaymasterABI from '@masknet/web3-contracts/abis/DepositPaymaster.json' +import DepositPaymasterABI from '@masknet/web3-contracts/abis/DepositPaymaster.json' with { type: 'json' } import type { DepositPaymaster as DepositPaymasterType } from '@masknet/web3-contracts/types/DepositPaymaster.js' import { createWeb3FromURL } from '../../helpers/createWeb3FromURL.js' diff --git a/packages/web3-providers/src/SmartPay/libs/UserTransaction.ts b/packages/web3-providers/src/SmartPay/libs/UserTransaction.ts index 0053c5086e3..6e2d274797d 100644 --- a/packages/web3-providers/src/SmartPay/libs/UserTransaction.ts +++ b/packages/web3-providers/src/SmartPay/libs/UserTransaction.ts @@ -3,8 +3,8 @@ import * as web3_utils from /* webpackDefer: true */ 'web3-utils' import type { AbiItem } from 'web3-utils' import type { ECKeyIdentifier } from '@masknet/shared-base' import { isGreaterThan, multipliedBy, toFixed } from '@masknet/web3-shared-base' -import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' -import EntryPointABI from '@masknet/web3-contracts/abis/EntryPoint.json' +import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' with { type: 'json' } +import EntryPointABI from '@masknet/web3-contracts/abis/EntryPoint.json' with { type: 'json' } import type { Wallet } from '@masknet/web3-contracts/types/Wallet.js' import type { EntryPoint } from '@masknet/web3-contracts/types/EntryPoint.js' import { diff --git a/packages/web3-providers/src/Trending/helpers.ts b/packages/web3-providers/src/Trending/helpers.ts index a887a7c4bdb..451d8a01ca8 100644 --- a/packages/web3-providers/src/Trending/helpers.ts +++ b/packages/web3-providers/src/Trending/helpers.ts @@ -1,7 +1,7 @@ import type { Web3Helper } from '@masknet/web3-helpers' import { SourceType } from '@masknet/web3-shared-base' import { CURRENCIES_MAP } from './constants.js' -import MIRRORED_TOKENS from './mirrored_tokens.json' +import MIRRORED_TOKENS from './mirrored_tokens.json' with { type: 'json' } import type { TrendingAPI } from '../entry-types.js' export function isMirroredKeyword(symbol: string) { diff --git a/packages/web3-providers/src/Web3/EVM/apis/ContractReadonlyAPI.ts b/packages/web3-providers/src/Web3/EVM/apis/ContractReadonlyAPI.ts index 46801e3ab54..85de1182e17 100644 --- a/packages/web3-providers/src/Web3/EVM/apis/ContractReadonlyAPI.ts +++ b/packages/web3-providers/src/Web3/EVM/apis/ContractReadonlyAPI.ts @@ -1,7 +1,7 @@ import type { AbiItem } from 'web3-utils' import { isUndefined, omitBy } from 'lodash-es' import { createContract } from '@masknet/web3-shared-evm' -import AirDropV2ABI from '@masknet/web3-contracts/abis/AirdropV2.json' +import AirDropV2ABI from '@masknet/web3-contracts/abis/AirdropV2.json' with { type: 'json' } import type { BalanceChecker } from '@masknet/web3-contracts/types/BalanceChecker.js' import type { ERC20 } from '@masknet/web3-contracts/types/ERC20.js' import type { ERC20Bytes32 } from '@masknet/web3-contracts/types/ERC20Bytes32.js' @@ -17,18 +17,18 @@ import type { WETH } from '@masknet/web3-contracts/types/WETH.js' import type { PoolStateV3 } from '@masknet/web3-contracts/types/PoolStateV3.js' import type { FriendTech } from '@masknet/web3-contracts/types/FriendTech.js' -import BalanceCheckerABI from '@masknet/web3-contracts/abis/BalanceChecker.json' -import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' -import ERC20Bytes32ABI from '@masknet/web3-contracts/abis/ERC20Bytes32.json' -import ERC165ABI from '@masknet/web3-contracts/abis/ERC165.json' -import ERC721ABI from '@masknet/web3-contracts/abis/ERC721.json' -import ERC1155ABI from '@masknet/web3-contracts/abis/ERC1155.json' -import CryptoPunksABI from '@masknet/web3-contracts/abis/CryptoPunks.json' -import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' -import MulticallABI from '@masknet/web3-contracts/abis/Multicall.json' -import WETH_ABI from '@masknet/web3-contracts/abis/WETH.json' -import PoolStateV3ABI from '@masknet/web3-contracts/abis/PoolStateV3.json' -import FriendTechABI from '@masknet/web3-contracts/abis/FriendTech.json' +import BalanceCheckerABI from '@masknet/web3-contracts/abis/BalanceChecker.json' with { type: 'json' } +import ERC20ABI from '@masknet/web3-contracts/abis/ERC20.json' with { type: 'json' } +import ERC20Bytes32ABI from '@masknet/web3-contracts/abis/ERC20Bytes32.json' with { type: 'json' } +import ERC165ABI from '@masknet/web3-contracts/abis/ERC165.json' with { type: 'json' } +import ERC721ABI from '@masknet/web3-contracts/abis/ERC721.json' with { type: 'json' } +import ERC1155ABI from '@masknet/web3-contracts/abis/ERC1155.json' with { type: 'json' } +import CryptoPunksABI from '@masknet/web3-contracts/abis/CryptoPunks.json' with { type: 'json' } +import WalletABI from '@masknet/web3-contracts/abis/Wallet.json' with { type: 'json' } +import MulticallABI from '@masknet/web3-contracts/abis/Multicall.json' with { type: 'json' } +import WETH_ABI from '@masknet/web3-contracts/abis/WETH.json' with { type: 'json' } +import PoolStateV3ABI from '@masknet/web3-contracts/abis/PoolStateV3.json' with { type: 'json' } +import FriendTechABI from '@masknet/web3-contracts/abis/FriendTech.json' with { type: 'json' } import { EVMRequestReadonlyAPI } from './RequestReadonlyAPI.js' import type { EVMConnectionOptions } from '../types/index.js' diff --git a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/abi.ts b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/abi.ts index c1b8f74bb62..238206d38fa 100644 --- a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/abi.ts +++ b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/abi.ts @@ -4,21 +4,21 @@ import { abiCoder } from '@masknet/web3-shared-evm' import type { TransactionMethodABI } from './types.js' // built-in abis -import BulkCheckout from '@masknet/web3-contracts/abis/BulkCheckout.json' -import NftRedPacket from '@masknet/web3-contracts/abis/NftRedPacket.json' -import HappyRedPacketV4 from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' -import ERC20 from '@masknet/web3-contracts/abis/ERC20.json' -import ERC721 from '@masknet/web3-contracts/abis/ERC721.json' -import MaskBox from '@masknet/web3-contracts/abis/MaskBox.json' -import WETH from '@masknet/web3-contracts/abis/WETH.json' -import Lido from '@masknet/web3-contracts/abis/Lido.json' -import AaveLendingPool from '@masknet/web3-contracts/abis/AaveLendingPool.json' -import SmartPayEntryPoint from '@masknet/web3-contracts/abis/SmartPayEntryPoint.json' -import WalletContract from '@masknet/web3-contracts/abis/Wallet.json' -import Create2Factory from '@masknet/web3-contracts/abis/Create2Factory.json' -import LensHub from '@masknet/web3-contracts/abis/LensHub.json' -import LensFollowNFT from '@masknet/web3-contracts/abis/LensFollowNFT.json' -import Airdrop from '@masknet/web3-contracts/abis/AirdropV2.json' +import BulkCheckout from '@masknet/web3-contracts/abis/BulkCheckout.json' with { type: 'json' } +import NftRedPacket from '@masknet/web3-contracts/abis/NftRedPacket.json' with { type: 'json' } +import HappyRedPacketV4 from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } +import ERC20 from '@masknet/web3-contracts/abis/ERC20.json' with { type: 'json' } +import ERC721 from '@masknet/web3-contracts/abis/ERC721.json' with { type: 'json' } +import MaskBox from '@masknet/web3-contracts/abis/MaskBox.json' with { type: 'json' } +import WETH from '@masknet/web3-contracts/abis/WETH.json' with { type: 'json' } +import Lido from '@masknet/web3-contracts/abis/Lido.json' with { type: 'json' } +import AaveLendingPool from '@masknet/web3-contracts/abis/AaveLendingPool.json' with { type: 'json' } +import SmartPayEntryPoint from '@masknet/web3-contracts/abis/SmartPayEntryPoint.json' with { type: 'json' } +import WalletContract from '@masknet/web3-contracts/abis/Wallet.json' with { type: 'json' } +import Create2Factory from '@masknet/web3-contracts/abis/Create2Factory.json' with { type: 'json' } +import LensHub from '@masknet/web3-contracts/abis/LensHub.json' with { type: 'json' } +import LensFollowNFT from '@masknet/web3-contracts/abis/LensFollowNFT.json' with { type: 'json' } +import Airdrop from '@masknet/web3-contracts/abis/AirdropV2.json' with { type: 'json' } class ABI { private abis: Map = new Map() diff --git a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/MaskBox.ts b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/MaskBox.ts index 253423adfc3..60c04c4c770 100644 --- a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/MaskBox.ts +++ b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/MaskBox.ts @@ -1,7 +1,7 @@ import type { AbiItem } from 'web3-utils' import { type TransactionContext, isSameAddress } from '@masknet/web3-shared-base' import { type ChainId, getMaskBoxConstants, type TransactionParameter } from '@masknet/web3-shared-evm' -import MaskBox_ABI from '@masknet/web3-contracts/abis/MaskBox.json' +import MaskBox_ABI from '@masknet/web3-contracts/abis/MaskBox.json' with { type: 'json' } import type { TransactionDescriptorFormatResult } from '../types.js' import { DescriptorWithTransactionDecodedReceipt, getTokenAmountDescription } from '../utils.js' diff --git a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/RedPacket.ts b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/RedPacket.ts index e0988106f9c..c965e050060 100644 --- a/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/RedPacket.ts +++ b/packages/web3-providers/src/Web3/EVM/state/TransactionFormatter/descriptors/RedPacket.ts @@ -5,8 +5,8 @@ import { getRedPacketConstants, type TransactionParameter, } from '@masknet/web3-shared-evm' -import HappyRedPacketV4ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' -import NftRedPacketABI from '@masknet/web3-contracts/abis/NftRedPacket.json' +import HappyRedPacketV4ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } +import NftRedPacketABI from '@masknet/web3-contracts/abis/NftRedPacket.json' with { type: 'json' } import { isSameAddress, type TransactionContext } from '@masknet/web3-shared-base' import type { TransactionDescriptorFormatResult } from '../types.js' import { DescriptorWithTransactionDecodedReceipt, getTokenAmountDescription } from '../utils.js' diff --git a/packages/web3-shared/evm/src/constants/constants.ts b/packages/web3-shared/evm/src/constants/constants.ts index 124f0fd559b..e39e99678a6 100644 --- a/packages/web3-shared/evm/src/constants/constants.ts +++ b/packages/web3-shared/evm/src/constants/constants.ts @@ -1,30 +1,30 @@ -import Aave from '@masknet/web3-constants/evm/aave.json' -import Airdrop from '@masknet/web3-constants/evm/airdrop.json' -import Arb from '@masknet/web3-constants/evm/arb.json' -import ArtBlocks from '@masknet/web3-constants/evm/artblocks.json' -import CoinGecko from '@masknet/web3-constants/evm/coingecko.json' -import CryptoPunks from '@masknet/web3-constants/evm/cryptopunks.json' -import DeBank from '@masknet/web3-constants/evm/debank.json' -import ENS from '@masknet/web3-constants/evm/ens.json' -import Ethereum from '@masknet/web3-constants/evm/ethereum.json' -import Etherscan from '@masknet/web3-constants/evm/etherscan.json' -import Gitcoin from '@masknet/web3-constants/evm/gitcoin.json' -import GoPlusLabs from '@masknet/web3-constants/evm/gopluslabs.json' -import LensProfile from '@masknet/web3-constants/evm/lens-profile.json' -import Lens from '@masknet/web3-constants/evm/lens.json' -import Lido from '@masknet/web3-constants/evm/lido.json' -import MaskBox from '@masknet/web3-constants/evm/mask-box.json' -import NftRedPacket from '@masknet/web3-constants/evm/nft-red-packet.json' -import OpenOcean from '@masknet/web3-constants/evm/openocean.json' -import Pet from '@masknet/web3-constants/evm/pet.json' -import RedPacket from '@masknet/web3-constants/evm/red-packet.json' -import BUILTIN_RPC from '@masknet/web3-constants/evm/rpc.json' -import SmartPay from '@masknet/web3-constants/evm/smart-pay.json' -import SpaceId from '@masknet/web3-constants/evm/space-id.json' -import TokenAssetBaseURL from '@masknet/web3-constants/evm/token-asset-base-url.json' -import TokenList from '@masknet/web3-constants/evm/token-list.json' -import Token from '@masknet/web3-constants/evm/token.json' -import Trending from '@masknet/web3-constants/evm/trending.json' +import Aave from '@masknet/web3-constants/evm/aave.json' with { type: 'json' } +import Airdrop from '@masknet/web3-constants/evm/airdrop.json' with { type: 'json' } +import Arb from '@masknet/web3-constants/evm/arb.json' with { type: 'json' } +import ArtBlocks from '@masknet/web3-constants/evm/artblocks.json' with { type: 'json' } +import CoinGecko from '@masknet/web3-constants/evm/coingecko.json' with { type: 'json' } +import CryptoPunks from '@masknet/web3-constants/evm/cryptopunks.json' with { type: 'json' } +import DeBank from '@masknet/web3-constants/evm/debank.json' with { type: 'json' } +import ENS from '@masknet/web3-constants/evm/ens.json' with { type: 'json' } +import Ethereum from '@masknet/web3-constants/evm/ethereum.json' with { type: 'json' } +import Etherscan from '@masknet/web3-constants/evm/etherscan.json' with { type: 'json' } +import Gitcoin from '@masknet/web3-constants/evm/gitcoin.json' with { type: 'json' } +import GoPlusLabs from '@masknet/web3-constants/evm/gopluslabs.json' with { type: 'json' } +import LensProfile from '@masknet/web3-constants/evm/lens-profile.json' with { type: 'json' } +import Lens from '@masknet/web3-constants/evm/lens.json' with { type: 'json' } +import Lido from '@masknet/web3-constants/evm/lido.json' with { type: 'json' } +import MaskBox from '@masknet/web3-constants/evm/mask-box.json' with { type: 'json' } +import NftRedPacket from '@masknet/web3-constants/evm/nft-red-packet.json' with { type: 'json' } +import OpenOcean from '@masknet/web3-constants/evm/openocean.json' with { type: 'json' } +import Pet from '@masknet/web3-constants/evm/pet.json' with { type: 'json' } +import RedPacket from '@masknet/web3-constants/evm/red-packet.json' with { type: 'json' } +import BUILTIN_RPC from '@masknet/web3-constants/evm/rpc.json' with { type: 'json' } +import SmartPay from '@masknet/web3-constants/evm/smart-pay.json' with { type: 'json' } +import SpaceId from '@masknet/web3-constants/evm/space-id.json' with { type: 'json' } +import TokenAssetBaseURL from '@masknet/web3-constants/evm/token-asset-base-url.json' with { type: 'json' } +import TokenList from '@masknet/web3-constants/evm/token-list.json' with { type: 'json' } +import Token from '@masknet/web3-constants/evm/token.json' with { type: 'json' } +import Trending from '@masknet/web3-constants/evm/trending.json' with { type: 'json' } import { getEnumAsArray } from '@masknet/kit' import { transform, transformAll, transformAllHook, transformHook } from '@masknet/web3-shared-base' diff --git a/packages/web3-shared/evm/src/constants/descriptors.ts b/packages/web3-shared/evm/src/constants/descriptors.ts index 9a2be4cdcd3..a4dbdcdfc6e 100644 --- a/packages/web3-shared/evm/src/constants/descriptors.ts +++ b/packages/web3-shared/evm/src/constants/descriptors.ts @@ -13,7 +13,7 @@ import { NetworkPluginID, Sniffings, } from '@masknet/shared-base' -import CHAINS from './chains.json' +import CHAINS from './chains.json' with { type: 'json' } import { ChainId, NetworkType, ProviderType, SchemaType } from '../types/index.js' import { ChainIdList, getTokenConstant } from './constants.js' import { ZERO_ADDRESS } from './primitives.js' diff --git a/packages/web3-shared/evm/src/helpers/getContractOwnerDomain.ts b/packages/web3-shared/evm/src/helpers/getContractOwnerDomain.ts index 42db52fca4d..a1595c8edf7 100644 --- a/packages/web3-shared/evm/src/helpers/getContractOwnerDomain.ts +++ b/packages/web3-shared/evm/src/helpers/getContractOwnerDomain.ts @@ -1,11 +1,11 @@ import { filter, flatten, pick, uniq, values } from 'lodash-es' -import Aave from '@masknet/web3-constants/evm/aave.json' -import ArtBlocks from '@masknet/web3-constants/evm/artblocks.json' -import Gitcoin from '@masknet/web3-constants/evm/gitcoin.json' -import Lido from '@masknet/web3-constants/evm/lido.json' -import MaskBox from '@masknet/web3-constants/evm/mask-box.json' -import NftRedPacket from '@masknet/web3-constants/evm/nft-red-packet.json' -import RedPacket from '@masknet/web3-constants/evm/red-packet.json' +import Aave from '@masknet/web3-constants/evm/aave.json' with { type: 'json' } +import ArtBlocks from '@masknet/web3-constants/evm/artblocks.json' with { type: 'json' } +import Gitcoin from '@masknet/web3-constants/evm/gitcoin.json' with { type: 'json' } +import Lido from '@masknet/web3-constants/evm/lido.json' with { type: 'json' } +import MaskBox from '@masknet/web3-constants/evm/mask-box.json' with { type: 'json' } +import NftRedPacket from '@masknet/web3-constants/evm/nft-red-packet.json' with { type: 'json' } +import RedPacket from '@masknet/web3-constants/evm/red-packet.json' with { type: 'json' } const collect = >>( data: T, diff --git a/packages/web3-shared/evm/src/helpers/token.ts b/packages/web3-shared/evm/src/helpers/token.ts index 755696809d1..453df243a6b 100644 --- a/packages/web3-shared/evm/src/helpers/token.ts +++ b/packages/web3-shared/evm/src/helpers/token.ts @@ -1,6 +1,6 @@ import { getEnumAsArray } from '@masknet/kit' import { createFungibleToken, createFungibleTokensFromConstants } from '@masknet/web3-shared-base' -import Token from '@masknet/web3-constants/evm/token.json' +import Token from '@masknet/web3-constants/evm/token.json' with { type: 'json' } import { CHAIN_DESCRIPTORS } from '../constants/index.js' import { ChainId, SchemaType } from '../types/index.js' diff --git a/packages/web3-shared/evm/src/libs/PayloadEditor.ts b/packages/web3-shared/evm/src/libs/PayloadEditor.ts index 4f6049b591a..e2917149134 100644 --- a/packages/web3-shared/evm/src/libs/PayloadEditor.ts +++ b/packages/web3-shared/evm/src/libs/PayloadEditor.ts @@ -3,7 +3,7 @@ import * as web3_utils from /* webpackDefer: true */ 'web3-utils' import type { AbiItem } from 'web3-utils' import type { JsonRpcPayload } from 'web3-core-helpers' import type { Wallet, ECKeyIdentifier, Proof, ProofPayload } from '@masknet/shared-base' -import CREATE2_FACTORY_ABI from '@masknet/web3-contracts/abis/Create2Factory.json' +import CREATE2_FACTORY_ABI from '@masknet/web3-contracts/abis/Create2Factory.json' with { type: 'json' } import { isValidChainId } from '../helpers/isValidChainId.js' import { formatEthereumAddress } from '../helpers/formatter.js' import { parseChainId } from '../helpers/parseChainId.js' diff --git a/packages/web3-shared/evm/tests/helpers/decodeEvents.ts b/packages/web3-shared/evm/tests/helpers/decodeEvents.ts index 2f1457faa5b..5d4687d9d4b 100644 --- a/packages/web3-shared/evm/tests/helpers/decodeEvents.ts +++ b/packages/web3-shared/evm/tests/helpers/decodeEvents.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest' -import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' +import REDPACKET_ABI from '@masknet/web3-contracts/abis/HappyRedPacketV4.json' with { type: 'json' } import { decodeEvents } from '../../src/helpers/decodeEvents.js' import type { AbiItem } from 'web3-utils' import { type Log } from 'web3-core' diff --git a/packages/web3-shared/flow/src/constants/constants.ts b/packages/web3-shared/flow/src/constants/constants.ts index e87ce49630d..44c74f9f7c0 100644 --- a/packages/web3-shared/flow/src/constants/constants.ts +++ b/packages/web3-shared/flow/src/constants/constants.ts @@ -1,7 +1,7 @@ import { getEnumAsArray } from '@masknet/kit' -import Auth from '@masknet/web3-constants/flow/auth.json' -import Chain from '@masknet/web3-constants/flow/chain.json' -import Token from '@masknet/web3-constants/flow/token.json' +import Auth from '@masknet/web3-constants/flow/auth.json' with { type: 'json' } +import Chain from '@masknet/web3-constants/flow/chain.json' with { type: 'json' } +import Token from '@masknet/web3-constants/flow/token.json' with { type: 'json' } import { transform, transformAll, transformAllHook, transformHook } from '@masknet/web3-shared-base' import { ChainId } from '../types.js' diff --git a/packages/web3-shared/solana/src/constants/constants.ts b/packages/web3-shared/solana/src/constants/constants.ts index c2fcdffda32..d2b0c3321f6 100644 --- a/packages/web3-shared/solana/src/constants/constants.ts +++ b/packages/web3-shared/solana/src/constants/constants.ts @@ -1,8 +1,8 @@ import { getEnumAsArray } from '@masknet/kit' -import Chain from '@masknet/web3-constants/solana/chain.json' -import CoinGecko from '@masknet/web3-constants/solana/coingecko.json' -import TokenList from '@masknet/web3-constants/solana/token-list.json' -import Token from '@masknet/web3-constants/solana/token.json' +import Chain from '@masknet/web3-constants/solana/chain.json' with { type: 'json' } +import CoinGecko from '@masknet/web3-constants/solana/coingecko.json' with { type: 'json' } +import TokenList from '@masknet/web3-constants/solana/token-list.json' with { type: 'json' } +import Token from '@masknet/web3-constants/solana/token.json' with { type: 'json' } import { transform, transformAll, transformAllHook, transformHook } from '@masknet/web3-shared-base' import { ChainId } from '../types.js' diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6011ed02be4..f6433055ec1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,11 +10,11 @@ overrides: '@mui/base': 5.0.0-beta.40 '@mui/icons-material': 5.15.21 '@mui/material': 5.15.20 - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@protobufjs/inquire': 1.1.0 '@splinetool/runtime': 0.9.342 '@tanstack/react-query': ^5.49.2 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/react': npm:types-react@beta '@types/react-dom': npm:types-react-dom@beta glob-stream: 7.0.0 @@ -96,14 +96,14 @@ importers: specifier: 11.11.5 version: 11.11.5(@emotion/react@11.11.4(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1))(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1) '@lingui/core': - specifier: ^4.11.3 - version: 4.11.3 + specifier: ^4.12.0 + version: 4.12.0 '@lingui/react': - specifier: ^4.11.3 - version: 4.11.3(react@0.0.0-experimental-58af67a8f8-20240628) + specifier: ^4.12.0 + version: 4.12.0(react@0.0.0-experimental-58af67a8f8-20240628) '@masknet/kit': - specifier: 0.4.0 - version: 0.4.0 + specifier: 0.4.1 + version: 0.4.1 '@mui/base': specifier: 5.0.0-beta.40 version: 5.0.0-beta.40(react-dom@0.0.0-experimental-58af67a8f8-20240628(react@0.0.0-experimental-58af67a8f8-20240628))(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1) @@ -132,14 +132,14 @@ importers: specifier: npm:types-react-dom@beta version: types-react-dom@19.0.0-beta.1 '@typescript/lib-dom': - specifier: npm:@types/web@^0.0.150 - version: '@types/web@0.0.150' + specifier: npm:@types/web@^0.0.171 + version: '@types/web@0.0.171' i18next: specifier: ^23.11.5 version: 23.11.5 knip: specifier: ^5.23.2 - version: 5.23.2(@types/node@20.14.9)(typescript@5.5.2) + version: 5.23.2(@types/node@22.7.5)(typescript@5.7.0-beta) lodash-es: specifier: ^4.17.21 version: 4.17.21 @@ -164,28 +164,28 @@ importers: version: 2.27.6 '@commitlint/cli': specifier: ^19.3.0 - version: 19.3.0(@types/node@20.14.9)(typescript@5.5.2) + version: 19.3.0(@types/node@22.7.5)(typescript@5.7.0-beta) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 '@eslint-react/eslint-plugin': specifier: ^1.14.3 - version: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + version: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint/compat': specifier: ^1.1.1 version: 1.1.1 '@lingui/cli': - specifier: ^4.11.3 - version: 4.11.3(typescript@5.5.2) + specifier: ^4.12.0 + version: 4.12.0(typescript@5.7.0-beta) '@lingui/macro': - specifier: ^4.11.3 - version: 4.11.3(@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.5.2) + specifier: ^4.12.0 + version: 4.12.0(@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.7.0-beta) '@lingui/swc-plugin': - specifier: ^4.0.8 - version: 4.0.8(@lingui/macro@4.11.3(@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.5.2))(@swc/core@1.6.13) + specifier: ^4.0.10 + version: 4.0.10(@lingui/macro@4.12.0(@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.7.0-beta))(@swc/core@1.7.35) '@magic-works/i18n-codegen': specifier: ^0.6.1 - version: 0.6.1(typescript@5.5.2) + version: 0.6.1(typescript@5.7.0-beta) '@masknet/cli': specifier: workspace:^ version: link:packages/scripts @@ -200,13 +200,13 @@ importers: version: 3.5.1 '@swc-node/register': specifier: ^1.10.9 - version: 1.10.9(@swc/core@1.6.13)(@swc/types@0.1.12)(typescript@5.5.2) + version: 1.10.9(@swc/core@1.7.35)(@swc/types@0.1.13)(typescript@5.7.0-beta) '@swc/core': - specifier: 1.6.13 - version: 1.6.13 + specifier: 1.7.35 + version: 1.7.35 '@tanstack/eslint-plugin-query': specifier: ^5.59.7 - version: 5.59.7(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + version: 5.59.7(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@types/lodash-es': specifier: ^4.17.12 version: 4.17.12 @@ -224,13 +224,13 @@ importers: version: 8.40.0 eslint-import-resolver-typescript: specifier: ^3.6.3 - version: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) + version: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-i: specifier: ^2.29.1 - version: 2.29.1(patch_hash=zgide6rxzjqivhxxv36ouq6c4y)(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) + version: 2.29.1(patch_hash=zgide6rxzjqivhxxv36ouq6c4y)(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-lingui: specifier: ^0.3.0 - version: 0.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + version: 0.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint-plugin-react-hooks: specifier: ^5.1.0-rc-06d0b89e-20240801 version: 5.1.0-rc-3ac551e855-20240522(eslint@9.12.0(jiti@1.21.0)) @@ -242,7 +242,7 @@ importers: version: 56.0.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-unused-imports: specifier: ^4.1.4 - version: 4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)) + version: 4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0)) gulp: specifier: ^5.0.0 version: 5.0.0(patch_hash=43h33nymtjr4cs2ejuui5ulgfe) @@ -259,17 +259,17 @@ importers: specifier: ^3.3.2 version: 3.3.2 typescript: - specifier: 5.5.2 - version: 5.5.2 + specifier: 5.7.0-beta + version: 5.7.0-beta typescript-eslint: specifier: ^8.8.1 - version: 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + version: 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) vite: specifier: ^5.3.2 - version: 5.3.2(@types/node@20.14.9)(terser@5.31.1) + version: 5.3.2(@types/node@22.7.5)(terser@5.31.1) vitest: specifier: ^1.6.0 - version: 1.6.0(@types/node@20.14.9)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1) + version: 1.6.0(@types/node@22.7.5)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1) packages/backup-format: dependencies: @@ -293,8 +293,8 @@ importers: packages/base: dependencies: '@masknet/kit': - specifier: 0.4.0 - version: 0.4.0 + specifier: 0.4.1 + version: 0.4.1 anchorme: specifier: ^2.1.2 version: 2.1.2 @@ -362,7 +362,7 @@ importers: version: 4.18.0 rollup-plugin-swc3: specifier: ^0.11.2 - version: 0.11.2(@swc/core@1.6.13)(rollup@4.18.0) + version: 0.11.2(@swc/core@1.7.35)(rollup@4.18.0) packages/mask: dependencies: @@ -620,7 +620,7 @@ importers: version: 2.0.0 file-loader: specifier: ^6.2.0 - version: 6.2.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 6.2.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) fuse.js: specifier: ^7.0.0 version: 7.0.0 @@ -705,13 +705,13 @@ importers: devDependencies: '@lavamoat/webpack': specifier: 0.3.0-beta.0 - version: 0.3.0-beta.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 0.3.0-beta.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) '@nice-labs/emit-file-webpack-plugin': specifier: ^1.1.4 - version: 1.1.4(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 1.1.4(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.15 - version: 0.5.15(react-refresh@0.14.2)(type-fest@4.23.0)(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 0.5.15(react-refresh@0.14.2)(type-fest@4.23.0)(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) '@types/color': specifier: ^3.0.6 version: 3.0.6 @@ -723,13 +723,13 @@ importers: version: 0.0.0-experimental-938cd9a-20240601 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 12.0.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) devtools-ignore-webpack-plugin: specifier: ^0.1.2 - version: 0.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 0.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) html-webpack-plugin: specifier: ^5.6.0 - version: 5.6.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 5.6.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) react-compiler-webpack: specifier: ^0.1.2 version: 0.1.2(babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601) @@ -744,19 +744,19 @@ importers: version: 5.0.7 source-map-loader: specifier: ^5.0.0 - version: 5.0.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 5.0.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) svgo-loader: specifier: ^4.0.0 version: 4.0.0 swc-loader: specifier: ^0.2.6 - version: 0.2.6(@swc/core@1.6.13)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 0.2.6(@swc/core@1.7.35)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) terser-webpack-plugin: specifier: ^5.3.10 - version: 5.3.10(@swc/core@1.6.13)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 5.3.10(@swc/core@1.7.35)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) webpack: specifier: Jack-Works/webpack#lazy-import - version: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + version: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 version: 5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2) @@ -765,7 +765,7 @@ importers: version: 5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2) webpack-target-webextension: specifier: ^1.1.2 - version: 1.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + version: 1.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) packages/mask-sdk: devDependencies: @@ -783,7 +783,7 @@ importers: version: 4.18.0 rollup-plugin-swc3: specifier: ^0.11.2 - version: 0.11.2(@swc/core@1.6.13)(rollup@4.18.0) + version: 0.11.2(@swc/core@1.7.35)(rollup@4.18.0) packages/plugin-infra: dependencies: @@ -1822,7 +1822,7 @@ importers: version: link:../../web3-providers '@scamsniffer/detector': specifier: 0.0.39 - version: 0.0.39(@babel/core@7.24.6)(@swc/core@1.6.13)(babel-jest@28.1.3(@babel/core@7.24.6))(bufferutil@4.0.7)(encoding@0.1.13)(jest@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2)(utf-8-validate@5.0.10) + version: 0.0.39(@babel/core@7.24.6)(@swc/core@1.7.35)(babel-jest@28.1.3(@babel/core@7.24.6))(bufferutil@4.0.7)(encoding@0.1.13)(jest@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)))(typescript@5.7.0-beta)(utf-8-validate@5.0.10) react-use: specifier: ^17.5.0 version: 17.5.0(patch_hash=tokvlmgj4xqkhjmndck4f7nw3q)(react-dom@0.0.0-experimental-58af67a8f8-20240628(react@0.0.0-experimental-58af67a8f8-20240628))(react@0.0.0-experimental-58af67a8f8-20240628) @@ -2270,8 +2270,8 @@ importers: specifier: ^3.0.2 version: 3.0.2(rollup@4.18.0) '@types/node': - specifier: 20.14.9 - version: 20.14.9 + specifier: 22.7.5 + version: 22.7.5 core-js-compat: specifier: 3.37.1 version: 3.37.1 @@ -2283,7 +2283,7 @@ importers: version: 4.18.0 rollup-plugin-swc3: specifier: ^0.11.2 - version: 0.11.2(@swc/core@1.6.13)(rollup@4.18.0) + version: 0.11.2(@swc/core@1.7.35)(rollup@4.18.0) packages/polyfills/types: {} @@ -2322,7 +2322,7 @@ importers: dependencies: '@masknet/static-module-record-swc': specifier: ^0.6.0 - version: 0.6.0(@swc/core@1.6.13) + version: 0.6.0(@swc/core@1.7.35) chalk: specifier: ^5.3.0 version: 5.3.0 @@ -2349,7 +2349,7 @@ importers: version: 0.7.4 typechain: specifier: ^8.3.2 - version: 8.3.2(typescript@5.5.2) + version: 8.3.2(typescript@5.7.0-beta) yargs: specifier: ^17.7.2 version: 17.7.2 @@ -2361,8 +2361,8 @@ importers: specifier: ^4.0.17 version: 4.0.17 '@types/node': - specifier: 20.14.9 - version: 20.14.9 + specifier: 22.7.5 + version: 22.7.5 '@types/proper-lockfile': specifier: ^4.1.4 version: 4.1.4 @@ -2737,7 +2737,7 @@ importers: dependencies: '@typechain/web3-v1': specifier: ^6.0.7 - version: 6.0.7(typechain@8.3.2(typescript@5.5.2))(typescript@5.5.2)(web3-core@1.10.4(encoding@0.1.13))(web3-eth-contract@1.10.2(encoding@0.1.13))(web3@1.10.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)) + version: 6.0.7(typechain@8.3.2(typescript@5.7.0-beta))(typescript@5.7.0-beta)(web3-core@1.10.4(encoding@0.1.13))(web3-eth-contract@1.10.2(encoding@0.1.13))(web3@1.10.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)) web3-core: specifier: 1.10.4 version: 1.10.4(encoding@0.1.13) @@ -2966,7 +2966,7 @@ importers: version: 4.0.1 rss3-next: specifier: ^0.6.17 - version: 0.6.17(patch_hash=db27yqpr4wdtpwfyvaxcqd4jpi)(bufferutil@4.0.7)(typescript@5.5.2)(utf-8-validate@5.0.10) + version: 0.6.17(patch_hash=db27yqpr4wdtpwfyvaxcqd4jpi)(bufferutil@4.0.7)(typescript@5.7.0-beta)(utf-8-validate@5.0.10) socket.io-client: specifier: 2.4.0 version: 2.4.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) @@ -4820,46 +4820,46 @@ packages: resolution: {integrity: sha512-eZX+5ByUAzh8DrfjCan0spZGpvF7SxEBz4tOPoBMBCuKJJLr+8EokBO/5E3ceIw04f5+lAcD3CO3bccuKomp3Q==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} - '@lingui/babel-plugin-extract-messages@4.11.3': - resolution: {integrity: sha512-wLiquhtxE7qUmoKl4UStFI1XgrCkk9zwxc8z62LPpbutkyxO21B5k8fBUGlgWoKJaXbpvS8VIU8j2663q99JnQ==} + '@lingui/babel-plugin-extract-messages@4.12.0': + resolution: {integrity: sha512-PPDFIfdtga3CVjgWzWCi2tYzOI1l+X2WxLZazVtqDPHVFz/m74+j0doC4DfQnoAr8TJDBSq3qA183GX5i5Kzlw==} engines: {node: '>=16.0.0'} - '@lingui/cli@4.11.3': - resolution: {integrity: sha512-ykJLmQciK81I0Cd/iLg8dSpESV9Hnsbw5+G98IEAf4exvoUGRJ2UzkeNc/HeGx3D5Fg+TI8YNWwCbZ7NAOsDCQ==} + '@lingui/cli@4.12.0': + resolution: {integrity: sha512-a63VrY41tI8JD9p4t/zyOh0mehBSewtdlBSLtoE4urgdzHtCTdQGXzhrs+T090hFicKFkdI1+J0W6aOv9ehxcA==} engines: {node: '>=16.0.0'} hasBin: true - '@lingui/conf@4.11.3': - resolution: {integrity: sha512-KwUJDrbzlZEXmlmqttpB/Sd9hiIo0sqccsZaYTHzW/uULZT9T11aw/f6RcPLCVJeSKazg/7dJhR1cKlxKzvjKA==} + '@lingui/conf@4.12.0': + resolution: {integrity: sha512-RExMUKnIUNEt91yFlBxklXCMC8ZgFX0eEF066hPIEX8NXCqowm7pbiNy+UlRfxgB7mdIlPDqXCkN94CH9jnpHw==} engines: {node: '>=16.0.0'} - '@lingui/core@4.11.3': - resolution: {integrity: sha512-IjJxn0Kvzv+ICnGlMqn8wRIQLikCJVrolb1oyi6GqtbiuPiwKYeU0D6Hbe146lMaTN8juc3tOCBS+Fr02XqFIQ==} + '@lingui/core@4.12.0': + resolution: {integrity: sha512-mzu55Ka7fTr+gTdv2AoJl1kP2X6FLuolVtkY2eWiJ7SvyOv294kw30VCHrrSUctzYuOsktUE59RA6mlng70P1g==} engines: {node: '>=16.0.0'} - '@lingui/format-po@4.11.3': - resolution: {integrity: sha512-RgEkoo0aEAk7X1xGrApcpqkz6GLdzkRLGw2jo3mmCVR0P7P9sWbJL/cd01GmR+HzAOo8Zx5oIayaKh9iyJS8tA==} + '@lingui/format-po@4.12.0': + resolution: {integrity: sha512-L3Jr1XD+pSXrhQxsZPf6Kf+3iUcOrJZlVpFgoygqKQzwi9R7pJcEHcl7oo0RyioKgjD11epaFKBfMrd/XbEITQ==} engines: {node: '>=16.0.0'} - '@lingui/macro@4.11.3': - resolution: {integrity: sha512-D0me8ZRtH0ylSavhKZu0FYf5mJ1y6kDMMPjYVDyiT5ooOI/5jjv9LIAqrdYGCBygnwsxOG1dzDw6+3s5GTs+Bg==} + '@lingui/macro@4.12.0': + resolution: {integrity: sha512-hB6BufKWZSKW0pRfT0rKAbpydxxHEvfmXDkwoIlBHVqsD8sRdJVCWS3oSoTvz6zWTfjkjV92gaN4o0E09RdVZQ==} engines: {node: '>=16.0.0'} peerDependencies: '@lingui/react': ^4.0.0 babel-plugin-macros: 2 || 3 - '@lingui/message-utils@4.11.3': - resolution: {integrity: sha512-ZSw3OoKbknOw3nSrqt194g2F8r0guKow9csb46zlL7zX/yOWCaj767wvSvMoglZtVvurfQs4NPv2cohYlWORNw==} + '@lingui/message-utils@4.12.0': + resolution: {integrity: sha512-K1ROdcjJXCPBed6NhI6RvOWwRZW+rnYQCnWL7pJS+R9h+Lkc51hyTEfXb4nWdfZzu6l0BAGasq0S5ZnfCjbjXw==} engines: {node: '>=16.0.0'} - '@lingui/react@4.11.3': - resolution: {integrity: sha512-FuorwDsz5zDpUNpyj7J8ZKqJrrVxOz1EtQ3aJGJsmnTtVO01N3nR3ckMzpYvZ71XXdDEvhUC9ihmiKbFvpaZ/w==} + '@lingui/react@4.12.0': + resolution: {integrity: sha512-jsclwIPpqMSzCZTyIvpFS9FqOaysz1gr5j15NlUlK1KWgxAZjZT64NHMVPwVcg2TXMFnAZhgwI0dWbUgYQSm6g==} engines: {node: '>=16.0.0'} peerDependencies: react: 0.0.0-experimental-58af67a8f8-20240628 - '@lingui/swc-plugin@4.0.8': - resolution: {integrity: sha512-zWvfFAvo2NOV+yFAjTbuEE0x53XEJlBS3EQ1R4xswjWSgpXWbLg45Rg37Ai2Ud0qeQkQLZnL93yt7dOwstX5eQ==} + '@lingui/swc-plugin@4.0.10': + resolution: {integrity: sha512-CPZkywUdG8HsEIxsRAAvx30KZmfxzh126yCvHq0suyvZZRLOVoNdlrUw1N9MfsB7YJsPLgD+XLGjRkeyo7ZduQ==} peerDependencies: '@lingui/macro': '4' '@swc/core': '*' @@ -4903,8 +4903,8 @@ packages: peerDependencies: eslint: '>= 8' - '@masknet/kit@0.4.0': - resolution: {integrity: sha512-Vi6H0uTj8R+WKBUDuuSAgTl8W3ySx6Y9T9+9OMN5YdOKbsud0y7FzkVP7Dt00Vn2XhsAh1juTmfKM9WGvMim0A==} + '@masknet/kit@0.4.1': + resolution: {integrity: sha512-Wc2QPj0+55sGDP4j+rGfVggFnDN2h0gscAJChdbJrBpYCdYYNXBLRsgJwXR7268ynLLVpYXZ3uGYMH/N9+okLA==} '@masknet/membrane@0.2.0': resolution: {integrity: sha512-iOzUk1/Q0zPQJ4sv+8h8yUdTBQPhsCKDj0IUnhQEtNe8p65CGZ+VOpxeyh+cgKjyPFkauulK4/Ky1KxAngSy2A==} @@ -4915,7 +4915,7 @@ packages: '@masknet/static-module-record-swc@0.6.0': resolution: {integrity: sha512-DzM4zDPnjoAF4O36upupPn/2dI0/S3H4UkaMhg2X/nZbGgg+aPCqt1V9eGamqeci7id/feSbdQs5HcJn/1ia1g==} peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 peerDependenciesMeta: '@swc/core': optional: true @@ -5914,80 +5914,80 @@ packages: resolution: {integrity: sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==} engines: {node: '>= 10'} peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@swc/types': '>= 0.1' '@swc-node/register@1.10.9': resolution: {integrity: sha512-iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==} peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 typescript: '>= 4.3' '@swc-node/sourcemap-support@0.5.1': resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==} - '@swc/core-darwin-arm64@1.6.13': - resolution: {integrity: sha512-SOF4buAis72K22BGJ3N8y88mLNfxLNprTuJUpzikyMGrvkuBFNcxYtMhmomO0XHsgLDzOJ+hWzcgjRNzjMsUcQ==} + '@swc/core-darwin-arm64@1.7.35': + resolution: {integrity: sha512-BQSSozVxjxS+SVQz6e3GC/+OBWGIK3jfe52pWdANmycdjF3ch7lrCKTHTU7eHwyoJ96mofszPf5AsiVJF34Fwg==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.6.13': - resolution: {integrity: sha512-AW8akFSC+tmPE6YQQvK9S2A1B8pjnXEINg+gGgw0KRUUXunvu1/OEOeC5L2Co1wAwhD7bhnaefi06Qi9AiwOag==} + '@swc/core-darwin-x64@1.7.35': + resolution: {integrity: sha512-44TYdKN/EWtkU88foXR7IGki9JzhEJzaFOoPevfi9Xe7hjAD/x2+AJOWWqQNzDPMz9+QewLdUVLyR6s5okRgtg==} engines: {node: '>=10'} cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.6.13': - resolution: {integrity: sha512-f4gxxvDXVUm2HLYXRd311mSrmbpQF2MZ4Ja6XCQz1hWAxXdhRl1gpnZ+LH/xIfGSwQChrtLLVrkxdYUCVuIjFg==} + '@swc/core-linux-arm-gnueabihf@1.7.35': + resolution: {integrity: sha512-ccfA5h3zxwioD+/z/AmYtkwtKz9m4rWTV7RoHq6Jfsb0cXHrd6tbcvgqRWXra1kASlE+cDWsMtEZygs9dJRtUQ==} engines: {node: '>=10'} cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.6.13': - resolution: {integrity: sha512-Nf/eoW2CbG8s+9JoLtjl9FByBXyQ5cjdBsA4efO7Zw4p+YSuXDgc8HRPC+E2+ns0praDpKNZtLvDtmF2lL+2Gg==} + '@swc/core-linux-arm64-gnu@1.7.35': + resolution: {integrity: sha512-hx65Qz+G4iG/IVtxJKewC5SJdki8PAPFGl6gC/57Jb0+jA4BIoGLD/J3Q3rCPeoHfdqpkCYpahtyUq8CKx41Jg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.6.13': - resolution: {integrity: sha512-2OysYSYtdw79prJYuKIiux/Gj0iaGEbpS2QZWCIY4X9sGoETJ5iMg+lY+YCrIxdkkNYd7OhIbXdYFyGs/w5LDg==} + '@swc/core-linux-arm64-musl@1.7.35': + resolution: {integrity: sha512-kL6tQL9No7UEoEvDRuPxzPTpxrvbwYteNRbdChSSP74j13/55G2/2hLmult5yFFaWuyoyU/2lvzjRL/i8OLZxg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.6.13': - resolution: {integrity: sha512-PkR4CZYJNk5hcd2+tMWBpnisnmYsUzazI1O5X7VkIGFcGePTqJ/bWlfUIVVExWxvAI33PQFzLbzmN5scyIUyGQ==} + '@swc/core-linux-x64-gnu@1.7.35': + resolution: {integrity: sha512-Ke4rcLQSwCQ2LHdJX1FtnqmYNQ3IX6BddKlUtS7mcK13IHkQzZWp0Dcu6MgNA3twzb/dBpKX5GLy07XdGgfmyw==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.6.13': - resolution: {integrity: sha512-OdsY7wryTxCKwGQcwW9jwWg3cxaHBkTTHi91+5nm7hFPpmZMz1HivJrWAMwVE7iXFw+M4l6ugB/wCvpYrUAAjA==} + '@swc/core-linux-x64-musl@1.7.35': + resolution: {integrity: sha512-T30tlLnz0kYyDFyO5RQF5EQ4ENjW9+b56hEGgFUYmfhFhGA4E4V67iEx7KIG4u0whdPG7oy3qjyyIeTb7nElEw==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.6.13': - resolution: {integrity: sha512-ap6uNmYjwk9M/+bFEuWRNl3hq4VqgQ/Lk+ID/F5WGqczNr0L7vEf+pOsRAn0F6EV+o/nyb3ePt8rLhE/wjHpPg==} + '@swc/core-win32-arm64-msvc@1.7.35': + resolution: {integrity: sha512-CfM/k8mvtuMyX+okRhemfLt784PLS0KF7Q9djA8/Dtavk0L5Ghnq+XsGltO3d8B8+XZ7YOITsB14CrjehzeHsg==} engines: {node: '>=10'} cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.6.13': - resolution: {integrity: sha512-IJ8KH4yIUHTnS/U1jwQmtbfQals7zWPG0a9hbEfIr4zI0yKzjd83lmtS09lm2Q24QBWOCFGEEbuZxR4tIlvfzA==} + '@swc/core-win32-ia32-msvc@1.7.35': + resolution: {integrity: sha512-ATB3uuH8j/RmS64EXQZJSbo2WXfRNpTnQszHME/sGaexsuxeijrp3DTYSFAA3R2Bu6HbIIX6jempe1Au8I3j+A==} engines: {node: '>=10'} cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.6.13': - resolution: {integrity: sha512-f6/sx6LMuEnbuxtiSL/EkR0Y6qUHFw1XVrh6rwzKXptTipUdOY+nXpKoh+1UsBm/r7H0/5DtOdrn3q5ZHbFZjQ==} + '@swc/core-win32-x64-msvc@1.7.35': + resolution: {integrity: sha512-iDGfQO1571NqWUXtLYDhwIELA/wadH42ioGn+J9R336nWx40YICzy9UQyslWRhqzhQ5kT+QXAW/MoCWc058N6Q==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@swc/core@1.6.13': - resolution: {integrity: sha512-eailUYex6fkfaQTev4Oa3mwn0/e3mQU4H8y1WPuImYQESOQDtVrowwUGDSc19evpBbHpKtwM+hw8nLlhIsF+Tw==} + '@swc/core@1.7.35': + resolution: {integrity: sha512-3cUteCTbr2r5jqfgx0r091sfq5Mgh6F1SQh8XAOnSvtKzwv2bC31mvBHVAieD1uPa2kHJhLav20DQgXOhpEitw==} engines: {node: '>=10'} peerDependencies: '@swc/helpers': '*' @@ -5998,8 +5998,8 @@ packages: '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/types@0.1.12': - resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==} + '@swc/types@0.1.13': + resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==} '@szmarczak/http-timer@4.0.6': resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} @@ -6383,8 +6383,8 @@ packages: '@types/node-forge@1.3.11': resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - '@types/node@20.14.9': - resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==} + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} '@types/normalize-package-data@2.4.1': resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -6503,8 +6503,8 @@ packages: '@types/vinyl@2.0.7': resolution: {integrity: sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==} - '@types/web@0.0.150': - resolution: {integrity: sha512-MuIXeRFFwSjToJZS0ISM4Ohu5pXcTvJ/uyxRVQF8ChKWigfM0wJ6vdWOFiODOWJ/eiHupksiQHXHs8nSVKyffw==} + '@types/web@0.0.171': + resolution: {integrity: sha512-3Ol3wUjl2LPdFEZkgGjQiX0OlfuYCxr79JWVFcD5YJWBYd3jqHgKYM7t9LayxRZhyKT/++z5r8sX6VWzMn1Nrg==} '@types/webextension-polyfill@0.10.7': resolution: {integrity: sha512-10ql7A0qzBmFB+F+qAke/nP1PIonS0TXZAOMVOxEUsm+lGSW6uwVcISFNa0I4Oyj0884TZVWGGMIWeXOVSNFHw==} @@ -8134,7 +8134,7 @@ packages: resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} engines: {node: '>=v16'} peerDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 cosmiconfig: '>=8.2' typescript: '>=4' @@ -10874,7 +10874,7 @@ packages: resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 ts-node: '>=9.0.0' peerDependenciesMeta: '@types/node': @@ -11182,7 +11182,7 @@ packages: engines: {node: '>=18.6.0'} hasBin: true peerDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 typescript: '>=5.0.4' last-run@2.0.0: @@ -11682,10 +11682,6 @@ packages: micromark@4.0.0: resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - micromatch@4.0.2: - resolution: {integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==} - engines: {node: '>=8'} - micromatch@4.0.7: resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} engines: {node: '>=8.6'} @@ -13168,7 +13164,7 @@ packages: resolution: {integrity: sha512-o1ih9B806fV2wBSNk46T0cYfTF2eiiKmYXRpWw3K4j/Cp3tCAt10UCVsTqvUhGP58pcB3/GZcAVl5e7TCSKN6Q==} engines: {node: '>=12'} peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 rollup-preserve-directives@1.1.1: @@ -13852,7 +13848,7 @@ packages: resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} version: 0.2.6 peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 webpack: Jack-Works/webpack#528c91e564d5756e21c9c462b607d913452af770 symbol-tree@3.2.4: @@ -14143,9 +14139,9 @@ packages: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@swc/wasm': '>=1.2.50' - '@types/node': 20.14.9 + '@types/node': 22.7.5 typescript: '>=2.7' peerDependenciesMeta: '@swc/core': @@ -14347,6 +14343,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.7.0-beta: + resolution: {integrity: sha512-opDlmEnzKdl082N5piLS43lsyugg0aORdv+XnNzMv5yP5VtBWuZhFDxU8lizmhW+PEFa/fZiShYRBxKsrkTDMQ==} + engines: {node: '>=14.17'} + hasBin: true + typeson-registry@11.1.1: resolution: {integrity: sha512-WF8meNtURfGXXY2RitEMgZrMEclHU8IdxxN4YTcnXTQUHvisPYsKrxxPFhc4DKTCAc6sVvWVtKelOXFDtw/OQQ==} engines: {node: '>=18.14.0'} @@ -14411,8 +14412,8 @@ packages: resolution: {integrity: sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ==} engines: {node: '>=10.13.0'} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} undici@5.23.0: resolution: {integrity: sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==} @@ -14689,7 +14690,7 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 less: '*' lightningcss: ^1.21.0 sass: '*' @@ -14718,7 +14719,7 @@ packages: hasBin: true peerDependencies: '@edge-runtime/vm': '*' - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@vitest/browser': 1.6.0 '@vitest/ui': 1.6.0 happy-dom: '*' @@ -15515,7 +15516,7 @@ snapshots: '@babel/helper-module-imports': 7.24.6 '@babel/helper-simple-access': 7.24.6 '@babel/helper-split-export-declaration': 7.24.6 - '@babel/helper-validator-identifier': 7.24.6 + '@babel/helper-validator-identifier': 7.24.7 '@babel/helper-plugin-utils@7.24.6': {} @@ -16080,11 +16081,11 @@ snapshots: human-id: 1.0.2 prettier: 2.8.8 - '@commitlint/cli@19.3.0(@types/node@20.14.9)(typescript@5.5.2)': + '@commitlint/cli@19.3.0(@types/node@22.7.5)(typescript@5.7.0-beta)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@20.14.9)(typescript@5.5.2) + '@commitlint/load': 19.2.0(@types/node@22.7.5)(typescript@5.7.0-beta) '@commitlint/read': 19.2.1 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -16131,15 +16132,15 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@20.14.9)(typescript@5.5.2)': + '@commitlint/load@19.2.0(@types/node@22.7.5)(typescript@5.7.0-beta)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 '@commitlint/resolve-extends': 19.1.0 '@commitlint/types': 19.0.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.5.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2) + cosmiconfig: 9.0.0(typescript@5.7.0-beta) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.5)(cosmiconfig@9.0.0(typescript@5.7.0-beta))(typescript@5.7.0-beta) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -16752,13 +16753,13 @@ snapshots: '@eslint-community/regexpp@4.11.0': {} - '@eslint-react/ast@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/ast@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.2) - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.7.0-beta) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) birecord: 0.1.1 string-ts: 2.2.0 ts-pattern: 5.4.0 @@ -16767,18 +16768,18 @@ snapshots: - supports-color - typescript - '@eslint-react/core@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/core@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) birecord: 0.1.1 short-unique-id: 5.2.0 ts-pattern: 5.4.0 @@ -16787,46 +16788,46 @@ snapshots: - supports-color - typescript - '@eslint-react/eslint-plugin@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/eslint-plugin@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) - eslint-plugin-react-debug: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-react-dom: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-react-hooks-extra: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-react-naming-convention: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-react-web-api: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-react-x: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + eslint-plugin-react-debug: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + eslint-plugin-react-dom: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + eslint-plugin-react-hooks-extra: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + eslint-plugin-react-naming-convention: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + eslint-plugin-react-web-api: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + eslint-plugin-react-x: 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - '@eslint-react/jsx@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/jsx@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) ts-pattern: 5.4.0 transitivePeerDependencies: - eslint - supports-color - typescript - '@eslint-react/shared@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/shared@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-react/tools': 1.14.3 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) picomatch: 4.0.2 transitivePeerDependencies: - eslint @@ -16835,24 +16836,24 @@ snapshots: '@eslint-react/tools@1.14.3': {} - '@eslint-react/types@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/types@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-react/tools': 1.14.3 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) transitivePeerDependencies: - eslint - supports-color - typescript - '@eslint-react/var@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@eslint-react/var@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) ts-pattern: 5.4.0 transitivePeerDependencies: - eslint @@ -17478,7 +17479,7 @@ snapshots: '@inquirer/figures': 1.0.3 '@inquirer/type': 1.3.3 '@types/mute-stream': 0.0.4 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-spinners: 2.9.2 @@ -17531,27 +17532,27 @@ snapshots: '@jest/console@28.1.3': dependencies: '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 - '@jest/core@28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2))': + '@jest/core@28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta))': dependencies: '@jest/console': 28.1.3 '@jest/reporters': 28.1.3(node-notifier@10.0.1) '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 28.1.3 - jest-config: 28.1.3(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + jest-config: 28.1.3(@types/node@22.7.5)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -17578,7 +17579,7 @@ snapshots: dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 jest-mock: 28.1.3 '@jest/expect-utils@28.1.3': @@ -17596,7 +17597,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 20.14.9 + '@types/node': 22.7.5 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -17617,7 +17618,7 @@ snapshots: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.14.9 + '@types/node': 22.7.5 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -17700,7 +17701,7 @@ snapshots: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/yargs': 17.0.32 chalk: 4.1.2 @@ -17709,7 +17710,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/yargs': 17.0.32 chalk: 4.1.2 @@ -17767,14 +17768,14 @@ snapshots: dependencies: resolve: 1.22.8 - '@lavamoat/webpack@0.3.0-beta.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@lavamoat/webpack@0.3.0-beta.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: '@lavamoat/aa': 4.2.0 browser-resolve: 2.0.0 json-stable-stringify: 1.1.1 lavamoat-core: 15.3.0 ses: 1.4.0 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) transitivePeerDependencies: - supports-color @@ -17837,20 +17838,20 @@ snapshots: multiformats: 11.0.2 uint8arrays: 4.0.3 - '@lingui/babel-plugin-extract-messages@4.11.3': {} + '@lingui/babel-plugin-extract-messages@4.12.0': {} - '@lingui/cli@4.11.3(typescript@5.5.2)': + '@lingui/cli@4.12.0(typescript@5.7.0-beta)': dependencies: '@babel/core': 7.24.6 '@babel/generator': 7.24.6 '@babel/parser': 7.24.6 '@babel/runtime': 7.24.7 '@babel/types': 7.24.6 - '@lingui/babel-plugin-extract-messages': 4.11.3 - '@lingui/conf': 4.11.3(typescript@5.5.2) - '@lingui/core': 4.11.3 - '@lingui/format-po': 4.11.3(typescript@5.5.2) - '@lingui/message-utils': 4.11.3 + '@lingui/babel-plugin-extract-messages': 4.12.0 + '@lingui/conf': 4.12.0(typescript@5.7.0-beta) + '@lingui/core': 4.12.0 + '@lingui/format-po': 4.12.0(typescript@5.7.0-beta) + '@lingui/message-utils': 4.12.0 babel-plugin-macros: 3.1.0 chalk: 4.1.2 chokidar: 3.5.1 @@ -17861,7 +17862,7 @@ snapshots: esbuild: 0.17.19 glob: 7.2.3 inquirer: 7.3.3 - micromatch: 4.0.2 + micromatch: 4.0.7 normalize-path: 3.0.0 ora: 5.4.1 pathe: 1.1.1 @@ -17874,60 +17875,60 @@ snapshots: - supports-color - typescript - '@lingui/conf@4.11.3(typescript@5.5.2)': + '@lingui/conf@4.12.0(typescript@5.7.0-beta)': dependencies: '@babel/runtime': 7.24.7 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.5.2) + cosmiconfig: 8.3.6(typescript@5.7.0-beta) jest-validate: 29.7.0 jiti: 1.21.0 lodash.get: 4.4.2 transitivePeerDependencies: - typescript - '@lingui/core@4.11.3': + '@lingui/core@4.12.0': dependencies: '@babel/runtime': 7.24.7 - '@lingui/message-utils': 4.11.3 + '@lingui/message-utils': 4.12.0 unraw: 3.0.0 - '@lingui/format-po@4.11.3(typescript@5.5.2)': + '@lingui/format-po@4.12.0(typescript@5.7.0-beta)': dependencies: - '@lingui/conf': 4.11.3(typescript@5.5.2) - '@lingui/message-utils': 4.11.3 + '@lingui/conf': 4.12.0(typescript@5.7.0-beta) + '@lingui/message-utils': 4.12.0 date-fns: 3.6.0 pofile: 1.1.4 transitivePeerDependencies: - typescript - '@lingui/macro@4.11.3(@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.5.2)': + '@lingui/macro@4.12.0(@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.7.0-beta)': dependencies: '@babel/runtime': 7.24.7 '@babel/types': 7.24.6 - '@lingui/conf': 4.11.3(typescript@5.5.2) - '@lingui/core': 4.11.3 - '@lingui/message-utils': 4.11.3 - '@lingui/react': 4.11.3(react@0.0.0-experimental-58af67a8f8-20240628) + '@lingui/conf': 4.12.0(typescript@5.7.0-beta) + '@lingui/core': 4.12.0 + '@lingui/message-utils': 4.12.0 + '@lingui/react': 4.12.0(react@0.0.0-experimental-58af67a8f8-20240628) babel-plugin-macros: 3.1.0 transitivePeerDependencies: - typescript - '@lingui/message-utils@4.11.3': + '@lingui/message-utils@4.12.0': dependencies: '@messageformat/parser': 5.1.0 js-sha256: 0.10.1 - '@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628)': + '@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628)': dependencies: '@babel/runtime': 7.24.7 - '@lingui/core': 4.11.3 + '@lingui/core': 4.12.0 react: 0.0.0-experimental-58af67a8f8-20240628 - '@lingui/swc-plugin@4.0.8(@lingui/macro@4.11.3(@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.5.2))(@swc/core@1.6.13)': + '@lingui/swc-plugin@4.0.10(@lingui/macro@4.12.0(@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.7.0-beta))(@swc/core@1.7.35)': dependencies: - '@lingui/macro': 4.11.3(@lingui/react@4.11.3(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.5.2) + '@lingui/macro': 4.12.0(@lingui/react@4.12.0(react@0.0.0-experimental-58af67a8f8-20240628))(babel-plugin-macros@3.1.0)(typescript@5.7.0-beta) optionalDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@locker/near-membrane-base@0.13.1': dependencies: @@ -17945,17 +17946,17 @@ snapshots: '@locker/near-membrane-shared@0.13.1': {} - '@magic-works/i18n-codegen@0.6.1(typescript@5.5.2)': + '@magic-works/i18n-codegen@0.6.1(typescript@5.7.0-beta)': dependencies: chokidar: 3.5.3 i18next-translation-parser: 1.0.1 - typescript: 5.5.2 + typescript: 5.7.0-beta yargs: 17.7.2 '@manypkg/find-root@1.1.0': dependencies: '@babel/runtime': 7.24.7 - '@types/node': 20.14.9 + '@types/node': 22.7.5 find-up: 4.1.0 fs-extra: 8.1.0 @@ -17974,7 +17975,7 @@ snapshots: dependencies: eslint: 9.12.0(jiti@1.21.0) - '@masknet/kit@0.4.0': {} + '@masknet/kit@0.4.1': {} '@masknet/membrane@0.2.0': dependencies: @@ -17986,11 +17987,11 @@ snapshots: elliptic: 6.5.5 pvtsutils: 1.3.5 - '@masknet/static-module-record-swc@0.6.0(@swc/core@1.6.13)': + '@masknet/static-module-record-swc@0.6.0(@swc/core@1.7.35)': dependencies: cjs-module-lexer: 1.3.1 optionalDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@masknet/stego-js@0.14.2': dependencies: @@ -18399,9 +18400,9 @@ snapshots: '@tybys/wasm-util': 0.9.0 optional: true - '@nice-labs/emit-file-webpack-plugin@1.1.4(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@nice-labs/emit-file-webpack-plugin@1.1.4(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) '@nice-labs/git-rev@3.5.1': {} @@ -18647,7 +18648,7 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.23.0)(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.23.0)(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.32.1 @@ -18657,7 +18658,7 @@ snapshots: react-refresh: 0.14.2 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) optionalDependencies: type-fest: 4.23.0 webpack-dev-server: 5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2) @@ -18840,10 +18841,10 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.18.0': optional: true - '@scamsniffer/detector@0.0.39(@babel/core@7.24.6)(@swc/core@1.6.13)(babel-jest@28.1.3(@babel/core@7.24.6))(bufferutil@4.0.7)(encoding@0.1.13)(jest@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2)(utf-8-validate@5.0.10)': + '@scamsniffer/detector@0.0.39(@babel/core@7.24.6)(@swc/core@1.7.35)(babel-jest@28.1.3(@babel/core@7.24.6))(bufferutil@4.0.7)(encoding@0.1.13)(jest@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)))(typescript@5.7.0-beta)(utf-8-validate@5.0.10)': dependencies: '@types/isomorphic-fetch': 0.0.36 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/parse-json': 4.0.0 '@walletconnect/client': 1.8.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) '@walletconnect/web3wallet': 1.12.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -18851,8 +18852,8 @@ snapshots: isomorphic-fetch: 3.0.0(encoding@0.1.13) jsdom: 20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) parse-domain: 3.0.3(encoding@0.1.13) - ts-jest: 28.0.5(@babel/core@7.24.6)(babel-jest@28.1.3(@babel/core@7.24.6))(jest@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2) - ts-node: 10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2) + ts-jest: 28.0.5(@babel/core@7.24.6)(babel-jest@28.1.3(@babel/core@7.24.6))(jest@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)))(typescript@5.7.0-beta) + ts-node: 10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -19141,22 +19142,22 @@ snapshots: '@streamparser/json@0.0.20': {} - '@swc-node/core@1.13.3(@swc/core@1.6.13)(@swc/types@0.1.12)': + '@swc-node/core@1.13.3(@swc/core@1.7.35)(@swc/types@0.1.13)': dependencies: - '@swc/core': 1.6.13 - '@swc/types': 0.1.12 + '@swc/core': 1.7.35 + '@swc/types': 0.1.13 - '@swc-node/register@1.10.9(@swc/core@1.6.13)(@swc/types@0.1.12)(typescript@5.5.2)': + '@swc-node/register@1.10.9(@swc/core@1.7.35)(@swc/types@0.1.13)(typescript@5.7.0-beta)': dependencies: - '@swc-node/core': 1.13.3(@swc/core@1.6.13)(@swc/types@0.1.12) + '@swc-node/core': 1.13.3(@swc/core@1.7.35)(@swc/types@0.1.13) '@swc-node/sourcemap-support': 0.5.1 - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 colorette: 2.0.20 debug: 4.3.5 oxc-resolver: 1.10.2 pirates: 4.0.6 tslib: 2.6.3 - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - '@swc/types' - supports-color @@ -19166,55 +19167,55 @@ snapshots: source-map-support: 0.5.21 tslib: 2.6.3 - '@swc/core-darwin-arm64@1.6.13': + '@swc/core-darwin-arm64@1.7.35': optional: true - '@swc/core-darwin-x64@1.6.13': + '@swc/core-darwin-x64@1.7.35': optional: true - '@swc/core-linux-arm-gnueabihf@1.6.13': + '@swc/core-linux-arm-gnueabihf@1.7.35': optional: true - '@swc/core-linux-arm64-gnu@1.6.13': + '@swc/core-linux-arm64-gnu@1.7.35': optional: true - '@swc/core-linux-arm64-musl@1.6.13': + '@swc/core-linux-arm64-musl@1.7.35': optional: true - '@swc/core-linux-x64-gnu@1.6.13': + '@swc/core-linux-x64-gnu@1.7.35': optional: true - '@swc/core-linux-x64-musl@1.6.13': + '@swc/core-linux-x64-musl@1.7.35': optional: true - '@swc/core-win32-arm64-msvc@1.6.13': + '@swc/core-win32-arm64-msvc@1.7.35': optional: true - '@swc/core-win32-ia32-msvc@1.6.13': + '@swc/core-win32-ia32-msvc@1.7.35': optional: true - '@swc/core-win32-x64-msvc@1.6.13': + '@swc/core-win32-x64-msvc@1.7.35': optional: true - '@swc/core@1.6.13': + '@swc/core@1.7.35': dependencies: '@swc/counter': 0.1.3 - '@swc/types': 0.1.12 + '@swc/types': 0.1.13 optionalDependencies: - '@swc/core-darwin-arm64': 1.6.13 - '@swc/core-darwin-x64': 1.6.13 - '@swc/core-linux-arm-gnueabihf': 1.6.13 - '@swc/core-linux-arm64-gnu': 1.6.13 - '@swc/core-linux-arm64-musl': 1.6.13 - '@swc/core-linux-x64-gnu': 1.6.13 - '@swc/core-linux-x64-musl': 1.6.13 - '@swc/core-win32-arm64-msvc': 1.6.13 - '@swc/core-win32-ia32-msvc': 1.6.13 - '@swc/core-win32-x64-msvc': 1.6.13 + '@swc/core-darwin-arm64': 1.7.35 + '@swc/core-darwin-x64': 1.7.35 + '@swc/core-linux-arm-gnueabihf': 1.7.35 + '@swc/core-linux-arm64-gnu': 1.7.35 + '@swc/core-linux-arm64-musl': 1.7.35 + '@swc/core-linux-x64-gnu': 1.7.35 + '@swc/core-linux-x64-musl': 1.7.35 + '@swc/core-win32-arm64-msvc': 1.7.35 + '@swc/core-win32-ia32-msvc': 1.7.35 + '@swc/core-win32-x64-msvc': 1.7.35 '@swc/counter@0.1.3': {} - '@swc/types@0.1.12': + '@swc/types@0.1.13': dependencies: '@swc/counter': 0.1.3 @@ -19226,9 +19227,9 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tanstack/eslint-plugin-query@5.59.7(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@tanstack/eslint-plugin-query@5.59.7(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@typescript-eslint/utils': 8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) transitivePeerDependencies: - supports-color @@ -19282,11 +19283,11 @@ snapshots: tslib: 2.6.3 optional: true - '@typechain/web3-v1@6.0.7(typechain@8.3.2(typescript@5.5.2))(typescript@5.5.2)(web3-core@1.10.4(encoding@0.1.13))(web3-eth-contract@1.10.2(encoding@0.1.13))(web3@1.10.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))': + '@typechain/web3-v1@6.0.7(typechain@8.3.2(typescript@5.7.0-beta))(typescript@5.7.0-beta)(web3-core@1.10.4(encoding@0.1.13))(web3-eth-contract@1.10.2(encoding@0.1.13))(web3@1.10.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))': dependencies: lodash: 4.17.21 - ts-essentials: 7.0.3(typescript@5.5.2) - typechain: 8.3.2(typescript@5.5.2) + ts-essentials: 7.0.3(typescript@5.7.0-beta) + typechain: 8.3.2(typescript@5.7.0-beta) web3: 1.10.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-core: 1.10.4(encoding@0.1.13) web3-eth-contract: 1.10.2(encoding@0.1.13) @@ -19319,35 +19320,35 @@ snapshots: '@types/bn.js@4.11.6': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/bn.js@5.1.1': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/bn.js@5.1.5': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/body-parser@1.19.2': dependencies: '@types/connect': 3.4.35 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/bonjour@3.5.13': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/bs58@4.0.4': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 base-x: 3.0.9 '@types/cacheable-request@6.0.2': dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/responselike': 1.0.0 '@types/chrome@0.0.136': @@ -19368,15 +19369,15 @@ snapshots: '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.17.31 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/connect@3.4.35': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/cookie@0.6.0': {} @@ -19536,13 +19537,13 @@ snapshots: '@types/express-serve-static-core@4.17.31': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 '@types/express-serve-static-core@4.19.5': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 '@types/send': 0.17.4 @@ -19563,27 +19564,27 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.1 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/geojson@7946.0.8': {} '@types/glob-stream@6.1.1': dependencies: '@types/glob': 8.0.0 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/glob@8.0.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/graceful-fs@4.1.5': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/gulp@4.0.17': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/undertaker': 1.2.8 '@types/vinyl-fs': 2.4.12 chokidar: 3.5.3 @@ -19602,7 +19603,7 @@ snapshots: '@types/http-proxy@1.17.9': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/isomorphic-fetch@0.0.36': {} @@ -19634,11 +19635,11 @@ snapshots: '@types/jsonfile@6.1.1': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/keyv@3.1.4': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/lodash-es@4.17.12': dependencies: @@ -19664,15 +19665,15 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/node-forge@1.3.11': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 - '@types/node@20.14.9': + '@types/node@22.7.5': dependencies: - undici-types: 5.26.5 + undici-types: 6.19.8 '@types/normalize-package-data@2.4.1': {} @@ -19680,7 +19681,7 @@ snapshots: '@types/pbkdf2@3.1.0': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/prettier@2.7.3': {} @@ -19692,7 +19693,7 @@ snapshots: '@types/qrcode@1.5.5': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/qs@6.9.7': {} @@ -19727,7 +19728,7 @@ snapshots: '@types/responselike@1.0.0': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/retry@0.12.1': {} @@ -19735,14 +19736,14 @@ snapshots: '@types/secp256k1@4.0.3': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/semver@7.5.1': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/serve-index@1.9.4': dependencies: @@ -19751,14 +19752,14 @@ snapshots: '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/send': 0.17.4 '@types/socket.io-client@1.4.36': {} '@types/sockjs@0.3.36': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/stack-utils@2.0.1': {} @@ -19774,7 +19775,7 @@ snapshots: '@types/undertaker@1.2.8': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/undertaker-registry': 1.0.1 async-done: 1.3.2 @@ -19789,15 +19790,15 @@ snapshots: '@types/vinyl-fs@2.4.12': dependencies: '@types/glob-stream': 6.1.1 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/vinyl': 2.0.7 '@types/vinyl@2.0.7': dependencies: '@types/expect': 1.20.4 - '@types/node': 20.14.9 + '@types/node': 22.7.5 - '@types/web@0.0.150': {} + '@types/web@0.0.171': {} '@types/webextension-polyfill@0.10.7': {} @@ -19805,11 +19806,11 @@ snapshots: '@types/ws@7.4.7': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/ws@8.5.10': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/yargs-parser@21.0.0': {} @@ -19823,36 +19824,36 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 - '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/visitor-keys': 8.8.1 eslint: 9.12.0(jiti@1.21.0) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.2) + ts-api-utils: 1.3.0(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.7.0-beta) '@typescript-eslint/visitor-keys': 8.8.1 debug: 4.3.5 eslint: 9.12.0(jiti@1.21.0) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color @@ -19871,14 +19872,14 @@ snapshots: '@typescript-eslint/types': 8.8.1 '@typescript-eslint/visitor-keys': 8.8.1 - '@typescript-eslint/type-utils@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/type-utils@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: - '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.2) - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.7.0-beta) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) debug: 4.3.5 - ts-api-utils: 1.3.0(typescript@5.5.2) + ts-api-utils: 1.3.0(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - eslint - supports-color @@ -19889,7 +19890,7 @@ snapshots: '@typescript-eslint/types@8.8.1': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.2)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.7.0-beta)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 @@ -19897,13 +19898,13 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.5.2) + tsutils: 3.21.0(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.3.0(typescript@5.5.2)': + '@typescript-eslint/typescript-estree@8.3.0(typescript@5.7.0-beta)': dependencies: '@typescript-eslint/types': 8.3.0 '@typescript-eslint/visitor-keys': 8.3.0 @@ -19912,13 +19913,13 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.5.2) + ts-api-utils: 1.3.0(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.8.1(typescript@5.5.2)': + '@typescript-eslint/typescript-estree@8.8.1(typescript@5.7.0-beta)': dependencies: '@typescript-eslint/types': 8.8.1 '@typescript-eslint/visitor-keys': 8.8.1 @@ -19927,20 +19928,20 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.5.2) + ts-api-utils: 1.3.0(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) '@types/json-schema': 7.0.12 '@types/semver': 7.5.1 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) eslint-scope: 5.1.1 semver: 7.6.2 @@ -19948,23 +19949,23 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/utils@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) '@typescript-eslint/scope-manager': 8.3.0 '@typescript-eslint/types': 8.3.0 - '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)': + '@typescript-eslint/utils@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0)) '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) transitivePeerDependencies: - supports-color @@ -20018,7 +20019,7 @@ snapshots: pathe: 1.1.1 picocolors: 1.0.0 sirv: 2.0.4 - vitest: 1.6.0(@types/node@20.14.9)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1) + vitest: 1.6.0(@types/node@22.7.5)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1) '@vitest/utils@1.6.0': dependencies: @@ -20608,19 +20609,19 @@ snapshots: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 - '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2) - '@webpack-cli/info@2.0.2(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@webpack-cli/info@2.0.2(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2) - '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4))': + '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4))': dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2) optionalDependencies: webpack-dev-server: 5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2) @@ -21657,7 +21658,7 @@ snapshots: chrome-launcher@0.15.1: dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.3.0 @@ -21990,7 +21991,7 @@ snapshots: dependencies: toggle-selection: 1.0.6 - copy-webpack-plugin@12.0.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + copy-webpack-plugin@12.0.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -21998,7 +21999,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) core-js-compat@3.37.1: dependencies: @@ -22023,12 +22024,12 @@ snapshots: object-assign: 4.1.1 vary: 1.1.2 - cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.5)(cosmiconfig@9.0.0(typescript@5.7.0-beta))(typescript@5.7.0-beta): dependencies: - '@types/node': 20.14.9 - cosmiconfig: 9.0.0(typescript@5.5.2) + '@types/node': 22.7.5 + cosmiconfig: 9.0.0(typescript@5.7.0-beta) jiti: 1.21.0 - typescript: 5.5.2 + typescript: 5.7.0-beta cosmiconfig@7.1.0: dependencies: @@ -22038,23 +22039,23 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.5.2): + cosmiconfig@8.3.6(typescript@5.7.0-beta): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta - cosmiconfig@9.0.0(typescript@5.5.2): + cosmiconfig@9.0.0(typescript@5.7.0-beta): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta crc-32@1.2.2: {} @@ -22651,9 +22652,9 @@ snapshots: dependencies: dequal: 2.0.3 - devtools-ignore-webpack-plugin@0.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + devtools-ignore-webpack-plugin@0.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) did-jwt@5.12.3: dependencies: @@ -23166,53 +23167,54 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.5 enhanced-resolve: 5.15.0 eslint: 9.12.0(jiti@1.21.0) - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) fast-glob: 3.3.2 get-tsconfig: 4.7.5 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@1.21.0)) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@1.21.0)) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): + eslint-module-utils@2.8.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)) transitivePeerDependencies: - supports-color - eslint-plugin-i@2.29.1(patch_hash=zgide6rxzjqivhxxv36ouq6c4y)(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-i@2.29.1(patch_hash=zgide6rxzjqivhxxv36ouq6c4y)(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)): dependencies: debug: 4.3.4 doctrine: 3.0.0 eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) get-tsconfig: 4.7.2 is-glob: 4.0.3 minimatch: 3.1.2 @@ -23223,7 +23225,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.28.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-import@2.28.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@1.21.0)): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.3 @@ -23233,7 +23235,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint-plugin-import@2.28.1)(eslint@9.12.0(jiti@1.21.0)))(eslint@9.12.0(jiti@1.21.0)) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -23244,7 +23246,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.14.2 optionalDependencies: - '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -23264,9 +23266,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-lingui@0.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-lingui@0.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) transitivePeerDependencies: - eslint - supports-color @@ -23276,63 +23278,63 @@ snapshots: dependencies: eslint: 8.57.0 - eslint-plugin-react-debug@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-debug@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) string-ts: 2.2.0 ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - eslint-plugin-react-dom@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-dom@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - eslint-plugin-react-hooks-extra@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-hooks-extra@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color @@ -23340,63 +23342,63 @@ snapshots: dependencies: eslint: 9.12.0(jiti@1.21.0) - eslint-plugin-react-naming-convention@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-naming-convention@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - eslint-plugin-react-web-api@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-web-api@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) birecord: 0.1.1 eslint: 9.12.0(jiti@1.21.0) ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color - eslint-plugin-react-x@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + eslint-plugin-react-x@1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/ast': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/core': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/jsx': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/shared': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@eslint-react/tools': 1.14.3 - '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@eslint-react/types': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@eslint-react/var': 1.14.3(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/scope-manager': 8.8.1 - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) '@typescript-eslint/types': 8.8.1 - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) - is-immutable-type: 5.0.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + is-immutable-type: 5.0.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) ts-pattern: 5.4.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color @@ -23424,11 +23426,11 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0)): dependencies: eslint: 9.12.0(jiti@1.21.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint-scope@5.1.1: dependencies: @@ -23920,11 +23922,11 @@ snapshots: dependencies: flat-cache: 4.0.1 - file-loader@6.2.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + file-loader@6.2.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) file-uri-to-path@1.0.0: {} @@ -24672,7 +24674,7 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + html-webpack-plugin@5.6.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: '@types/html-minifier-terser': 6.0.0 html-minifier-terser: 6.0.2 @@ -24680,7 +24682,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) htmlparser2@6.1.0: dependencies: @@ -24974,7 +24976,7 @@ snapshots: '@libp2p/interface-peer-info': 1.0.9(undici@5.23.0) '@libp2p/interface-pubsub': 3.0.7(undici@5.23.0) '@multiformats/multiaddr': 11.6.1(undici@5.23.0) - '@types/node': 20.14.9 + '@types/node': 22.7.5 interface-datastore: 7.0.4 ipfs-unixfs: 9.0.1 multiformats: 11.0.2 @@ -25190,13 +25192,13 @@ snapshots: is-hexadecimal@2.0.1: {} - is-immutable-type@5.0.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + is-immutable-type@5.0.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/type-utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) eslint: 9.12.0(jiti@1.21.0) - ts-api-utils: 1.3.0(typescript@5.5.2) - ts-declaration-location: 1.0.4(typescript@5.5.2) - typescript: 5.5.2 + ts-api-utils: 1.3.0(typescript@5.7.0-beta) + ts-declaration-location: 1.0.4(typescript@5.7.0-beta) + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color @@ -25456,7 +25458,7 @@ snapshots: '@types/connect': 3.4.35 '@types/express-serve-static-core': 4.17.31 '@types/lodash': 4.14.191 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/ws': 7.4.7 JSONStream: 1.3.5 commander: 2.20.3 @@ -25475,7 +25477,7 @@ snapshots: jayson@4.1.0(bufferutil@4.0.7)(utf-8-validate@5.0.10): dependencies: '@types/connect': 3.4.35 - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@types/ws': 7.4.7 JSONStream: 1.3.5 commander: 2.20.3 @@ -25503,7 +25505,7 @@ snapshots: '@jest/expect': 28.1.3 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -25521,16 +25523,16 @@ snapshots: transitivePeerDependencies: - supports-color - jest-cli@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)): + jest-cli@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)): dependencies: - '@jest/core': 28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + '@jest/core': 28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 28.1.3(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + jest-config: 28.1.3(@types/node@22.7.5)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 @@ -25542,7 +25544,7 @@ snapshots: - supports-color - ts-node - jest-config@28.1.3(@types/node@20.14.9)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)): + jest-config@28.1.3(@types/node@22.7.5)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)): dependencies: '@babel/core': 7.24.6 '@jest/test-sequencer': 28.1.3 @@ -25567,8 +25569,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.14.9 - ts-node: 10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2) + '@types/node': 22.7.5 + ts-node: 10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta) transitivePeerDependencies: - supports-color @@ -25596,7 +25598,7 @@ snapshots: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -25608,7 +25610,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 20.14.9 + '@types/node': 22.7.5 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -25647,7 +25649,7 @@ snapshots: jest-mock@28.1.3: dependencies: '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): optionalDependencies: @@ -25681,7 +25683,7 @@ snapshots: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.11 @@ -25751,14 +25753,14 @@ snapshots: jest-util: 28.1.3 natural-compare: 1.4.0 pretty-format: 28.1.3 - semver: 7.6.2 + semver: 7.6.3 transitivePeerDependencies: - supports-color jest-util@28.1.3: dependencies: '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -25786,7 +25788,7 @@ snapshots: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -25795,22 +25797,22 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@28.1.3: dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)): + jest@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)): dependencies: - '@jest/core': 28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + '@jest/core': 28.1.3(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) '@jest/types': 28.1.3 import-local: 3.1.0 - jest-cli: 28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + jest-cli: 28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) optionalDependencies: node-notifier: 10.0.1 transitivePeerDependencies: @@ -26016,12 +26018,12 @@ snapshots: kleur@3.0.3: {} - knip@5.23.2(@types/node@20.14.9)(typescript@5.5.2): + knip@5.23.2(@types/node@22.7.5)(typescript@5.7.0-beta): dependencies: '@ericcornelissen/bash-parser': 0.5.3 '@nodelib/fs.walk': 2.0.0 '@snyk/github-codeowners': 1.1.0 - '@types/node': 20.14.9 + '@types/node': 22.7.5 easy-table: 1.2.0 fast-glob: 3.3.2 jiti: 1.21.0 @@ -26035,7 +26037,7 @@ snapshots: strip-json-comments: 5.0.1 summary: 2.1.0 tsconfig-paths: 4.2.0 - typescript: 5.5.2 + typescript: 5.7.0-beta zod: 3.23.8 zod-validation-error: 3.2.0(zod@3.23.8) @@ -26775,11 +26777,6 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.2: - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - micromatch@4.0.7: dependencies: braces: 3.0.3 @@ -27757,7 +27754,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.14.9 + '@types/node': 22.7.5 long: 5.2.1 proxy-addr@2.0.7: @@ -28395,11 +28392,11 @@ snapshots: dependencies: bn.js: 5.2.1 - rollup-plugin-swc3@0.11.2(@swc/core@1.6.13)(rollup@4.18.0): + rollup-plugin-swc3@0.11.2(@swc/core@1.7.35)(rollup@4.18.0): dependencies: '@fastify/deepmerge': 1.3.0 '@rollup/pluginutils': 5.1.0(rollup@4.18.0) - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 get-tsconfig: 4.7.3 rollup: 4.18.0 rollup-preserve-directives: 1.1.1(rollup@4.18.0) @@ -28459,7 +28456,7 @@ snapshots: bufferutil: 4.0.7 utf-8-validate: 5.0.10 - rss3-next@0.6.17(patch_hash=db27yqpr4wdtpwfyvaxcqd4jpi)(bufferutil@4.0.7)(typescript@5.5.2)(utf-8-validate@5.0.10): + rss3-next@0.6.17(patch_hash=db27yqpr4wdtpwfyvaxcqd4jpi)(bufferutil@4.0.7)(typescript@5.7.0-beta)(utf-8-validate@5.0.10): dependencies: axios: 0.21.1 buffer: 6.0.3 @@ -28468,7 +28465,7 @@ snapshots: js-cookie: 3.0.1 tweetnacl: 1.0.3 tweetnacl-util: 0.15.1 - typescript-is: 0.18.2(typescript@5.5.2) + typescript-is: 0.18.2(typescript@5.7.0-beta) util: 0.12.4 transitivePeerDependencies: - bufferutil @@ -28822,11 +28819,11 @@ snapshots: source-map-js@1.2.0: {} - source-map-loader@5.0.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + source-map-loader@5.0.0(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) source-map-support@0.5.13: dependencies: @@ -29203,11 +29200,11 @@ snapshots: - supports-color - utf-8-validate - swc-loader@0.2.6(@swc/core@1.6.13)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + swc-loader@0.2.6(@swc/core@1.7.35)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 '@swc/counter': 0.1.3 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) symbol-tree@3.2.4: {} @@ -29247,16 +29244,16 @@ snapshots: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - terser-webpack-plugin@5.3.10(@swc/core@1.6.13)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + terser-webpack-plugin@5.3.10(@swc/core@1.7.35)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.31.1 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) optionalDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 terser@5.19.3: dependencies: @@ -29426,9 +29423,9 @@ snapshots: trough@2.1.0: {} - ts-api-utils@1.3.0(typescript@5.5.2): + ts-api-utils@1.3.0(typescript@5.7.0-beta): dependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta ts-command-line-args@2.5.1: dependencies: @@ -29437,52 +29434,52 @@ snapshots: command-line-usage: 6.1.3 string-format: 2.0.0 - ts-declaration-location@1.0.4(typescript@5.5.2): + ts-declaration-location@1.0.4(typescript@5.7.0-beta): dependencies: minimatch: 10.0.1 - typescript: 5.5.2 + typescript: 5.7.0-beta ts-easing@0.2.0: {} - ts-essentials@7.0.3(typescript@5.5.2): + ts-essentials@7.0.3(typescript@5.7.0-beta): dependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta - ts-jest@28.0.5(@babel/core@7.24.6)(babel-jest@28.1.3(@babel/core@7.24.6))(jest@28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2): + ts-jest@28.0.5(@babel/core@7.24.6)(babel-jest@28.1.3(@babel/core@7.24.6))(jest@28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)))(typescript@5.7.0-beta): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3(@types/node@20.14.9)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2)) + jest: 28.1.3(@types/node@22.7.5)(node-notifier@10.0.1)(ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta)) jest-util: 28.1.3 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 5.5.2 + typescript: 5.7.0-beta yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.6 babel-jest: 28.1.3(@babel/core@7.24.6) - ts-node@10.9.1(@swc/core@1.6.13)(@types/node@20.14.9)(typescript@5.5.2): + ts-node@10.9.1(@swc/core@1.7.35)(@types/node@22.7.5)(typescript@5.7.0-beta): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 20.14.9 + '@types/node': 22.7.5 acorn: 8.11.3 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.5.2 + typescript: 5.7.0-beta v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - '@swc/core': 1.6.13 + '@swc/core': 1.7.35 ts-pattern@5.4.0: {} @@ -29528,10 +29525,10 @@ snapshots: optionalDependencies: '@mui/material': 5.15.20(@emotion/react@11.11.4(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1))(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1))(react-dom@0.0.0-experimental-58af67a8f8-20240628(react@0.0.0-experimental-58af67a8f8-20240628))(react@0.0.0-experimental-58af67a8f8-20240628)(types-react@19.0.0-beta.1) - tsutils@3.21.0(typescript@5.5.2): + tsutils@3.21.0(typescript@5.7.0-beta): dependencies: tslib: 1.14.1 - typescript: 5.5.2 + typescript: 5.7.0-beta tunnel-agent@0.6.0: dependencies: @@ -29592,7 +29589,7 @@ snapshots: type@2.5.0: {} - typechain@8.3.2(typescript@5.5.2): + typechain@8.3.2(typescript@5.7.0-beta): dependencies: '@types/prettier': 2.7.3 debug: 4.3.4 @@ -29603,8 +29600,8 @@ snapshots: mkdirp: 1.0.4 prettier: 2.8.8 ts-command-line-args: 2.5.1 - ts-essentials: 7.0.3(typescript@5.5.2) - typescript: 5.5.2 + ts-essentials: 7.0.3(typescript@5.7.0-beta) + typescript: 5.7.0-beta transitivePeerDependencies: - supports-color @@ -29662,28 +29659,31 @@ snapshots: dependencies: csstype: 3.1.3 - typescript-eslint@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): + typescript-eslint@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta): dependencies: - '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta))(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@typescript-eslint/parser': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) + '@typescript-eslint/utils': 8.8.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.7.0-beta) optionalDependencies: - typescript: 5.5.2 + typescript: 5.7.0-beta transitivePeerDependencies: - eslint - supports-color - typescript-is@0.18.2(typescript@5.5.2): + typescript-is@0.18.2(typescript@5.7.0-beta): dependencies: nested-error-stacks: 2.1.1 - tsutils: 3.21.0(typescript@5.5.2) - typescript: 5.5.2 + tsutils: 3.21.0(typescript@5.7.0-beta) + typescript: 5.7.0-beta optionalDependencies: reflect-metadata: 0.1.13(patch_hash=pnra5xi77mqlyipflqvcm4z6ga) typescript-memoize@1.1.0: {} - typescript@5.5.2: {} + typescript@5.5.2: + optional: true + + typescript@5.7.0-beta: {} typeson-registry@11.1.1: dependencies: @@ -29746,7 +29746,7 @@ snapshots: last-run: 2.0.0 undertaker-registry: 2.0.0 - undici-types@5.26.5: {} + undici-types@6.19.8: {} undici@5.23.0: dependencies: @@ -30040,13 +30040,13 @@ snapshots: replace-ext: 2.0.0 teex: 1.0.1 - vite-node@1.6.0(@types/node@20.14.9)(terser@5.31.1): + vite-node@1.6.0(@types/node@22.7.5)(terser@5.31.1): dependencies: cac: 6.7.14 debug: 4.3.5 pathe: 1.1.1 picocolors: 1.0.1 - vite: 5.3.2(@types/node@20.14.9)(terser@5.31.1) + vite: 5.3.2(@types/node@22.7.5)(terser@5.31.1) transitivePeerDependencies: - '@types/node' - less @@ -30057,17 +30057,17 @@ snapshots: - supports-color - terser - vite@5.3.2(@types/node@20.14.9)(terser@5.31.1): + vite@5.3.2(@types/node@22.7.5)(terser@5.31.1): dependencies: esbuild: 0.21.5 postcss: 8.4.39 rollup: 4.18.0 optionalDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 fsevents: 2.3.3 terser: 5.31.1 - vitest@1.6.0(@types/node@20.14.9)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1): + vitest@1.6.0(@types/node@22.7.5)(@vitest/ui@1.6.0)(jsdom@20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10))(terser@5.31.1): dependencies: '@vitest/expect': 1.6.0 '@vitest/runner': 1.6.0 @@ -30086,11 +30086,11 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.8.0 tinypool: 0.8.4 - vite: 5.3.2(@types/node@20.14.9)(terser@5.31.1) - vite-node: 1.6.0(@types/node@20.14.9)(terser@5.31.1) + vite: 5.3.2(@types/node@22.7.5)(terser@5.31.1) + vite-node: 1.6.0(@types/node@22.7.5)(terser@5.31.1) why-is-node-running: 2.2.2 optionalDependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 '@vitest/ui': 1.6.0(vitest@1.6.0) jsdom: 20.0.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -30197,7 +30197,7 @@ snapshots: web3-bzz@1.10.2(bufferutil@4.0.7)(utf-8-validate@5.0.10): dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 got: 12.1.0 swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -30279,7 +30279,7 @@ snapshots: web3-core@1.10.2(encoding@0.1.13): dependencies: '@types/bn.js': 5.1.5 - '@types/node': 20.14.9 + '@types/node': 22.7.5 bignumber.js: 9.1.2 web3-core-helpers: 1.10.2 web3-core-method: 1.10.2 @@ -30292,7 +30292,7 @@ snapshots: web3-core@1.10.4(encoding@0.1.13): dependencies: '@types/bn.js': 5.1.5 - '@types/node': 20.14.9 + '@types/node': 22.7.5 bignumber.js: 9.1.2 web3-core-helpers: 1.10.4 web3-core-method: 1.10.4 @@ -30368,7 +30368,7 @@ snapshots: web3-eth-personal@1.10.2(encoding@0.1.13): dependencies: - '@types/node': 20.14.9 + '@types/node': 22.7.5 web3-core: 1.10.2(encoding@0.1.13) web3-core-helpers: 1.10.2 web3-core-method: 1.10.2 @@ -30537,9 +30537,9 @@ snapshots: webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2): dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) - '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) - '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2))(webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2))(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) colorette: 2.0.19 commander: 10.0.1 cross-spawn: 7.0.3 @@ -30548,12 +30548,12 @@ snapshots: import-local: 3.1.0 interpret: 3.1.1 rechoir: 0.8.0 - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-merge: 5.8.0 optionalDependencies: webpack-dev-server: 5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2) - webpack-dev-middleware@7.2.1(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + webpack-dev-middleware@7.2.1(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: colorette: 2.0.20 memfs: 4.9.3 @@ -30562,7 +30562,7 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.2.0 optionalDependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-dev-server@5.0.4(bufferutil@4.0.7)(utf-8-validate@5.0.10)(webpack-cli@5.1.4)(webpack@5.88.2): dependencies: @@ -30594,10 +30594,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.2.1(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + webpack-dev-middleware: 7.2.1(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10) optionalDependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-dev-server@5.0.4)(webpack@5.88.2) transitivePeerDependencies: - bufferutil @@ -30612,11 +30612,11 @@ snapshots: webpack-sources@3.2.3: {} - webpack-target-webextension@1.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)): + webpack-target-webextension@1.1.2(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)): dependencies: - webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4) + webpack: https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4) - webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4): + webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4): dependencies: '@types/eslint-scope': 3.7.4 '@types/estree': 1.0.5 @@ -30639,7 +30639,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.6.13)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.6.13)(webpack-cli@5.1.4)) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.35)(webpack@https://codeload.github.com/Jack-Works/webpack/tar.gz/f7244d8e23e799b84a536efb2fdccec5370ac37e(@swc/core@1.7.35)(webpack-cli@5.1.4)) watchpack: 2.4.0 webpack-sources: 3.2.3 optionalDependencies: @@ -30987,4 +30987,4 @@ snapshots: zwitch@2.0.2: {} time: - '@types/web@0.0.150': '2024-06-26T04:08:07.551Z' + '@types/web@0.0.171': '2024-10-13T04:08:50.020Z'