diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5adb8cc1dd..f0194277c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,7 @@ variables: POSTGRES_PASSWORD: 'password' POSTGRES_HOST_AUTH_METHOD: 'trust' DEBIAN_FRONTEND: 'noninteractive' + NODE_OPTIONS: '--max_old_space_size=3072' CARGO_PROFILE_DEV_OPT_LEVEL: '0' CARGO_PROFILE_DEV_LTO: 'off' CARGO_PROFILE_DEV_DEBUG: 'none' @@ -119,7 +120,7 @@ test:build:backend_ts: - cp packages/backend-rs/index.js packages/backend-rs/built/index.js - cp packages/backend-rs/index.d.ts packages/backend-rs/built/index.d.ts - cp ci/cargo/config.toml /usr/local/cargo/config.toml - - test -f packages/backend-rs/built/backend-rs.linux-x64-gnu.node || pnpm --filter 'backend-rs' run build:debug + - test -f packages/backend-rs/built/backend-rs.linux-x64-gnu.node || pnpm install --frozen-lockfile && pnpm --filter 'backend-rs' run build:debug - cp .config/ci.yml .config/default.yml - export PGPASSWORD="${POSTGRES_PASSWORD}" - psql --host postgres --user "${POSTGRES_USER}" --dbname "${POSTGRES_DB}" --command 'CREATE EXTENSION pgroonga' diff --git a/Cargo.lock b/Cargo.lock index c3290b0b89..9809ee0e49 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,7 +207,7 @@ dependencies = [ "chrono", "cuid2", "emojis", - "idna 1.0.1", + "idna 1.0.2", "image", "isahc", "macros", @@ -1403,9 +1403,9 @@ dependencies = [ [[package]] name = "idna" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44a986806a1cc899952ba462bc1f28afbfd5850ab6cb030ccb20dd02cc527a24" +checksum = "bd69211b9b519e98303c015e21a007e293db403b6c85b9b124e133d25e242cdd" dependencies = [ "icu_normalizer", "icu_properties", @@ -1831,9 +1831,9 @@ checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a" [[package]] name = "napi-derive" -version = "2.16.6" +version = "2.16.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70a8a778fd367b13c64232e58632514b795514ece491ce136d96e976d34a3eb8" +checksum = "eafd2b920906ea5b1f5f1f9d1eff9cc74e4ff8124dca41b501c1413079589187" dependencies = [ "cfg-if", "convert_case", @@ -1845,9 +1845,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "1.0.68" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35849e64596ecd467e1ac897153364a1ffd09b1d79b32ebad94ef8980ac73311" +checksum = "b370b784440c65eb9001d839012eb912ee43e3a2d0361e2c30c13052372c39fe" dependencies = [ "convert_case", "once_cell", @@ -2960,9 +2960,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.118" +version = "1.0.120" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d947f6b3163d8857ea16c4fa0dd4840d52f3041039a85decd46867eb1abef2e4" +checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 3f35cb50dc..9ae97ff69e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ macros = { path = "packages/macro-rs/macros" } macros-impl = { path = "packages/macro-rs/macros-impl" } napi = "2.16.8" -napi-derive = "2.16.6" +napi-derive = "2.16.8" napi-build = "2.1.3" argon2 = { version = "0.5.3", default-features = false } @@ -19,7 +19,7 @@ chrono = { version = "0.4.38", default-features = false } convert_case = { version = "0.6.0", default-features = false } cuid2 = { version = "0.1.2", default-features = false } emojis = { version = "0.6.2", default-features = false } -idna = { version = "1.0.1", default-features = false } +idna = { version = "1.0.2", default-features = false } image = { version = "0.25.1", default-features = false } isahc = { version = "1.7.2", default-features = false } nom-exif = { version = "1.2.0", default-features = false } @@ -33,7 +33,7 @@ regex = { version = "1.10.5", default-features = false } rmp-serde = { version = "1.3.0", default-features = false } sea-orm = { version = "0.12.15", default-features = false } serde = { version = "1.0.203", default-features = false } -serde_json = { version = "1.0.118", default-features = false } +serde_json = { version = "1.0.120", default-features = false } serde_yaml = { version = "0.9.34", default-features = false } syn = { version = "2.0.68", default-features = false } sysinfo = { version = "0.30.12", default-features = false } diff --git a/Dockerfile b/Dockerfile index 633f684d1d..26e3446fbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ COPY packages/backend-rs packages/backend-rs/ # Compile backend-rs RUN ln -s $(which gcc) /usr/bin/aarch64-linux-musl-gcc -RUN NODE_ENV='production' pnpm run --filter backend-rs build +RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run --filter backend-rs build # Copy/Overwrite index.js to mitigate the bug in napi-rs codegen COPY packages/backend-rs/index.js packages/backend-rs/built/index.js @@ -45,7 +45,7 @@ RUN pnpm install --frozen-lockfile COPY . ./ # Build other workspaces -RUN NODE_ENV='production' pnpm run --recursive --filter '!backend-rs' build && pnpm run build:assets +RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run --recursive --filter '!backend-rs' build && pnpm run build:assets # Trim down the dependencies to only those for production RUN find . -path '*/node_modules/*' -delete && pnpm install --prod --frozen-lockfile diff --git a/packages/backend-rs/index.d.ts b/packages/backend-rs/index.d.ts index 50a212dd6a..14fb69e7fd 100644 --- a/packages/backend-rs/index.d.ts +++ b/packages/backend-rs/index.d.ts @@ -46,7 +46,7 @@ export interface Acct { host: string | null } -export function acctToString(acct: Acct): string +export declare function acctToString(acct: Acct): string export interface Ad { id: string @@ -194,7 +194,7 @@ export enum ChatIndexEvent { * * `muted_words` : list of muted keyword lists (each array item is a space-separated keyword list that represents an AND condition) * * `muted_patterns` : list of JavaScript-style (e.g., `/foo/i`) regular expressions */ -export function checkWordMute(note: PartialNoteToCheckWordMute, mutedWords: Array<string>, mutedPatterns: Array<string>): Promise<boolean> +export declare function checkWordMute(note: PartialNoteToCheckWordMute, mutedWords: Array<string>, mutedPatterns: Array<string>): Promise<boolean> export interface Clip { id: string @@ -263,16 +263,16 @@ export interface Config { userAgent: string } -export function countReactions(reactions: Record<string, number>): Record<string, number> +export declare function countReactions(reactions: Record<string, number>): Record<string, number> export interface Cpu { model: string cores: number } -export function cpuInfo(): Cpu +export declare function cpuInfo(): Cpu -export function cpuUsage(): number +export declare function cpuUsage(): number export const DAY: number @@ -292,7 +292,7 @@ export interface DecodedReaction { host: string | null } -export function decodeReaction(reaction: string): DecodedReaction +export declare function decodeReaction(reaction: string): DecodedReaction export interface DeepLConfig { managed?: boolean @@ -381,12 +381,12 @@ export interface Emoji { height: number | null } -export function extractHost(uri: string): string +export declare function extractHost(uri: string): string -export function fetchMeta(): Promise<Meta> +export declare function fetchMeta(): Promise<Meta> /** Fetches and returns the NodeInfo (version 2.0) of a remote server. */ -export function fetchNodeinfo(host: string): Promise<Nodeinfo> +export declare function fetchNodeinfo(host: string): Promise<Nodeinfo> /** * List of file types allowed to be viewed directly in the browser @@ -427,7 +427,7 @@ export interface FollowRequest { } /** Converts milliseconds to a human readable string. */ -export function formatMilliseconds(milliseconds: number): string +export declare function formatMilliseconds(milliseconds: number): string export interface GalleryLike { id: string @@ -450,9 +450,9 @@ export interface GalleryPost { } /** Generates a random string based on [thread_rng] and [Alphanumeric]. */ -export function generateSecureRandomString(length: number): string +export declare function generateSecureRandomString(length: number): string -export function generateUserToken(): string +export declare function generateUserToken(): string /** * The generated ID results in the form of `[8 chars timestamp] + [cuid2]`. @@ -462,24 +462,24 @@ export function generateUserToken(): string * * Ref: <https://github.com/paralleldrive/cuid2#parameterized-length> */ -export function genId(): string +export declare function genId(): string /** Generate an ID using a specific datetime */ -export function genIdAt(date: Date): string +export declare function genIdAt(date: Date): string -export function getFullApAccount(username: string, host?: string | undefined | null): string +export declare function getFullApAccount(username: string, host?: string | undefined | null): string -export function getImageSizeFromUrl(url: string): Promise<ImageSize> +export declare function getImageSizeFromUrl(url: string): Promise<ImageSize> -export function getNoteSummary(fileIds: Array<string>, text: string | undefined | null, cw: string | undefined | null, hasPoll: boolean): string +export declare function getNoteSummary(fileIds: Array<string>, text: string | undefined | null, cw: string | undefined | null, hasPoll: boolean): string -export function getTimestamp(id: string): number +export declare function getTimestamp(id: string): number /** Prints the greeting message and the Firefish version to stdout. */ -export function greet(): void +export declare function greet(): void /** Hashes the given password using [argon2] algorithm. */ -export function hashPassword(password: string): string +export declare function hashPassword(password: string): string export interface Hashtag { id: string @@ -523,7 +523,7 @@ export enum Inbound { } /** Initializes the [tracing] logger. */ -export function initializeRustLogger(): void +export declare function initializeRustLogger(): void export interface Instance { id: string @@ -571,7 +571,7 @@ export interface Instance { * # } * ``` */ -export function isAllowedServer(host: string): Promise<boolean> +export declare function isAllowedServer(host: string): Promise<boolean> /** * Checks if a server is blocked. @@ -591,18 +591,18 @@ export function isAllowedServer(host: string): Promise<boolean> * # } * ``` */ -export function isBlockedServer(host: string): Promise<boolean> +export declare function isBlockedServer(host: string): Promise<boolean> /** Returns whether the [bcrypt] algorithm is used for the password hash. */ -export function isOldPasswordAlgorithm(hash: string): boolean +export declare function isOldPasswordAlgorithm(hash: string): boolean -export function isQuote(note: NoteLikeForIsQuote): boolean +export declare function isQuote(note: NoteLikeForIsQuote): boolean -export function isSafeUrl(url: string): boolean +export declare function isSafeUrl(url: string): boolean -export function isSameOrigin(uri: string): boolean +export declare function isSameOrigin(uri: string): boolean -export function isSelfHost(host?: string | undefined | null): boolean +export declare function isSelfHost(host?: string | undefined | null): boolean /** * Checks if a server is silenced. @@ -622,12 +622,12 @@ export function isSelfHost(host?: string | undefined | null): boolean * # } * ``` */ -export function isSilencedServer(host: string): Promise<boolean> +export declare function isSilencedServer(host: string): Promise<boolean> -export function isUnicodeEmoji(s: string): boolean +export declare function isUnicodeEmoji(s: string): boolean /** Returns the latest Firefish version. */ -export function latestVersion(): Promise<string> +export declare function latestVersion(): Promise<string> export interface LibreTranslateConfig { managed?: boolean @@ -635,7 +635,7 @@ export interface LibreTranslateConfig { apiKey?: string } -export function loadConfig(): Config +export declare function loadConfig(): Config export interface Memory { /** Total memory amount in bytes */ @@ -646,7 +646,7 @@ export interface Memory { available: number } -export function memoryUsage(): Memory +export declare function memoryUsage(): Memory export interface MessagingMessage { id: string @@ -749,7 +749,7 @@ export interface Meta { antennaLimit: number } -export function metaToPugArgs(meta: Meta): PugArgs +export declare function metaToPugArgs(meta: Meta): PugArgs export interface Migrations { id: number @@ -805,9 +805,9 @@ export interface Nodeinfo { metadata: Record<string, any> } -export function nodeinfo_2_0(): Promise<any> +export declare function nodeinfo_2_0(): Promise<any> -export function nodeinfo_2_1(): Promise<any> +export declare function nodeinfo_2_1(): Promise<any> export interface Note { id: string @@ -969,7 +969,7 @@ export enum NotificationType { * assert_eq!(nyaify("I'll take a nap.", Some("en")), "I'll take a nyap."); * ``` */ -export function nyaify(text: string, lang?: string | undefined | null): string +export declare function nyaify(text: string, lang?: string | undefined | null): string export interface ObjectStorageConfig { managed?: boolean @@ -1131,23 +1131,23 @@ export enum Protocol { Zot = 9 } -export function publishToBroadcastStream(emoji: PackedEmoji): Promise<void> +export declare function publishToBroadcastStream(emoji: PackedEmoji): Promise<void> -export function publishToChannelStream(channelId: string, userId: string): Promise<void> +export declare function publishToChannelStream(channelId: string, userId: string): Promise<void> -export function publishToChatIndexStream(userId: string, kind: ChatIndexEvent, object: any): Promise<void> +export declare function publishToChatIndexStream(userId: string, kind: ChatIndexEvent, object: any): Promise<void> -export function publishToChatStream(senderUserId: string, receiverUserId: string, kind: ChatEvent, object: any): Promise<void> +export declare function publishToChatStream(senderUserId: string, receiverUserId: string, kind: ChatEvent, object: any): Promise<void> -export function publishToDriveFileStream(userId: string, kind: DriveFileEvent, object: any): Promise<void> +export declare function publishToDriveFileStream(userId: string, kind: DriveFileEvent, object: any): Promise<void> -export function publishToDriveFolderStream(userId: string, kind: DriveFolderEvent, object: any): Promise<void> +export declare function publishToDriveFolderStream(userId: string, kind: DriveFolderEvent, object: any): Promise<void> -export function publishToGroupChatStream(groupId: string, kind: ChatEvent, object: any): Promise<void> +export declare function publishToGroupChatStream(groupId: string, kind: ChatEvent, object: any): Promise<void> -export function publishToModerationStream(moderatorId: string, report: AbuseUserReportLike): Promise<void> +export declare function publishToModerationStream(moderatorId: string, report: AbuseUserReportLike): Promise<void> -export function publishToNotesStream(note: Note): Promise<void> +export declare function publishToNotesStream(note: Note): Promise<void> export interface PugArgs { img: string | null @@ -1225,7 +1225,7 @@ export enum RelayStatus { } /** Delete all entries in the [attestation_challenge] table created at more than 5 minutes ago */ -export function removeOldAttestationChallenges(): Promise<void> +export declare function removeOldAttestationChallenges(): Promise<void> export interface RenoteMuting { id: string @@ -1242,11 +1242,11 @@ export interface ReplyMuting { } /** Returns `true` if `src` does not contain suspicious characters like `%`. */ -export function safeForSql(src: string): boolean +export declare function safeForSql(src: string): boolean export const SECOND: number -export function sendPushNotification(receiverUserId: string, kind: PushNotificationKind, content: any): Promise<void> +export declare function sendPushNotification(receiverUserId: string, kind: PushNotificationKind, content: any): Promise<void> export interface ServerConfig { url: string @@ -1307,7 +1307,7 @@ export interface Services { } /** Prints the server hardware information as the server info log. */ -export function showServerInfo(): void +export declare function showServerInfo(): void export interface Signin { id: string @@ -1327,9 +1327,9 @@ export interface Software20 { } /** Escapes `%` and `\` in the given string. */ -export function sqlLikeEscape(src: string): string +export declare function sqlLikeEscape(src: string): string -export function sqlRegexEscape(src: string): string +export declare function sqlRegexEscape(src: string): string export interface Storage { /** Total storage space in bytes */ @@ -1338,9 +1338,9 @@ export interface Storage { used: number } -export function storageUsage(): Storage | null +export declare function storageUsage(): Storage | null -export function stringToAcct(acct: string): Acct +export declare function stringToAcct(acct: string): Acct export interface SwSubscription { id: string @@ -1364,19 +1364,19 @@ export interface TlsConfig { rejectUnauthorized: boolean } -export function toDbReaction(reaction?: string | undefined | null, host?: string | undefined | null): Promise<string> +export declare function toDbReaction(reaction?: string | undefined | null, host?: string | undefined | null): Promise<string> -export function toPuny(host: string): string +export declare function toPuny(host: string): string -export function unwatchNote(watcherId: string, noteId: string): Promise<void> +export declare function unwatchNote(watcherId: string, noteId: string): Promise<void> -export function updateAntennaCache(): Promise<void> +export declare function updateAntennaCache(): Promise<void> -export function updateAntennasOnNewNote(note: Note, noteAuthor: Acct, noteMutedUsers: Array<string>): Promise<void> +export declare function updateAntennasOnNewNote(note: Note, noteAuthor: Acct, noteMutedUsers: Array<string>): Promise<void> -export function updateMetaCache(): Promise<void> +export declare function updateMetaCache(): Promise<void> -export function updateNodeinfoCache(): Promise<void> +export declare function updateNodeinfoCache(): Promise<void> /** Usage statistics for this server. */ export interface Usage { @@ -1596,9 +1596,9 @@ export interface UserSecurityKey { } /** Checks whether the given password and hash match. */ -export function verifyPassword(password: string, hash: string): boolean +export declare function verifyPassword(password: string, hash: string): boolean -export function watchNote(watcherId: string, noteAuthorId: string, noteId: string): Promise<void> +export declare function watchNote(watcherId: string, noteAuthorId: string, noteId: string): Promise<void> export interface Webhook { id: string diff --git a/packages/backend-rs/src/misc/is_quote.rs b/packages/backend-rs/src/misc/is_quote.rs index b65ea8adf7..e754b82936 100644 --- a/packages/backend-rs/src/misc/is_quote.rs +++ b/packages/backend-rs/src/misc/is_quote.rs @@ -1,4 +1,3 @@ -// TODO?: handle name collisions #[macros::export(object, js_name = "NoteLikeForIsQuote")] pub struct NoteLike { pub renote_id: Option<String>, diff --git a/packages/backend/package.json b/packages/backend/package.json index 2557859d77..1368736050 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -28,18 +28,18 @@ "@koa/router": "12.0.1", "@ladjs/koa-views": "9.0.0", "@peertube/http-signature": "1.7.0", - "@redocly/openapi-core": "1.16.0", + "@redocly/openapi-core": "1.17.0", "@sinonjs/fake-timers": "11.2.2", "adm-zip": "0.5.14", "ajv": "8.16.0", "archiver": "7.0.1", "async-lock": "1.4.0", "async-mutex": "0.5.0", - "aws-sdk": "2.1651.0", + "aws-sdk": "2.1652.0", "axios": "1.7.2", "backend-rs": "workspace:*", "blurhash": "2.0.5", - "bull": "4.14.0", + "bull": "4.15.0", "cacheable-lookup": "git+https://github.com/TheEssem/cacheable-lookup.git#dd2fb616366a3c68dcf321a57a67295967b204bf", "cbor-x": "1.5.9", "chalk": "5.3.0", @@ -93,7 +93,7 @@ "punycode": "2.3.1", "pureimage": "0.4.13", "qrcode": "1.5.3", - "qs": "6.12.1", + "qs": "6.12.2", "random-seed": "0.3.0", "ratelimiter": "3.4.1", "redis-semaphore": "5.6.0", @@ -172,7 +172,7 @@ "tsc-alias": "1.8.10", "tsconfig-paths": "4.2.0", "type-fest": "4.20.1", - "typescript": "5.5.2", + "typescript": "5.5.3", "webpack": "5.92.1", "ws": "8.17.1" } diff --git a/packages/backend/src/server/web/feed.ts b/packages/backend/src/server/web/feed.ts index 3beffc82f0..efdda8c1cd 100644 --- a/packages/backend/src/server/web/feed.ts +++ b/packages/backend/src/server/web/feed.ts @@ -5,6 +5,7 @@ import type { User } from "@/models/entities/user.js"; import type { Note } from "@/models/entities/note.js"; import { Notes, DriveFiles, UserProfiles, Users } from "@/models/index.js"; import getNoteHtml from "@/remote/activitypub/misc/get-note-html.js"; +import { isQuote, getNoteSummary } from "backend-rs"; /** * If there is this part in the note, it will cause CDATA to be terminated early. @@ -17,7 +18,7 @@ export default async function ( user: User, threadDepth = 5, history = 20, - noteintitle = false, + noteintitle = true, renotes = true, replies = true, ) { @@ -81,20 +82,26 @@ export default async function ( depth -= 1; } - let title = `${author.name} `; - if (note.renoteId) { - title += "renotes"; - } else if (note.replyId) { - title += "replies"; - } else { - title += "says"; - } + let title = `Post by ${author.name}`; + if (noteintitle) { - const content = note.cw ?? note.text; + if (note.renoteId) { + title = `Boost by ${author.name}`; + } else if (note.replyId) { + title = `Reply by ${author.name}`; + } else { + title = `Post by ${author.name}`; + } + const effectiveNote = + !isQuote(note) && note.renote != null ? note.renote : note; + const content = getNoteSummary( + effectiveNote.fileIds, + effectiveNote.text, + effectiveNote.cw, + effectiveNote.hasPoll, + ); if (content) { title += `: ${content}`; - } else { - title += "something"; } } diff --git a/packages/client/package.json b/packages/client/package.json index ef4d95d8b4..26c6027b73 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -79,7 +79,7 @@ "throttle-debounce": "5.0.2", "tinycolor2": "1.6.0", "tinyld": "1.3.4", - "typescript": "5.5.2", + "typescript": "5.5.3", "unicode-emoji-json": "0.6.0", "uuid": "10.0.0", "vite": "5.3.2", @@ -88,6 +88,6 @@ "vue-draggable-plus": "0.5.0", "vue-plyr": "7.0.0", "vue-prism-editor": "2.0.0-alpha.2", - "vue-tsc": "2.0.22" + "vue-tsc": "2.0.24" } } diff --git a/packages/client/src/widgets/rss-ticker.vue b/packages/client/src/widgets/rss-ticker.vue index 517033f952..2fc3ed7252 100644 --- a/packages/client/src/widgets/rss-ticker.vue +++ b/packages/client/src/widgets/rss-ticker.vue @@ -56,7 +56,7 @@ const name = "rssTicker"; const widgetPropsDef = { url: { type: "string" as const, - default: "http://feeds.afpbb.com/rss/afpbb/afpbbnews", + default: "https://info.firefish.dev/@firefish.rss?noteintitle", }, shuffle: { type: "boolean" as const, diff --git a/packages/client/src/widgets/rss.vue b/packages/client/src/widgets/rss.vue index 5f1eca3f12..2ed3a36bb7 100644 --- a/packages/client/src/widgets/rss.vue +++ b/packages/client/src/widgets/rss.vue @@ -46,7 +46,7 @@ const name = "rss"; const widgetPropsDef = { url: { type: "string" as const, - default: "http://feeds.afpbb.com/rss/afpbb/afpbbnews", + default: "https://info.firefish.dev/@firefish.rss?noteintitle", }, height: { type: "number" as const, diff --git a/packages/firefish-js/package.json b/packages/firefish-js/package.json index 16b1c84f65..f929db6a2b 100644 --- a/packages/firefish-js/package.json +++ b/packages/firefish-js/package.json @@ -30,7 +30,7 @@ "ts-node": "10.9.2", "tsc-alias": "1.8.10", "tsd": "0.31.1", - "typescript": "5.5.2" + "typescript": "5.5.3" }, "files": [ "built", "src" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 70a2e3899a..60e6b5208e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -67,8 +67,8 @@ importers: specifier: 1.7.0 version: 1.7.0 '@redocly/openapi-core': - specifier: 1.16.0 - version: 1.16.0 + specifier: 1.17.0 + version: 1.17.0 '@sinonjs/fake-timers': specifier: 11.2.2 version: 11.2.2 @@ -88,8 +88,8 @@ importers: specifier: 0.5.0 version: 0.5.0 aws-sdk: - specifier: 2.1651.0 - version: 2.1651.0 + specifier: 2.1652.0 + version: 2.1652.0 axios: specifier: 1.7.2 version: 1.7.2 @@ -100,8 +100,8 @@ importers: specifier: 2.0.5 version: 2.0.5 bull: - specifier: 4.14.0 - version: 4.14.0 + specifier: 4.15.0 + version: 4.15.0 cacheable-lookup: specifier: git+https://github.com/TheEssem/cacheable-lookup.git#dd2fb616366a3c68dcf321a57a67295967b204bf version: https://codeload.github.com/TheEssem/cacheable-lookup/tar.gz/dd2fb616366a3c68dcf321a57a67295967b204bf @@ -262,8 +262,8 @@ importers: specifier: 1.5.3 version: 1.5.3 qs: - specifier: 6.12.1 - version: 6.12.1 + specifier: 6.12.2 + version: 6.12.2 random-seed: specifier: 0.3.0 version: 0.3.0 @@ -317,7 +317,7 @@ importers: version: 0.2.3 typeorm: specifier: 0.3.20 - version: 0.3.20(ioredis@5.4.1)(pg@8.12.0)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + version: 0.3.20(ioredis@5.4.1)(pg@8.12.0)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) ulid: specifier: 2.3.0 version: 2.3.0 @@ -480,10 +480,10 @@ importers: version: 2.0.0 ts-loader: specifier: 9.5.1 - version: 9.5.1(typescript@5.5.2)(webpack@5.92.1(@swc/core@1.6.5)) + version: 9.5.1(typescript@5.5.3)(webpack@5.92.1) ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2) + version: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) tsc-alias: specifier: 1.8.10 version: 1.8.10 @@ -494,11 +494,11 @@ importers: specifier: 4.20.1 version: 4.20.1 typescript: - specifier: 5.5.2 - version: 5.5.2 + specifier: 5.5.3 + version: 5.5.3 webpack: specifier: 5.92.1 - version: 5.92.1(@swc/core@1.6.5) + version: 5.92.1 ws: specifier: 8.17.1 version: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -570,7 +570,7 @@ importers: version: 10.0.0 '@vitejs/plugin-vue': specifier: 5.0.5 - version: 5.0.5(vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0))(vue@3.4.31(typescript@5.5.2)) + version: 5.0.5(vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0))(vue@3.4.31(typescript@5.5.3)) '@vue/runtime-core': specifier: 3.4.31 version: 3.4.31 @@ -630,7 +630,7 @@ importers: version: 7.5.4 focus-trap-vue: specifier: 4.0.3 - version: 4.0.3(focus-trap@7.5.4)(vue@3.4.31(typescript@5.5.2)) + version: 4.0.3(focus-trap@7.5.4)(vue@3.4.31(typescript@5.5.3)) gsap: specifier: 3.12.5 version: 3.12.5 @@ -710,8 +710,8 @@ importers: specifier: 1.3.4 version: 1.3.4 typescript: - specifier: 5.5.2 - version: 5.5.2 + specifier: 5.5.3 + version: 5.5.3 unicode-emoji-json: specifier: 0.6.0 version: 0.6.0 @@ -726,7 +726,7 @@ importers: version: 0.5.1(vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0)) vue: specifier: 3.4.31 - version: 3.4.31(typescript@5.5.2) + version: 3.4.31(typescript@5.5.3) vue-draggable-plus: specifier: 0.5.0 version: 0.5.0(@types/sortablejs@1.15.8) @@ -735,10 +735,10 @@ importers: version: 7.0.0 vue-prism-editor: specifier: 2.0.0-alpha.2 - version: 2.0.0-alpha.2(vue@3.4.31(typescript@5.5.2)) + version: 2.0.0-alpha.2(vue@3.4.31(typescript@5.5.3)) vue-tsc: - specifier: 2.0.22 - version: 2.0.22(typescript@5.5.2) + specifier: 2.0.24 + version: 2.0.24(typescript@5.5.3) packages/firefish-js: dependencies: @@ -757,7 +757,7 @@ importers: version: 20.14.9 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + version: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) jest-fetch-mock: specifier: 3.0.3 version: 3.0.3 @@ -769,10 +769,10 @@ importers: version: 9.3.1 ts-jest: specifier: 29.1.5 - version: 29.1.5(@babel/core@7.24.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2) + version: 29.1.5(@babel/core@7.24.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)))(typescript@5.5.3) ts-node: specifier: 10.9.2 - version: 10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2) + version: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) tsc-alias: specifier: 1.8.10 version: 1.8.10 @@ -780,8 +780,8 @@ importers: specifier: 0.31.1 version: 0.31.1 typescript: - specifier: 5.5.2 - version: 5.5.2 + specifier: 5.5.3 + version: 5.5.3 packages/sw: devDependencies: @@ -1684,10 +1684,6 @@ packages: '@types/koa': optional: true - '@ljharb/through@2.3.13': - resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} - engines: {node: '>= 0.4'} - '@misskey-dev/browser-image-resizer@2024.1.0': resolution: {integrity: sha512-4EnO0zLW5NDtng3Gaz5MuT761uiuoOuplwX18wBqgj8w56LTU5BjLn/vbHwDIIe0j2gwqDYhMb7bDjmr1/Fomg==} @@ -2100,11 +2096,11 @@ packages: '@redocly/ajv@8.11.0': resolution: {integrity: sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==} - '@redocly/config@0.6.0': - resolution: {integrity: sha512-hNVN3eTxFj2nHYX0gGzZxxXwdE0DXWeWou1TIK3HYf0S9VKVxTxjO9EZbMB7iVUqaHkeqy4PSjlBQcEgD0Ftjg==} + '@redocly/config@0.6.2': + resolution: {integrity: sha512-c3K5u64eMnr2ootPcpEI0ioIRLE8QP8ptvLxG9MwAmb2sU8HMRfVwXDU3AZiMVY2w4Ts0mDc+Xv4HTIk8DRqFw==} - '@redocly/openapi-core@1.16.0': - resolution: {integrity: sha512-z06h+svyqbUcdAaePq8LPSwTPlm6Ig7j2VlL8skPBYnJvyaQ2IN7x/JkOvRL4ta+wcOCBdAex5JWnZbKaNktJg==} + '@redocly/openapi-core@1.17.0': + resolution: {integrity: sha512-XoNIuksnOGAzAcfpyJkHrMxwurXaQfglnovNE7/pTx4OEjik3OT91+tKAyRCkklVCdMtAA3YokGMZzdhjViUWA==} engines: {node: '>=14.19.0', npm: '>=7.0.0'} '@rollup/plugin-alias@5.1.0': @@ -2244,84 +2240,6 @@ packages: '@sqltools/formatter@1.2.5': resolution: {integrity: sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw==} - '@swc/core-darwin-arm64@1.6.5': - resolution: {integrity: sha512-RGQhMdni2v1/ANQ/2K+F+QYdzaucekYBewZcX1ogqJ8G5sbPaBdYdDN1qQ4kHLCIkPtGP6qC7c71qPEqL2RidQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.6.5': - resolution: {integrity: sha512-/pSN0/Jtcbbb9+ovS9rKxR3qertpFAM3OEJr/+Dh/8yy7jK5G5EFPIrfsw/7Q5987ERPIJIH6BspK2CBB2tgcg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.6.5': - resolution: {integrity: sha512-B0g/dROCE747RRegs/jPHuKJgwXLracDhnqQa80kFdgWEMjlcb7OMCgs5OX86yJGRS4qcYbiMGD0Pp7Kbqn3yw==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.6.5': - resolution: {integrity: sha512-W8meapgXTq8AOtSvDG4yKR8ant2WWD++yOjgzAleB5VAC+oC+aa8YJROGxj8HepurU8kurqzcialwoMeq5SZZQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.6.5': - resolution: {integrity: sha512-jyCKqoX50Fg8rJUQqh4u5PqnE7nqYKXHjVH2WcYr114/MU21zlsI+YL6aOQU1XP8bJQ2gPQ1rnlnGJdEHiKS/w==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.6.5': - resolution: {integrity: sha512-G6HmUn/RRIlXC0YYFfBz2qh6OZkHS/KUPkhoG4X9ADcgWXXjOFh6JrefwsYj8VBAJEnr5iewzjNfj+nztwHaeA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.6.5': - resolution: {integrity: sha512-AQpBjBnelQDSbeTJA50AXdS6+CP66LsXIMNTwhPSgUfE7Bx1ggZV11Fsi4Q5SGcs6a8Qw1cuYKN57ZfZC5QOuA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.6.5': - resolution: {integrity: sha512-MZTWM8kUwS30pVrtbzSGEXtek46aXNb/mT9D6rsS7NvOuv2w+qZhjR1rzf4LNbbn5f8VnR4Nac1WIOYZmfC5ng==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.6.5': - resolution: {integrity: sha512-WZdu4gISAr3yOm1fVwKhhk6+MrP7kVX0KMP7+ZQFTN5zXQEiDSDunEJKVgjMVj3vlR+6mnAqa/L0V9Qa8+zKlQ==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.6.5': - resolution: {integrity: sha512-ezXgucnMTzlFIxQZw7ls/5r2hseFaRoDL04cuXUOs97E8r+nJSmFsRQm/ygH5jBeXNo59nyZCalrjJAjwfgACA==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.6.5': - resolution: {integrity: sha512-tyVvUK/HDOUUsK6/GmWvnqUtD9oDpPUA4f7f7JCOV8hXxtfjMtAZeBKf93yrB1XZet69TDR7EN0hFC6i4MF0Ig==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/types@0.1.9': - resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} - - '@swc/wasm@1.2.130': - resolution: {integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==} - '@syuilo/aiscript@0.17.0': resolution: {integrity: sha512-3JtQ1rWJHMxQ3153zLCXMUOwrOgjPPYGBl0dPHhR0ohm4tn7okMQRugxMCT0t3YxByemb9FfiM6TUjd0tEGxdA==} @@ -2424,8 +2342,8 @@ packages: '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.19.2': - resolution: {integrity: sha512-dPSEQElyVJ97BuGduAqQjpBocZWAs0GR94z+ptL7JXQJeJdHw2WBG3EWdFrK36b8Q6j8P4cXOMhgUoi0IIfIsg==} + '@types/express-serve-static-core@4.19.5': + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} '@types/express@4.17.21': resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} @@ -2656,24 +2574,18 @@ packages: vite: ^5.0.0 vue: ^3.2.25 - '@volar/language-core@2.3.1': - resolution: {integrity: sha512-25CZ3ulM6jWgQsPQjKb7maKDlryvXWvsl7ytw4uj1Yyy17BgdiTWqMuNSxIODC3+/7IBOOGYoINC/1OOLACLLw==} + '@volar/language-core@2.4.0-alpha.5': + resolution: {integrity: sha512-CX+0vrNoCcO3tGZYIn7kNHug/u6+EImfbZe0tI6x/lCZc0MBJ7t9f6AKJT+mHJZ3ePhva6NVNv8mY1tNEURd5A==} - '@volar/source-map@2.3.1': - resolution: {integrity: sha512-fU3IL19wRy5S5OaGq67ejSl+/xdMuOHgp9Rsp3OiOhLyg25CctLYDdGZ9Y3+MJ1iqTLDh94PdvdR1BZX6I0hNQ==} + '@volar/source-map@2.4.0-alpha.5': + resolution: {integrity: sha512-5OxMPGqbxaMuFXfj10k3xWwmJ2nb0b20kNaONAKxwUQxGY6nh6skX5AAFhIAbC8woplsVJpR0tAhgQR4S96VYQ==} - '@volar/typescript@2.3.1': - resolution: {integrity: sha512-OrUV6dYt/1h92+aWElexra6dp++gF/IEddvwyxeobyYfKAoKDUMsWU0iJCj0clZlfdyYaLmNEAkulJlVimxnOw==} - - '@vue/compiler-core@3.4.30': - resolution: {integrity: sha512-ZL8y4Xxdh8O6PSwfdZ1IpQ24PjTAieOz3jXb/MDTfDtANcKBMxg1KLm6OX2jofsaQGYfIVzd3BAG22i56/cF1w==} + '@volar/typescript@2.4.0-alpha.5': + resolution: {integrity: sha512-D9nzGP09afyLlsXC5rzVeLzEaMLOmW1GGPyOiuXRRGTLshX+/cp+MNsUbwUd3pih0OhRmpUFl4VHpUGA2M4iBw==} '@vue/compiler-core@3.4.31': resolution: {integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==} - '@vue/compiler-dom@3.4.30': - resolution: {integrity: sha512-+16Sd8lYr5j/owCbr9dowcNfrHd+pz+w2/b5Lt26Oz/kB90C9yNbxQ3bYOvt7rI2bxk0nqda39hVcwDFw85c2Q==} - '@vue/compiler-dom@3.4.31': resolution: {integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==} @@ -2686,8 +2598,8 @@ packages: '@vue/compiler-ssr@3.4.31': resolution: {integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==} - '@vue/language-core@2.0.22': - resolution: {integrity: sha512-dNTAAtEOuMiz7N1s5tKpypnVVCtawxVSF5BukD0ELcYSw+DSbrSlYYSw8GuwvurodCeYFSHsmslE+c2sYDNoiA==} + '@vue/language-core@2.0.24': + resolution: {integrity: sha512-997YD6Lq/66LXr3ZOLNxDCmyn13z9NP8LU1UZn9hGCDWhzlbXAIP0hOgL3w3x4RKEaWTaaRtsHP9DzHvmduruQ==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -2708,9 +2620,6 @@ packages: peerDependencies: vue: 3.4.31 - '@vue/shared@3.4.30': - resolution: {integrity: sha512-CLg+f8RQCHQnKvuHY9adMsMaQOcqclh6Z5V9TaoMgy0ut0tz848joZ7/CYFFyF/yZ5i2yaw7Fn498C+CNZVHIg==} - '@vue/shared@3.4.31': resolution: {integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==} @@ -2930,8 +2839,8 @@ packages: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} - aws-sdk@2.1651.0: - resolution: {integrity: sha512-MZjQvvOPkKcx1N428ejUjqSfhm4TAIcgPIgpniiDMw1LjB1yA8JBZvrWer6J6MACAXQ99v0uKE4BSvtYn+AT3g==} + aws-sdk@2.1652.0: + resolution: {integrity: sha512-TDe0dKwxfIUvhW/6ex+tqnsvduXDnP/ZZCysrlz67oixVoqrucjtN1A0ALVyQdwQX2ZAMNV80BGhBSkQXqYVBg==} engines: {node: '>= 10.0.0'} axios@0.24.0: @@ -3072,8 +2981,8 @@ packages: resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} engines: {node: '>=6.14.2'} - bull@4.14.0: - resolution: {integrity: sha512-AK8ooYFxCEv0r0Uz3JvK65DZbQzDs7jBf/fpept6oxnPT8JFwZ64++NgVTfjE+SiiHZBXuMxH+VScpW9YUxDiw==} + bull@4.15.0: + resolution: {integrity: sha512-nOEAfUXwUXtFbRPQP3bWCwpQ/NAerAu2Nym/ucv5C1E+Qh2x6RGdKKsYIfZam4mYncayTynTUN/HLhRgGi2N8w==} engines: {node: '>=12'} busboy@1.6.0: @@ -3129,8 +3038,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + caniuse-lite@1.0.30001639: + resolution: {integrity: sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==} canonicalize@1.0.8: resolution: {integrity: sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==} @@ -3845,8 +3754,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.4.804: - resolution: {integrity: sha512-gXMMs2m7aUTdZpORQAvMCyH0JHywSpZxjblSc/C81aDr34jh0hmpplTFcM4AYrYALVmiVT/r63oA3tEG1BPVRw==} + electron-to-chromium@1.4.815: + resolution: {integrity: sha512-OvpTT2ItpOXJL7IGcYakRjHCt8L5GrrN/wHCQsRB4PQa1X9fe+X9oen245mIId7s14xvArCGSTIq644yPUKKLg==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -3900,8 +3809,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@1.5.3: - resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==} + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} es5-ext@0.10.64: resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} @@ -4235,8 +4144,8 @@ packages: glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.4.1: - resolution: {integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==} + glob@10.4.2: + resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} engines: {node: '>=16 || 14 >=14.18'} hasBin: true @@ -4382,8 +4291,8 @@ packages: resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} engines: {node: '>=10.19.0'} - https-proxy-agent@7.0.4: - resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} + https-proxy-agent@7.0.5: + resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} engines: {node: '>= 14'} human-signals@2.1.0: @@ -4451,8 +4360,8 @@ packages: ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - inquirer@9.2.23: - resolution: {integrity: sha512-kod5s+FBPIDM2xiy9fu+6wdU/SkK5le5GS9lh4FEBjBHqiMgD9lLFbCbuqFNAjNL2ZOy9Wd9F694IOzN9pZHBA==} + inquirer@9.3.2: + resolution: {integrity: sha512-+ynEbhWKhyomnaX0n2aLIMSkgSlGB5RrWbNXnEqj6mdaIydu6y40MdBjL38SAB0JcdmOaIaMua1azdjLEr3sdw==} engines: {node: '>=18'} insert-text-at-cursor@0.3.0: @@ -4507,8 +4416,9 @@ packages: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + is-core-module@2.14.0: + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} is-deflate@1.0.0: resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} @@ -4640,8 +4550,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} - istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} engines: {node: '>=10'} istanbul-lib-report@3.0.1: @@ -5107,8 +5017,8 @@ packages: resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lru-cache@10.2.2: - resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} + lru-cache@10.3.0: + resolution: {integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==} engines: {node: 14 || >=16.14} lru-cache@5.1.1: @@ -5222,8 +5132,8 @@ packages: resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} minimist-options@4.1.0: @@ -5403,8 +5313,9 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} oblivious-set@1.4.0: resolution: {integrity: sha512-szyd0ou0T8nsAqHtprRcP3WidfsN1TnAR5yWXf2mFCEr5ek3LEOkT6EZ/92Xfs74HIdyhG5WkGxIssMU0jBaeg==} @@ -5489,6 +5400,9 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} + package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} @@ -5555,8 +5469,8 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - peek-readable@5.0.0: - resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} + peek-readable@5.1.0: + resolution: {integrity: sha512-Tq2I+yoz6Xq3S09E2PyjzOy/oYuNg5v7wyjmrw7OQYSKc7QnDs63q4RXFXraMoI6LZyiEOJ/wDEYzGDPhWwNPA==} engines: {node: '>=14.16'} peek-stream@1.1.3: @@ -5679,8 +5593,8 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + postcss@8.4.39: + resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} engines: {node: ^10 || ^12 || >=14} postgres-array@2.0.0: @@ -5848,8 +5762,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - qs@6.12.1: - resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} + qs@6.12.2: + resolution: {integrity: sha512-x+NLUpx9SYrcwXtX7ob1gnkSems4i/mGZX5SlYxwIau6RrUSODO89TR/XDGGpn5RPWSYIB+aSfuSlV5+CmbTBg==} engines: {node: '>=0.6'} querystring@0.2.0: @@ -6654,8 +6568,8 @@ packages: typeorm-aurora-data-api-driver: optional: true - typescript@5.5.2: - resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==} + typescript@5.5.3: + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} engines: {node: '>=14.17'} hasBin: true @@ -6749,8 +6663,8 @@ packages: v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - v8-to-istanbul@9.2.0: - resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} engines: {node: '>=10.12.0'} validate-npm-package-license@3.0.4: @@ -6825,11 +6739,11 @@ packages: vue-template-compiler@2.7.16: resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} - vue-tsc@2.0.22: - resolution: {integrity: sha512-lMBIwPBO0sxCcmvu45yt1b035AaQ8/XSXQDk8m75y4j0jSXY/y/XzfEtssQ9JMS47lDaR10O3/926oCs8OeGUw==} + vue-tsc@2.0.24: + resolution: {integrity: sha512-1qi4P8L7yS78A7OJ7CDDxUIZPD6nVxoQEgX3DkRZNi1HI1qOfzOJwQlNpmwkogSVD6S/XcanbW9sktzpSxz6rA==} hasBin: true peerDependencies: - typescript: '*' + typescript: '>=5.0.0' vue@2.7.16: resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==} @@ -6850,8 +6764,8 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - wasm-feature-detect@1.6.1: - resolution: {integrity: sha512-R1i9ED8UlLu/foILNB1ck9XS63vdtqU/tP1MCugVekETp/ySCrBZRk5I/zI67cI1wlQYeSonNm1PLjDHZDNg6g==} + wasm-feature-detect@1.6.2: + resolution: {integrity: sha512-4dnaZ+Fq/q+BbMlTIfaNS851i+0zmHzui++NUZdskESRu3xwB6g6x2FnGvBdWtpijqO5yuj1l+EUTJGc4S4DKg==} wasm-sjlj@1.0.5: resolution: {integrity: sha512-Z/MHJeOkAvJJVWnGX3/YZGYldGaawZbYHX4ldYG9kLhcdB8H31F5x66M7Zc4BP/7pg0aLsusQj1629m2B3Rilg==} @@ -7058,8 +6972,12 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - yoctocolors@2.0.2: - resolution: {integrity: sha512-Ct97huExsu7cWeEjmrXlofevF8CvzUglJ4iGUet5B8xn1oumtAZBpHU4GzYuoE6PVqcZ5hghtBrSlhwHuR1Jmw==} + yoctocolors-cjs@2.1.1: + resolution: {integrity: sha512-c6T13b6qYcJZvck7QbEFXrFX/Mu2KOjvAGiKHmYMUg96jxNpfP6i+psGW72BOPxOIDUJrORG+Kyu7quMX9CQBQ==} + engines: {node: '>=18'} + + yoctocolors@2.1.0: + resolution: {integrity: sha512-FsQpXXeOEe05tcJN4Z2eicuC6+6KiJdBbPOAChanSkwwjZ277XGsh8wh/HaPuGeifTiw/7dgAzabitu2bnDvRg==} engines: {node: '>=18'} zip-stream@6.0.1: @@ -7707,7 +7625,7 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -7721,7 +7639,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -7793,7 +7711,7 @@ snapshots: glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.2 + istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.7 @@ -7803,7 +7721,7 @@ snapshots: slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.2.0 + v8-to-istanbul: 9.3.0 transitivePeerDependencies: - supports-color @@ -7979,10 +7897,6 @@ snapshots: - walrus - whiskers - '@ljharb/through@2.3.13': - dependencies: - call-bind: 1.0.7 - '@misskey-dev/browser-image-resizer@2024.1.0': {} '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': @@ -8011,7 +7925,7 @@ snapshots: clipanion: 3.2.1(typanion@3.14.0) colorette: 2.0.20 debug: 4.3.4(supports-color@8.1.1) - inquirer: 9.2.23 + inquirer: 9.3.2 js-yaml: 4.1.0 lodash-es: 4.17.21 semver: 7.6.2 @@ -8320,14 +8234,14 @@ snapshots: require-from-string: 2.0.2 uri-js: 4.4.1 - '@redocly/config@0.6.0': {} + '@redocly/config@0.6.2': {} - '@redocly/openapi-core@1.16.0': + '@redocly/openapi-core@1.17.0': dependencies: '@redocly/ajv': 8.11.0 - '@redocly/config': 0.6.0 + '@redocly/config': 0.6.2 colorette: 1.4.0 - https-proxy-agent: 7.0.4 + https-proxy-agent: 7.0.5 js-levenshtein: 1.1.6 js-yaml: 4.1.0 lodash.isequal: 4.5.0 @@ -8431,64 +8345,6 @@ snapshots: '@sqltools/formatter@1.2.5': {} - '@swc/core-darwin-arm64@1.6.5': - optional: true - - '@swc/core-darwin-x64@1.6.5': - optional: true - - '@swc/core-linux-arm-gnueabihf@1.6.5': - optional: true - - '@swc/core-linux-arm64-gnu@1.6.5': - optional: true - - '@swc/core-linux-arm64-musl@1.6.5': - optional: true - - '@swc/core-linux-x64-gnu@1.6.5': - optional: true - - '@swc/core-linux-x64-musl@1.6.5': - optional: true - - '@swc/core-win32-arm64-msvc@1.6.5': - optional: true - - '@swc/core-win32-ia32-msvc@1.6.5': - optional: true - - '@swc/core-win32-x64-msvc@1.6.5': - optional: true - - '@swc/core@1.6.5': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.9 - optionalDependencies: - '@swc/core-darwin-arm64': 1.6.5 - '@swc/core-darwin-x64': 1.6.5 - '@swc/core-linux-arm-gnueabihf': 1.6.5 - '@swc/core-linux-arm64-gnu': 1.6.5 - '@swc/core-linux-arm64-musl': 1.6.5 - '@swc/core-linux-x64-gnu': 1.6.5 - '@swc/core-linux-x64-musl': 1.6.5 - '@swc/core-win32-arm64-msvc': 1.6.5 - '@swc/core-win32-ia32-msvc': 1.6.5 - '@swc/core-win32-x64-msvc': 1.6.5 - optional: true - - '@swc/counter@0.1.3': - optional: true - - '@swc/types@0.1.9': - dependencies: - '@swc/counter': 0.1.3 - optional: true - - '@swc/wasm@1.2.130': - optional: true - '@syuilo/aiscript@0.17.0': dependencies: seedrandom: 3.0.5 @@ -8612,7 +8468,7 @@ snapshots: '@types/estree@1.0.5': {} - '@types/express-serve-static-core@4.19.2': + '@types/express-serve-static-core@4.19.5': dependencies: '@types/node': 20.14.9 '@types/qs': 6.9.15 @@ -8622,7 +8478,7 @@ snapshots: '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.19.2 + '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 @@ -8860,31 +8716,23 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@vitejs/plugin-vue@5.0.5(vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0))(vue@3.4.31(typescript@5.5.2))': + '@vitejs/plugin-vue@5.0.5(vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0))(vue@3.4.31(typescript@5.5.3))': dependencies: vite: 5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0) - vue: 3.4.31(typescript@5.5.2) + vue: 3.4.31(typescript@5.5.3) - '@volar/language-core@2.3.1': + '@volar/language-core@2.4.0-alpha.5': dependencies: - '@volar/source-map': 2.3.1 + '@volar/source-map': 2.4.0-alpha.5 - '@volar/source-map@2.3.1': {} + '@volar/source-map@2.4.0-alpha.5': {} - '@volar/typescript@2.3.1': + '@volar/typescript@2.4.0-alpha.5': dependencies: - '@volar/language-core': 2.3.1 + '@volar/language-core': 2.4.0-alpha.5 path-browserify: 1.0.1 vscode-uri: 3.0.8 - '@vue/compiler-core@3.4.30': - dependencies: - '@babel/parser': 7.24.7 - '@vue/shared': 3.4.30 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.0 - '@vue/compiler-core@3.4.31': dependencies: '@babel/parser': 7.24.7 @@ -8893,11 +8741,6 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.0 - '@vue/compiler-dom@3.4.30': - dependencies: - '@vue/compiler-core': 3.4.30 - '@vue/shared': 3.4.30 - '@vue/compiler-dom@3.4.31': dependencies: '@vue/compiler-core': 3.4.31 @@ -8905,8 +8748,8 @@ snapshots: '@vue/compiler-sfc@2.7.16': dependencies: - '@babel/parser': 7.24.6 - postcss: 8.4.38 + '@babel/parser': 7.24.7 + postcss: 8.4.39 source-map: 0.6.1 optionalDependencies: prettier: 2.8.8 @@ -8920,7 +8763,7 @@ snapshots: '@vue/shared': 3.4.31 estree-walker: 2.0.2 magic-string: 0.30.10 - postcss: 8.4.38 + postcss: 8.4.39 source-map-js: 1.2.0 '@vue/compiler-ssr@3.4.31': @@ -8928,18 +8771,18 @@ snapshots: '@vue/compiler-dom': 3.4.31 '@vue/shared': 3.4.31 - '@vue/language-core@2.0.22(typescript@5.5.2)': + '@vue/language-core@2.0.24(typescript@5.5.3)': dependencies: - '@volar/language-core': 2.3.1 - '@vue/compiler-dom': 3.4.30 - '@vue/shared': 3.4.30 + '@volar/language-core': 2.4.0-alpha.5 + '@vue/compiler-dom': 3.4.31 + '@vue/shared': 3.4.31 computeds: 0.0.1 - minimatch: 9.0.4 + minimatch: 9.0.5 muggle-string: 0.4.1 path-browserify: 1.0.1 vue-template-compiler: 2.7.16 optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 '@vue/reactivity@3.4.31': dependencies: @@ -8957,13 +8800,11 @@ snapshots: '@vue/shared': 3.4.31 csstype: 3.1.3 - '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.5.2))': + '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.5.3))': dependencies: '@vue/compiler-ssr': 3.4.31 '@vue/shared': 3.4.31 - vue: 3.4.31(typescript@5.5.2) - - '@vue/shared@3.4.30': {} + vue: 3.4.31(typescript@5.5.3) '@vue/shared@3.4.31': {} @@ -9131,7 +8972,7 @@ snapshots: archiver-utils@5.0.2: dependencies: - glob: 10.4.1 + glob: 10.4.2 graceful-fs: 4.2.11 is-stream: 2.0.1 lazystream: 1.0.1 @@ -9194,7 +9035,7 @@ snapshots: dependencies: possible-typed-array-names: 1.0.0 - aws-sdk@2.1651.0: + aws-sdk@2.1652.0: dependencies: buffer: 4.9.2 events: 1.1.1 @@ -9341,8 +9182,8 @@ snapshots: browserslist@4.23.1: dependencies: - caniuse-lite: 1.0.30001636 - electron-to-chromium: 1.4.804 + caniuse-lite: 1.0.30001639 + electron-to-chromium: 1.4.815 node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) @@ -9389,7 +9230,7 @@ snapshots: dependencies: node-gyp-build: 4.8.1 - bull@4.14.0: + bull@4.15.0: dependencies: cron-parser: 4.9.0 get-port: 5.1.1 @@ -9458,7 +9299,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001636: {} + caniuse-lite@1.0.30001639: {} canonicalize@1.0.8: {} @@ -9614,14 +9455,14 @@ snapshots: co-body@5.2.0: dependencies: inflation: 2.1.0 - qs: 6.12.1 + qs: 6.12.2 raw-body: 2.5.2 type-is: 1.6.18 co-body@6.1.0: dependencies: inflation: 2.1.0 - qs: 6.12.1 + qs: 6.12.2 raw-body: 2.5.2 type-is: 1.6.18 @@ -9745,13 +9586,13 @@ snapshots: crc-32: 1.2.2 readable-stream: 4.5.2 - create-jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)): + create-jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -10050,7 +9891,7 @@ snapshots: dependencies: jake: 10.9.1 - electron-to-chromium@1.4.804: {} + electron-to-chromium@1.4.815: {} emittery@0.13.1: {} @@ -10094,7 +9935,7 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@1.5.3: {} + es-module-lexer@1.5.4: {} es5-ext@0.10.64: dependencies: @@ -10229,7 +10070,7 @@ snapshots: pretty-ms: 9.0.0 signal-exit: 4.1.0 strip-final-newline: 4.0.0 - yoctocolors: 2.0.2 + yoctocolors: 2.1.0 exit@0.1.2: {} @@ -10347,10 +10188,10 @@ snapshots: async: 0.2.10 which: 1.3.1 - focus-trap-vue@4.0.3(focus-trap@7.5.4)(vue@3.4.31(typescript@5.5.2)): + focus-trap-vue@4.0.3(focus-trap@7.5.4)(vue@3.4.31(typescript@5.5.3)): dependencies: focus-trap: 7.5.4 - vue: 3.4.31(typescript@5.5.2) + vue: 3.4.31(typescript@5.5.3) focus-trap@7.5.4: dependencies: @@ -10390,7 +10231,7 @@ snapshots: dezalgo: 1.0.4 hexoid: 1.0.0 once: 1.4.0 - qs: 6.12.1 + qs: 6.12.2 fresh@0.5.2: {} @@ -10463,12 +10304,13 @@ snapshots: glob-to-regexp@0.4.1: {} - glob@10.4.1: + glob@10.4.2: dependencies: foreground-child: 3.2.1 jackspeak: 3.1.2 - minimatch: 9.0.4 + minimatch: 9.0.5 minipass: 7.1.2 + package-json-from-dist: 1.0.0 path-scurry: 1.11.1 glob@7.2.3: @@ -10485,7 +10327,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.6 + minimatch: 5.0.1 once: 1.4.0 globals@11.12.0: {} @@ -10654,7 +10496,7 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@7.0.4: + https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.1 debug: 4.3.4(supports-color@8.1.1) @@ -10707,16 +10549,12 @@ snapshots: ini@1.3.8: {} - inquirer@9.2.23: + inquirer@9.3.2: dependencies: '@inquirer/figures': 1.0.3 - '@ljharb/through': 2.3.13 ansi-escapes: 4.3.2 - chalk: 5.3.0 - cli-cursor: 3.1.0 cli-width: 4.1.0 external-editor: 3.1.0 - lodash: 4.17.21 mute-stream: 1.0.0 ora: 5.4.1 run-async: 3.0.0 @@ -10724,6 +10562,7 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.1 insert-text-at-cursor@0.3.0: {} @@ -10775,7 +10614,7 @@ snapshots: is-callable@1.2.7: {} - is-core-module@2.13.1: + is-core-module@2.14.0: dependencies: hasown: 2.0.2 @@ -10873,7 +10712,7 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-instrument@6.0.2: + istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.24.6 '@babel/parser': 7.24.6 @@ -10947,16 +10786,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)): + jest-cli@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + create-jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + jest-config: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -10966,7 +10805,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)): + jest-config@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: '@babel/core': 7.24.6 '@jest/test-sequencer': 29.7.0 @@ -10992,7 +10831,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.9 - ts-node: 10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2) + ts-node: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -11230,12 +11069,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)): + jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + jest-cli: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -11250,7 +11089,7 @@ snapshots: dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 - glob: 10.4.1 + glob: 10.4.2 js-cookie: 3.0.5 nopt: 7.2.1 @@ -11285,7 +11124,7 @@ snapshots: form-data: 4.0.0 html-encoding-sniffer: 4.0.0 http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.4 + https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.10 parse5: 7.1.2 @@ -11653,7 +11492,7 @@ snapshots: lowercase-keys@3.0.0: {} - lru-cache@10.2.2: {} + lru-cache@10.3.0: {} lru-cache@5.1.1: dependencies: @@ -11755,7 +11594,7 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.4: + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -11912,7 +11751,7 @@ snapshots: normalize-package-data@3.0.3: dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.13.1 + is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 @@ -11938,7 +11777,7 @@ snapshots: object-assign@4.1.1: {} - object-inspect@1.13.1: {} + object-inspect@1.13.2: {} oblivious-set@1.4.0: {} @@ -12015,6 +11854,8 @@ snapshots: p-try@2.2.0: {} + package-json-from-dist@1.0.0: {} + pako@0.2.9: {} parse-json@5.2.0: @@ -12058,14 +11899,14 @@ snapshots: path-scurry@1.11.1: dependencies: - lru-cache: 10.2.2 + lru-cache: 10.3.0 minipass: 7.1.2 path-to-regexp@6.2.2: {} path-type@4.0.0: {} - peek-readable@5.0.0: {} + peek-readable@5.1.0: {} peek-stream@1.1.3: dependencies: @@ -12172,7 +12013,7 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss@8.4.38: + postcss@8.4.39: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 @@ -12374,7 +12215,7 @@ snapshots: pngjs: 5.0.0 yargs: 15.4.1 - qs@6.12.1: + qs@6.12.2: dependencies: side-channel: 1.0.6 @@ -12532,7 +12373,7 @@ snapshots: resolve@1.22.8: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -12612,7 +12453,7 @@ snapshots: htmlparser2: 8.0.2 is-plain-object: 5.0.0 parse-srcset: 1.0.2 - postcss: 8.4.38 + postcss: 8.4.39 sass@1.77.6: dependencies: @@ -12718,7 +12559,7 @@ snapshots: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - object-inspect: 1.13.1 + object-inspect: 1.13.2 signal-exit@3.0.7: {} @@ -12877,7 +12718,7 @@ snapshots: strtok3@7.0.0: dependencies: '@tokenizer/token': 0.3.0 - peek-readable: 5.0.0 + peek-readable: 5.1.0 stylus@0.57.0: dependencies: @@ -12954,16 +12795,14 @@ snapshots: fast-fifo: 1.3.2 streamx: 2.16.1 - terser-webpack-plugin@5.3.10(@swc/core@1.6.5)(webpack@5.92.1(@swc/core@1.6.5)): + terser-webpack-plugin@5.3.10(webpack@5.92.1): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.0 - webpack: 5.92.1(@swc/core@1.6.5) - optionalDependencies: - '@swc/core': 1.6.5 + webpack: 5.92.1 terser@5.31.0: dependencies: @@ -12984,7 +12823,7 @@ snapshots: opencollective-postinstall: 2.0.3 regenerator-runtime: 0.13.11 tesseract.js-core: 5.1.0 - wasm-feature-detect: 1.6.1 + wasm-feature-detect: 1.6.2 zlibjs: 0.3.1 transitivePeerDependencies: - encoding @@ -13062,17 +12901,17 @@ snapshots: trim-newlines@3.0.1: {} - ts-jest@29.1.5(@babel/core@7.24.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)))(typescript@5.5.2): + ts-jest@29.1.5(@babel/core@7.24.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.6))(jest@29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)))(typescript@5.5.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)) + jest: 29.7.0(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 5.5.2 + typescript: 5.5.3 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.6 @@ -13080,17 +12919,17 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.6) - ts-loader@9.5.1(typescript@5.5.2)(webpack@5.92.1(@swc/core@1.6.5)): + ts-loader@9.5.1(typescript@5.5.3)(webpack@5.92.1): dependencies: chalk: 4.1.2 enhanced-resolve: 5.16.1 micromatch: 4.0.7 semver: 7.6.2 source-map: 0.7.4 - typescript: 5.5.2 - webpack: 5.92.1(@swc/core@1.6.5) + typescript: 5.5.3 + webpack: 5.92.1 - ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2): + ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -13104,12 +12943,9 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.5.2 + typescript: 5.5.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.6.5 - '@swc/wasm': 1.2.130 tsc-alias@1.8.10: dependencies: @@ -13169,7 +13005,7 @@ snapshots: typedarray@0.0.6: {} - typeorm@0.3.20(ioredis@5.4.1)(pg@8.12.0)(ts-node@10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2)): + typeorm@0.3.20(ioredis@5.4.1)(pg@8.12.0)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: '@sqltools/formatter': 1.2.5 app-root-path: 3.1.0 @@ -13179,7 +13015,7 @@ snapshots: dayjs: 1.11.11 debug: 4.3.4(supports-color@8.1.1) dotenv: 16.4.5 - glob: 10.4.1 + glob: 10.4.2 mkdirp: 2.1.6 reflect-metadata: 0.2.2 sha.js: 2.4.11 @@ -13189,11 +13025,11 @@ snapshots: optionalDependencies: ioredis: 5.4.1 pg: 8.12.0 - ts-node: 10.9.2(@swc/core@1.6.5)(@swc/wasm@1.2.130)(@types/node@20.14.9)(typescript@5.5.2) + ts-node: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) transitivePeerDependencies: - supports-color - typescript@5.5.2: {} + typescript@5.5.3: {} ulid@2.3.0: {} @@ -13279,7 +13115,7 @@ snapshots: v8-compile-cache-lib@3.0.1: {} - v8-to-istanbul@9.2.0: + v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 @@ -13310,7 +13146,7 @@ snapshots: vite@5.3.2(@types/node@20.14.9)(sass@1.77.6)(stylus@0.57.0)(terser@5.31.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.38 + postcss: 8.4.39 rollup: 4.17.2 optionalDependencies: '@types/node': 20.14.9 @@ -13332,36 +13168,36 @@ snapshots: plyr: https://codeload.github.com/sampotts/plyr/tar.gz/d434c9af16e641400aaee93188594208d88f2658 vue: 2.7.16 - vue-prism-editor@2.0.0-alpha.2(vue@3.4.31(typescript@5.5.2)): + vue-prism-editor@2.0.0-alpha.2(vue@3.4.31(typescript@5.5.3)): dependencies: - vue: 3.4.31(typescript@5.5.2) + vue: 3.4.31(typescript@5.5.3) vue-template-compiler@2.7.16: dependencies: de-indent: 1.0.2 he: 1.2.0 - vue-tsc@2.0.22(typescript@5.5.2): + vue-tsc@2.0.24(typescript@5.5.3): dependencies: - '@volar/typescript': 2.3.1 - '@vue/language-core': 2.0.22(typescript@5.5.2) + '@volar/typescript': 2.4.0-alpha.5 + '@vue/language-core': 2.0.24(typescript@5.5.3) semver: 7.6.2 - typescript: 5.5.2 + typescript: 5.5.3 vue@2.7.16: dependencies: '@vue/compiler-sfc': 2.7.16 csstype: 3.1.3 - vue@3.4.31(typescript@5.5.2): + vue@3.4.31(typescript@5.5.3): dependencies: '@vue/compiler-dom': 3.4.31 '@vue/compiler-sfc': 3.4.31 '@vue/runtime-dom': 3.4.31 - '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.5.2)) + '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.5.3)) '@vue/shared': 3.4.31 optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 w3c-xmlserializer@5.0.0: dependencies: @@ -13371,7 +13207,7 @@ snapshots: dependencies: makeerror: 1.0.12 - wasm-feature-detect@1.6.1: {} + wasm-feature-detect@1.6.2: {} wasm-sjlj@1.0.5: {} @@ -13392,7 +13228,7 @@ snapshots: webpack-sources@3.2.3: {} - webpack@5.92.1(@swc/core@1.6.5): + webpack@5.92.1: dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -13404,7 +13240,7 @@ snapshots: browserslist: 4.23.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.0 - es-module-lexer: 1.5.3 + es-module-lexer: 1.5.4 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -13415,7 +13251,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.5)(webpack@5.92.1(@swc/core@1.6.5)) + terser-webpack-plugin: 5.3.10(webpack@5.92.1) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -13583,7 +13419,7 @@ snapshots: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.9 + yargs-parser: 20.2.4 yargs@17.7.2: dependencies: @@ -13606,7 +13442,9 @@ snapshots: yocto-queue@0.1.0: {} - yoctocolors@2.0.2: {} + yoctocolors-cjs@2.1.1: {} + + yoctocolors@2.1.0: {} zip-stream@6.0.1: dependencies: