diff --git a/packages/core/src/client/index.ts b/packages/core/src/client/index.ts index c886275..2f2a754 100644 --- a/packages/core/src/client/index.ts +++ b/packages/core/src/client/index.ts @@ -67,10 +67,6 @@ interface ActiveNode { class?: 'tooltip-top' | 'tooltip-bottom'; } -type InspectorAction = 'copy' | 'locate' | 'target' | 'all'; -type TrackAction = InspectorAction | 'default'; -type ResolvedAction = InspectorAction | 'none'; - const PopperWidth = 300; function nextTick() { @@ -93,13 +89,13 @@ export class CodeInspectorComponent extends LitElement { @property() locate: boolean = true; @property() - copy: boolean | string = true; - @property({ attribute: 'default-action' }) - defaultAction: InspectorAction = 'copy'; + copy: boolean | string = false; @property() target: string = ''; @property() ip: string = 'localhost'; + @property() + modeKey: string = 'z'; @state() position = { @@ -160,6 +156,14 @@ export class CodeInspectorComponent extends LitElement { sendType: 'xhr' | 'img' = 'xhr'; @state() activeNode: ActiveNode = {}; + @state() + showSettingsModal = false; // 是否显示设置弹窗 + @state() + internalLocate = true; // 内部 locate 状态 + @state() + internalCopy: boolean = false; // 内部 copy 状态 + @state() + internalTarget = false; // 内部 target 状态 @query('#inspector-switch') inspectorSwitchRef!: HTMLDivElement; @@ -176,6 +180,27 @@ export class CodeInspectorComponent extends LitElement { @query('#node-tree-tooltip') nodeTreeTooltipRef!: HTMLDivElement; + features = [ + { + label: 'Locate Code', + description: 'Open the editor and locate code', + checked: () => !!this.internalLocate, + onChange: () => this.toggleLocate(), + }, + { + label: 'Copy Path', + description: 'Copy the code path to clipboard', + checked: () => !!this.internalCopy, + onChange: () => this.toggleCopy(), + }, + { + label: 'Open Target', + description: 'Open the target url', + checked: () => !!this.internalTarget, + onChange: () => this.toggleTarget(), + }, + ]; + isTracking = (e: any) => { return ( this.hotKeys && this.hotKeys.split(',').every((key) => e[key.trim()]) @@ -537,41 +562,15 @@ export class CodeInspectorComponent extends LitElement { }; // 触发功能的处理 - trackCode = (action: TrackAction = 'default') => { - let resolvedAction: ResolvedAction; - if (action === 'default') { - resolvedAction = this.getDefaultAction(); - } else if (action === 'all') { - resolvedAction = this.copy || this.locate || this.target ? 'all' : 'none'; - } else if (this.isActionEnabled(action)) { - resolvedAction = action; - } else { - resolvedAction = 'none'; - } - - if (resolvedAction === 'none') { - return; - } - - const shouldLocate = - (resolvedAction === 'locate' || resolvedAction === 'all') && this.locate; - const shouldCopy = - (resolvedAction === 'copy' || resolvedAction === 'all') && !!this.copy; - const shouldTarget = - (resolvedAction === 'target' || resolvedAction === 'all') && !!this.target; - - if (!shouldLocate && !shouldCopy && !shouldTarget) { - return; - } - - if (shouldLocate) { + trackCode = () => { + if (this.internalLocate) { if (this.sendType === 'xhr') { this.sendXHR(); } else { this.sendImg(); } } - if (shouldCopy) { + if (this.internalCopy) { const path = formatOpenPath( this.element.path, String(this.element.line), @@ -580,9 +579,10 @@ export class CodeInspectorComponent extends LitElement { ); this.copyToClipboard(path[0]); } - if (shouldTarget) { + if (this.internalTarget) { window.open(this.buildTargetUrl(), '_blank'); } + // 触发自定义事件 window.dispatchEvent( new CustomEvent('code-inspector:trackCode', { detail: this.element, @@ -590,123 +590,20 @@ export class CodeInspectorComponent extends LitElement { ); }; - private getDefaultAction(): ResolvedAction { - const resolved = this.resolvePreferredAction(this.defaultAction); - if (resolved !== 'none' && resolved !== this.defaultAction) { - this.defaultAction = resolved; - } - return resolved; - } - - private isActionEnabled(action: Exclude): boolean { - if (action === 'copy') { - return !!this.copy; - } - if (action === 'locate') { - return !!this.locate; - } - return !!this.target; - } - - private resolvePreferredAction( - preferred: InspectorAction - ): ResolvedAction { - if (preferred === 'all') { - return this.copy || this.locate || this.target ? 'all' : 'none'; - } - if (this.isActionEnabled(preferred)) { - return preferred; - } - const fallbackOrder: Array> = [ - 'copy', - 'locate', - 'target', - ]; - for (const candidate of fallbackOrder) { - if (candidate !== preferred && this.isActionEnabled(candidate)) { - return candidate; - } - } - return 'none'; - } - - private getAvailableDefaultActions(): InspectorAction[] { - const actions: InspectorAction[] = []; - if (this.copy) { - actions.push('copy'); - } - if (this.locate) { - actions.push('locate'); - } - if (this.target) { - actions.push('target'); - } - if (actions.length > 1 && this.copy && this.locate) { - actions.push('all'); - } - return actions; - } - private handleModeShortcut = (e: KeyboardEvent) => { - if (!e.shiftKey || !e.altKey) { + if (!this.isTracking(e)) { return; } - const code = e.code?.toLowerCase(); - const key = e.key?.toLowerCase(); - const isCKey = code ? code === 'keyc' : key === 'c'; - if (!isCKey) { - return; + const isModeKeyDown = + e.code?.toLowerCase() === `key${this.modeKey}` || + e.key?.toLowerCase() === this.modeKey; + if (isModeKeyDown) { + this.toggleSettingsModal(); } e.preventDefault(); e.stopPropagation(); - const actions = this.getAvailableDefaultActions(); - if (actions.length <= 1) { - return; - } - const currentIndex = actions.indexOf(this.defaultAction); - const nextAction = - currentIndex === -1 - ? actions[0] - : actions[(currentIndex + 1) % actions.length]; - this.defaultAction = nextAction; - this.printModeChange(nextAction); }; - private printModeChange(action: InspectorAction) { - if (this.hideConsole) { - return; - } - const label = this.getActionLabel(action); - const agent = - typeof navigator !== 'undefined' ? navigator.userAgent.toLowerCase() : ''; - const isWindows = ['windows', 'win32', 'wow32', 'win64', 'wow64'].some( - (item) => agent.toUpperCase().includes(item.toUpperCase()) - ); - const shortcut = isWindows ? 'Shift+Alt+C' : 'Shift+Opt+C'; - console.log( - `%c[code-inspector-plugin]%c Mode switched to %c${label}%c (${shortcut})`, - 'color: #006aff; font-weight: bolder; font-size: 12px;', - 'color: #006aff; font-size: 12px;', - 'color: #00B42A; font-weight: bold; font-size: 12px;', - 'color: #006aff; font-size: 12px;' - ); - } - - private getActionLabel(action: ResolvedAction): string { - switch (action) { - case 'copy': - return 'Copy Path'; - case 'locate': - return 'Open in IDE'; - case 'target': - return 'Open Target Link'; - case 'all': - return 'Copy + Open'; - default: - return 'Disabled'; - } - } - showNotification(message: string, type: 'success' | 'error' = 'success') { const notification = document.createElement('div'); notification.className = `code-inspector-notification code-inspector-notification-${type}`; @@ -730,11 +627,14 @@ export class CodeInspectorComponent extends LitElement { copyToClipboard(text: string) { try { if (typeof navigator?.clipboard?.writeText === 'function') { - navigator.clipboard.writeText(text).then(() => { - this.showNotification('✓ Copied to clipboard'); - }).catch(() => { - this.fallbackCopy(text); - }); + navigator.clipboard + .writeText(text) + .then(() => { + this.showNotification('✓ Copied to clipboard'); + }) + .catch(() => { + this.fallbackCopy(text); + }); } else { this.fallbackCopy(text); } @@ -850,10 +750,8 @@ export class CodeInspectorComponent extends LitElement { e.stopPropagation(); // 阻止默认事件 e.preventDefault(); - const primaryAction = this.getDefaultAction(); - if (primaryAction !== 'none') { - this.trackCode(primaryAction as InspectorAction); - } + // 触发功能 + this.trackCode(); // 清除遮罩层 this.removeCover(); if (this.autoToggle) { @@ -951,12 +849,25 @@ export class CodeInspectorComponent extends LitElement { const isWindows = ['windows', 'win32', 'wow32', 'win64', 'wow64'].some( (item) => agent.toUpperCase().match(item.toUpperCase()) ); - const modeShortcut = isWindows ? 'Shift+Alt+C' : 'Shift+Opt+C'; const hotKeyMap = isWindows ? WindowsHotKeyMap : MacHotKeyMap; - const keys = this.hotKeys + const rep = '%c'; + const hotKeys = this.hotKeys .split(',') - .map((item) => '%c' + hotKeyMap[item.trim() as keyof typeof hotKeyMap]); - const colorCount = keys.length * 2 + 1; + .map((item) => rep + hotKeyMap[item.trim() as keyof typeof hotKeyMap]); + const switchKeys = [...hotKeys, rep + this.modeKey.toUpperCase()]; + const activeFeatures = this.features + .filter((feature) => feature.checked()) + .map((feature) => `${rep}${feature.label}`); + const currentFeature = + activeFeatures.length > 0 + ? activeFeatures.join(`${rep}、`) + : `${rep}None`; + + const colorCount = + hotKeys.length * 2 + + switchKeys.length * 2 + + currentFeature.match(/%c/g)!.length + + 1; const colors = Array(colorCount) .fill('') .map((_, index) => { @@ -966,12 +877,19 @@ export class CodeInspectorComponent extends LitElement { return 'color: #006aff; font-weight: bold; font-family: PingFang SC; font-size: 12px;'; } }); - const replacement = '%c'; - const currentMode = this.getActionLabel(this.getDefaultAction()); + + const content = [ + `${rep}[code-inspector-plugin]`, + `${rep}• Press and hold ${hotKeys.join( + ` ${rep}+ ` + )} ${rep}to use the feature.`, + `• Press ${switchKeys.join( + ` ${rep}+ ` + )} ${rep}to see and change feature.`, + `• Current Feature: ${currentFeature}`, + ].join('\n'); console.log( - `${replacement}[code-inspector-plugin]${replacement}Press and hold ${keys.join( - ` ${replacement}+ ` - )}${replacement} to enable the feature. (Current mode: ${currentMode}; press ${modeShortcut} to switch)`, + content, 'color: #006aff; font-weight: bolder; font-size: 12px;', ...colors ); @@ -1026,10 +944,8 @@ export class CodeInspectorComponent extends LitElement { handleClickTreeNode = (node: TreeNode) => { this.element = node; - const primaryAction = this.getDefaultAction(); - if (primaryAction !== 'none') { - this.trackCode(primaryAction as InspectorAction); - } + // 触发功能 + this.trackCode(); this.removeLayerPanel(); }; @@ -1072,7 +988,37 @@ export class CodeInspectorComponent extends LitElement { this.removeCover(true); }; + // 切换设置弹窗显示 + toggleSettingsModal = () => { + this.showSettingsModal = !this.showSettingsModal; + }; + + // 关闭设置弹窗 + closeSettingsModal = () => { + this.showSettingsModal = false; + }; + + // 切换 locate 功能 + toggleLocate = () => { + this.internalLocate = !this.internalLocate; + }; + + // 切换 copy 功能 + toggleCopy = () => { + this.internalCopy = !this.internalCopy; + }; + + // 切换 target 功能 + toggleTarget = () => { + this.internalTarget = !this.internalTarget; + }; + protected firstUpdated(): void { + // 初始化内部状态 + this.internalLocate = this.locate; + this.internalCopy = !!this.copy; + this.internalTarget = !!this.target; + if (!this.hideConsole) { this.printTip(); } @@ -1169,13 +1115,6 @@ export class CodeInspectorComponent extends LitElement { bottom: this.activeNode.bottom, display: this.showNodeTree ? '' : 'none', }; - const resolvedDefaultAction = this.getDefaultAction(); - const modeLabel = this.getActionLabel(resolvedDefaultAction); - const modeShortcut = - typeof navigator !== 'undefined' && - /mac|iphone|ipad|ipod/i.test(navigator.userAgent) - ? 'Shift+Opt+C' - : 'Shift+Alt+C'; return html`
<${this.element.name}> - - Mode: ${modeLabel} · ${modeShortcut} to switch -
@@ -1326,7 +1262,7 @@ export class CodeInspectorComponent extends LitElement { @touchstart="${(e: TouchEvent) => this.recordMousePosition(e, 'nodeTree')}" > -
🔍️ Click node · ${this.getActionLabel(this.getDefaultAction())}
+
🔍️ Click node to locate
${html`
+ + + ${this.showSettingsModal + ? html` +
+
+
+

Mode Settings

+ +
+
+ ${this.features.map( + (feature) => html` +
+ + +
+ ` + )} +
+
+
+ ` + : ''} +
boolean; + onChange: () => void; + }[]; isTracking: (e: any) => boolean | ""; getDomPropertyValue: (target: HTMLElement, property: string) => number; calculateElementInfoPosition: (target: HTMLElement) => Promise<{ @@ -136,14 +144,8 @@ export declare class CodeInspectorComponent extends LitElement { sendXHR: () => void; sendImg: () => void; buildTargetUrl: () => string; - trackCode: (action?: TrackAction) => void; - private getDefaultAction; - private isActionEnabled; - private resolvePreferredAction; - private getAvailableDefaultActions; + trackCode: () => void; private handleModeShortcut; - private printModeChange; - private getActionLabel; showNotification(message: string, type?: 'success' | 'error'): void; copyToClipboard(text: string): void; private fallbackCopy; @@ -166,6 +168,11 @@ export declare class CodeInspectorComponent extends LitElement { handleClickTreeNode: (node: TreeNode) => void; handleMouseEnterNode: (e: MouseEvent, node: TreeNode) => Promise; handleMouseLeaveNode: () => void; + toggleSettingsModal: () => void; + closeSettingsModal: () => void; + toggleLocate: () => void; + toggleCopy: () => void; + toggleTarget: () => void; protected firstUpdated(): void; disconnectedCallback(): void; renderNodeTree: (node: TreeNode) => TemplateResult; diff --git a/packages/core/types/shared/type.d.ts b/packages/core/types/shared/type.d.ts index 983880e..b03c460 100644 --- a/packages/core/types/shared/type.d.ts +++ b/packages/core/types/shared/type.d.ts @@ -170,5 +170,15 @@ export type CodeOptions = { * - htmlScript: Skip injecting the code snippet that injects script tags in html, it is not recommended to skip this item for MPA projects */ skipSnippets?: ('console' | 'htmlScript')[]; + /** + * @zh 功能开关的快捷键,默认值为 `z`。同时按下 hotKeys 和 modeKey 可以打开功能开关设置 + * @en The shortcut key of the feature switch, the default value is `z`. Pressing hotKeys and modeKey at the same time can open the feature switch settings + */ + modeKey?: string; + /** + * @zh 是否启用 server 功能。默认值为 `open`,即启用 server 功能。使用代码定位功能时必须启用 server 功能,线上构建只看 dom 路径时可以关闭 server 功能。 + * @en Whether to enable the server function. The default value is `open`, which means enabling the server function. The server function must be enabled when using the code location function, and it can be closed when building online only to view the dom path. + */ + server?: 'open' | 'close'; }; export {}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 05cad5a..8d31a58 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,7 +10,7 @@ importers: devDependencies: '@vitest/coverage-v8': specifier: 2.1.4 - version: 2.1.4(vitest@2.1.4(@types/node@20.14.11)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + version: 2.1.4(vitest@2.1.4(@types/node@24.10.0)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) fs-extra: specifier: ^10.0.0 version: 10.0.0 @@ -28,7 +28,7 @@ importers: version: 5.0.5 vitest: specifier: ^2.1.4 - version: 2.1.4(@types/node@20.14.11)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 2.1.4(@types/node@24.10.0)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) zip-a-folder: specifier: ^3.1.7 version: 3.1.7 @@ -62,7 +62,7 @@ importers: dependencies: vue: specifier: ^3.4.0 - version: 3.4.30(typescript@5.8.2) + version: 3.4.30(typescript@5.9.3) devDependencies: '@farmfe/cli': specifier: ^1.0.2 @@ -72,7 +72,7 @@ importers: version: 1.2.8(bufferutil@4.0.8)(utf-8-validate@6.0.4) '@vitejs/plugin-vue': specifier: ^5.0.4 - version: 5.0.5(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.8.2)) + version: 5.0.5(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.9.3)) code-inspector-plugin: specifier: workspace:* version: link:../../packages/code-inspector-plugin @@ -84,7 +84,7 @@ importers: dependencies: umi: specifier: ^4.4.12 - version: 4.4.12(@babel/core@7.24.7)(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@20.14.11)(@types/react@18.3.3)(@types/webpack@4.41.33)(@volar/vue-typescript@1.2.0)(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(lightningcss@1.30.1)(prettier@2.8.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 4.4.12(@babel/core@7.24.7)(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@24.10.0)(@types/react@18.3.3)(@types/webpack@4.41.33)(@volar/vue-typescript@1.2.0)(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(lightningcss@1.30.2)(prettier@2.8.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) devDependencies: '@types/react': specifier: ^18.0.33 @@ -128,10 +128,10 @@ importers: version: link:../../packages/code-inspector-plugin eslint: specifier: ^9 - version: 9.18.0(jiti@2.5.1) + version: 9.18.0(jiti@2.6.1) eslint-config-next: specifier: 15.1.6 - version: 15.1.6(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) + version: 15.1.6(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) postcss: specifier: ^8 version: 8.4.41 @@ -186,13 +186,13 @@ importers: dependencies: nuxt: specifier: ^3.12.2 - version: 3.12.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.14.11)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.18.0(jiti@2.5.1))(ioredis@5.4.1)(less@4.2.0)(lightningcss@1.30.1)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + version: 3.12.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@24.10.0)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.4.1)(less@4.2.0)(lightningcss@1.30.2)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) vue: specifier: ^3.4.29 - version: 3.4.30(typescript@5.8.2) + version: 3.4.30(typescript@5.9.3) vue-router: specifier: ^4.3.3 - version: 4.4.0(vue@3.4.30(typescript@5.8.2)) + version: 4.4.0(vue@3.4.30(typescript@5.9.3)) devDependencies: code-inspector-plugin: specifier: workspace:* @@ -234,7 +234,7 @@ importers: version: link:../../packages/code-inspector-plugin ts-node: specifier: ^10.9.2 - version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2) + version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2) typescript: specifier: ^5.7.3 version: 5.8.2 @@ -242,54 +242,54 @@ importers: specifier: ^17.4.2 version: 17.4.2(vue@3.5.13(typescript@5.8.2))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) - demos/turbopack-next15: + demos/turbopack-next: dependencies: next: - specifier: 15.4.4 - version: 15.4.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.54.7) + specifier: 16.0.1 + version: 16.0.1(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(sass@1.54.7) react: - specifier: 19.1.0 - version: 19.1.0 + specifier: 19.2.0 + version: 19.2.0 react-dom: - specifier: 19.1.0 - version: 19.1.0(react@19.1.0) + specifier: 19.2.0 + version: 19.2.0(react@19.2.0) devDependencies: '@eslint/eslintrc': - specifier: ^3 - version: 3.2.0 + specifier: ^3.3.1 + version: 3.3.1 '@mdx-js/loader': - specifier: ^3.1.0 - version: 3.1.0(acorn@8.14.0)(webpack@5.91.0) + specifier: ^3.1.1 + version: 3.1.1(acorn@8.15.0)(webpack@5.91.0) '@next/mdx': - specifier: 15.4.4 - version: 15.4.4(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.91.0)) + specifier: 16.0.1 + version: 16.0.1(@mdx-js/loader@3.1.1(acorn@8.15.0)(webpack@5.91.0)) '@tailwindcss/postcss': - specifier: ^4 - version: 4.1.11 + specifier: ^4.1.16 + version: 4.1.16 '@types/node': - specifier: ^20 - version: 20.14.11 + specifier: ^24.10.0 + version: 24.10.0 '@types/react': - specifier: ^19 - version: 19.0.7 + specifier: ^19.2.2 + version: 19.2.2 '@types/react-dom': - specifier: ^19 - version: 19.0.3(@types/react@19.0.7) + specifier: ^19.2.2 + version: 19.2.2(@types/react@19.2.2) code-inspector-plugin: specifier: workspace:^ version: link:../../packages/code-inspector-plugin eslint: - specifier: ^9 - version: 9.18.0(jiti@2.5.1) + specifier: ^9.39.1 + version: 9.39.1(jiti@2.6.1) eslint-config-next: - specifier: 15.4.4 - version: 15.4.4(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + specifier: 16.0.1 + version: 16.0.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) tailwindcss: - specifier: ^4 - version: 4.1.11 + specifier: ^4.1.16 + version: 4.1.16 typescript: - specifier: ^5 - version: 5.8.2 + specifier: ^5.9.3 + version: 5.9.3 demos/vite-astro: dependencies: @@ -298,7 +298,7 @@ importers: version: 0.5.5(typescript@5.3.3) astro: specifier: ^4.4.1 - version: 4.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.3.3) + version: 4.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.3.3) code-inspector-plugin: specifier: workspace:* version: link:../../packages/code-inspector-plugin @@ -314,7 +314,7 @@ importers: devDependencies: '@preact/preset-vite': specifier: ^2.6.0 - version: 2.7.0(@babel/core@7.24.7)(preact@10.19.3)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + version: 2.7.0(@babel/core@7.24.7)(preact@10.19.3)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) code-inspector-plugin: specifier: workspace:* version: link:../../packages/code-inspector-plugin @@ -323,13 +323,13 @@ importers: version: 5.3.3 vite: specifier: ^5.0.0 - version: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) demos/vite-qwik: dependencies: '@builder.io/qwik': specifier: ^1.5.1 - version: 1.5.2(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(undici@6.14.1) + version: 1.5.2(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(undici@6.14.1) devDependencies: code-inspector-plugin: specifier: workspace:* @@ -342,7 +342,7 @@ importers: version: 5.4.5 vite: specifier: ^5.2.0 - version: 5.2.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 5.2.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) demos/vite-react: dependencies: @@ -384,7 +384,7 @@ importers: version: 18.2.0 react-countup: specifier: ^6.4.0 - version: 6.4.0(@babel/core@7.24.7)(@types/babel__core@7.20.5)(react@18.2.0)(rollup@3.29.4) + version: 6.4.0(@babel/core@7.21.3)(@types/babel__core@7.20.5)(react@18.2.0)(rollup@3.29.4) react-dom: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) @@ -399,7 +399,7 @@ importers: version: 6.0.0(react@18.2.0)(redux@4.2.1) styled-components: specifier: ^5.3.6 - version: 5.3.6(@babel/core@7.24.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) + version: 5.3.6(@babel/core@7.21.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) devDependencies: '@types/lodash-es': specifier: ^4.17.6 @@ -436,7 +436,7 @@ importers: version: 8.28.0 eslint-config-alloy: specifier: ^4.7.0 - version: 4.7.0(@babel/eslint-parser@7.23.3(@babel/core@7.24.7)(eslint@8.28.0))(@babel/preset-react@7.22.5(@babel/core@7.24.7))(@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint@8.28.0)(typescript@4.9.5))(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint-plugin-react@7.32.2(eslint@8.28.0))(eslint@8.28.0)(typescript@4.9.5)(vue-eslint-parser@9.0.3(eslint@8.28.0)) + version: 4.7.0(@babel/eslint-parser@7.23.3(@babel/core@7.21.3)(eslint@8.28.0))(@babel/preset-react@7.22.5(@babel/core@7.21.3))(@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint@8.28.0)(typescript@4.9.5))(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint-plugin-react@7.32.2(eslint@8.28.0))(eslint@8.28.0)(typescript@4.9.5)(vue-eslint-parser@9.0.3(eslint@8.28.0)) eslint-plugin-react: specifier: ^7.31.11 version: 7.32.2(eslint@8.28.0) @@ -470,16 +470,16 @@ importers: version: 5.3.3 vite: specifier: ^5.0.0 - version: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) vite-plugin-solid: specifier: ^2.7.2 - version: 2.8.0(solid-js@1.8.7)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + version: 2.8.0(solid-js@1.8.7)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) demos/vite-svelte: devDependencies: '@sveltejs/vite-plugin-svelte': specifier: ^3.1.1 - version: 3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + version: 3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@tsconfig/svelte': specifier: ^5.0.4 version: 5.0.4 @@ -491,7 +491,7 @@ importers: version: 4.2.18 svelte-check: specifier: ^3.8.5 - version: 3.8.5(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18) + version: 3.8.5(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18) tslib: specifier: ^2.6.3 version: 2.6.3 @@ -500,7 +500,7 @@ importers: version: 5.5.3 vite: specifier: ^5.4.1 - version: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) demos/vite-vue2: dependencies: @@ -610,10 +610,10 @@ importers: devDependencies: '@vitejs/plugin-vue': specifier: ^4.1.0 - version: 4.1.0(vite@4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47) + version: 4.1.0(vite@4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47) '@vitejs/plugin-vue-jsx': specifier: ^3.0.1 - version: 3.0.1(vite@4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47) + version: 3.0.1(vite@4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47) code-inspector-plugin: specifier: workspace:* version: link:../../packages/code-inspector-plugin @@ -625,7 +625,7 @@ importers: version: 4.9.5 vite: specifier: ^4.2.0 - version: 4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) vue-tsc: specifier: ^1.2.0 version: 1.2.0(typescript@4.9.5) @@ -903,13 +903,13 @@ importers: devDependencies: vitepress: specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@20.14.11)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2) + version: 1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@24.10.0)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3) docs/zh: devDependencies: vitepress: specifier: 1.0.0-beta.2 - version: 1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@20.14.11)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2) + version: 1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@24.10.0)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3) packages/code-inspector-plugin: dependencies: @@ -1023,7 +1023,7 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) packages/mako: dependencies: @@ -1039,7 +1039,7 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) packages/turbopack: dependencies: @@ -1058,7 +1058,7 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) packages/vite: dependencies: @@ -1077,7 +1077,7 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) packages/webpack: dependencies: @@ -1093,7 +1093,7 @@ importers: version: 4.9.5 vite: specifier: ^4.3.9 - version: 4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + version: 4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) packages: @@ -2645,8 +2645,8 @@ packages: '@emnapi/runtime@1.3.1': resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} - '@emnapi/runtime@1.4.5': - resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} + '@emnapi/runtime@1.7.0': + resolution: {integrity: sha512-oAYoQnCYaQZKVS53Fq23ceWMRxq5EhQsE0x0RdQ55jT7wagMu5k+fS39v1fiSLrtrLQlXwVINenqhLMtTrV/1Q==} '@emotion/hash@0.8.0': resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} @@ -3497,6 +3497,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -3505,10 +3511,22 @@ packages: resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/config-array@0.21.1': + resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.10.0': resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@1.4.1': resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3517,18 +3535,34 @@ packages: resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.18.0': resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.39.1': + resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@2.1.5': resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.2.5': resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@farmfe/cli@1.0.2': resolution: {integrity: sha512-ZZRmXOSLkA7kWzmj6IVSH5U4NimNzFSa9hI0rRlPbgNwsfBIooUfthMjMZPnMwnFD9SIxLurlMJkwKyb4wpDKQ==} engines: {node: '>= 16'} @@ -3563,14 +3597,12 @@ packages: engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@farmfe/core-linux-x64-musl@1.2.8': resolution: {integrity: sha512-+ncq7JLmM/zSeTQkZhBQO15c/2Svv/75t20G3bqD9bHcUWYwb5sUDs1Nxt69aJqp1zY29Q8VT9DREAYkOSJdew==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@farmfe/core-win32-arm64-msvc@1.2.8': resolution: {integrity: sha512-5qLKljphERE0dJLehL9s4UeIBSCYfBzdzuCZ249fgZoJQ62p0/VcnHUf6uT0ayQCX1hU6LD43S2Mha2s5ZVyHA==} @@ -3684,20 +3716,28 @@ packages: resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} engines: {node: '>=18.18'} + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + '@iconify/types@2.0.0': resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} '@iconify/utils@2.1.1': resolution: {integrity: sha512-H8xz74JDzDw8f0qLxwIaxFMnFkbXTZNWEufOk3WxaLFHV4h0A2FjIDgNk5LzC0am4jssnjdeJJdRs3UFu3582Q==} + '@img/colour@1.0.0': + resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} + engines: {node: '>=18'} + '@img/sharp-darwin-arm64@0.33.5': resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] - '@img/sharp-darwin-arm64@0.34.3': - resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==} + '@img/sharp-darwin-arm64@0.34.4': + resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] @@ -3708,8 +3748,8 @@ packages: cpu: [x64] os: [darwin] - '@img/sharp-darwin-x64@0.34.3': - resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==} + '@img/sharp-darwin-x64@0.34.4': + resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] @@ -3719,8 +3759,8 @@ packages: cpu: [arm64] os: [darwin] - '@img/sharp-libvips-darwin-arm64@1.2.0': - resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==} + '@img/sharp-libvips-darwin-arm64@1.2.3': + resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==} cpu: [arm64] os: [darwin] @@ -3729,8 +3769,8 @@ packages: cpu: [x64] os: [darwin] - '@img/sharp-libvips-darwin-x64@1.2.0': - resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==} + '@img/sharp-libvips-darwin-x64@1.2.3': + resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==} cpu: [x64] os: [darwin] @@ -3738,183 +3778,157 @@ packages: resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} cpu: [arm64] os: [linux] - libc: [glibc] - '@img/sharp-libvips-linux-arm64@1.2.0': - resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==} + '@img/sharp-libvips-linux-arm64@1.2.3': + resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-arm@1.0.5': resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} cpu: [arm] os: [linux] - libc: [glibc] - '@img/sharp-libvips-linux-arm@1.2.0': - resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==} + '@img/sharp-libvips-linux-arm@1.2.3': + resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==} cpu: [arm] os: [linux] - libc: [glibc] - '@img/sharp-libvips-linux-ppc64@1.2.0': - resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==} + '@img/sharp-libvips-linux-ppc64@1.2.3': + resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-s390x@1.0.4': resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} cpu: [s390x] os: [linux] - libc: [glibc] - '@img/sharp-libvips-linux-s390x@1.2.0': - resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==} + '@img/sharp-libvips-linux-s390x@1.2.3': + resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-x64@1.0.4': resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} cpu: [x64] os: [linux] - libc: [glibc] - '@img/sharp-libvips-linux-x64@1.2.0': - resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==} + '@img/sharp-libvips-linux-x64@1.2.3': + resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linuxmusl-arm64@1.0.4': resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} cpu: [arm64] os: [linux] - libc: [musl] - '@img/sharp-libvips-linuxmusl-arm64@1.2.0': - resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==} + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': + resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.0.4': resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} cpu: [x64] os: [linux] - libc: [musl] - '@img/sharp-libvips-linuxmusl-x64@1.2.0': - resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==} + '@img/sharp-libvips-linuxmusl-x64@1.2.3': + resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-linux-arm64@0.33.5': resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [glibc] - '@img/sharp-linux-arm64@0.34.3': - resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==} + '@img/sharp-linux-arm64@0.34.4': + resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-linux-arm@0.33.5': resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] - libc: [glibc] - '@img/sharp-linux-arm@0.34.3': - resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==} + '@img/sharp-linux-arm@0.34.4': + resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] - libc: [glibc] - '@img/sharp-linux-ppc64@0.34.3': - resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==} + '@img/sharp-linux-ppc64@0.34.4': + resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-linux-s390x@0.33.5': resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - libc: [glibc] - '@img/sharp-linux-s390x@0.34.3': - resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==} + '@img/sharp-linux-s390x@0.34.4': + resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-linux-x64@0.33.5': resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [glibc] - '@img/sharp-linux-x64@0.34.3': - resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==} + '@img/sharp-linux-x64@0.34.4': + resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-linuxmusl-arm64@0.33.5': resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [musl] - '@img/sharp-linuxmusl-arm64@0.34.3': - resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==} + '@img/sharp-linuxmusl-arm64@0.34.4': + resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-linuxmusl-x64@0.33.5': resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [musl] - '@img/sharp-linuxmusl-x64@0.34.3': - resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==} + '@img/sharp-linuxmusl-x64@0.34.4': + resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-wasm32@0.33.5': resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] - '@img/sharp-wasm32@0.34.3': - resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==} + '@img/sharp-wasm32@0.34.4': + resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] - '@img/sharp-win32-arm64@0.34.3': - resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==} + '@img/sharp-win32-arm64@0.34.4': + resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [win32] @@ -3925,8 +3939,8 @@ packages: cpu: [ia32] os: [win32] - '@img/sharp-win32-ia32@0.34.3': - resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==} + '@img/sharp-win32-ia32@0.34.4': + resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] @@ -3937,8 +3951,8 @@ packages: cpu: [x64] os: [win32] - '@img/sharp-win32-x64@0.34.3': - resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==} + '@img/sharp-win32-x64@0.34.4': + resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] @@ -3959,10 +3973,6 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - '@isaacs/fs-minipass@4.0.1': - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} - engines: {node: '>=18.0.0'} - '@istanbuljs/load-nyc-config@1.1.0': resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -4053,6 +4063,9 @@ packages: resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.0': resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} @@ -4077,6 +4090,9 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.22': resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} @@ -4139,8 +4155,8 @@ packages: '@mdn/browser-compat-data@5.5.37': resolution: {integrity: sha512-qmNiN25IDZVIhZQZ72e4J4Aw4kJDSHGPnNuC6xOCFcDgQHftU2dsFyQlRWrVQJGC9M2WC23u/b3PyEBW0av1ow==} - '@mdx-js/loader@3.1.0': - resolution: {integrity: sha512-xU/lwKdOyfXtQGqn3VnJjlDrmKXEvMi1mgYxVmukEUtVycIz1nh7oQ40bKTd4cA7rLStqu0740pnhGYxGoqsCg==} + '@mdx-js/loader@3.1.1': + resolution: {integrity: sha512-0TTacJyZ9mDmY+VefuthVshaNIyCGZHJG2fMnGaDttCt8HmjUF7SizlHJpaCDoGnN635nK1wpzfpx/Xx5S4WnQ==} peerDependencies: webpack: '>=5' peerDependenciesMeta: @@ -4225,49 +4241,42 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@napi-rs/nice-linux-arm64-musl@1.0.4': resolution: {integrity: sha512-4b1KYG+sriufhFrpUS9uNOEYYJqSfcbnwGx6uGX7JjrH8tELG90cOpCawz5THNIwlS3DhLgnCOcn0+4p6z26QA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@napi-rs/nice-linux-ppc64-gnu@1.0.4': resolution: {integrity: sha512-iaf3vMRgr23oe1PUaKpxaH3DS0IMN0+N9iEiWVwYPm/U15vZFYdqVegGfN2PzrZLUl5lc8ZxbmEKDfuqslhAMA==} engines: {node: '>= 10'} cpu: [ppc64] os: [linux] - libc: [glibc] '@napi-rs/nice-linux-riscv64-gnu@1.0.4': resolution: {integrity: sha512-UXoREY6Yw6rHrGuTwQgBxpfjK34t6mTjibE9/cXbefL9AuUCJ9gEgwNKZiONuR5QGswChqo9cnthjdKkYyAdDg==} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] - libc: [glibc] '@napi-rs/nice-linux-s390x-gnu@1.0.4': resolution: {integrity: sha512-eFbgYCRPmsqbYPAlLYU5hYTNbogmIDUvknilehHsFhCH1+0/kN87lP+XaLT0Yeq4V/rpwChSd9vlz4muzFArtw==} engines: {node: '>= 10'} cpu: [s390x] os: [linux] - libc: [glibc] '@napi-rs/nice-linux-x64-gnu@1.0.4': resolution: {integrity: sha512-4T3E6uTCwWT6IPnwuPcWVz3oHxvEp/qbrCxZhsgzwTUBEwu78EGNXGdHfKJQt3soth89MLqZJw+Zzvnhrsg1mQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@napi-rs/nice-linux-x64-musl@1.0.4': resolution: {integrity: sha512-NtbBkAeyBPLvCBkWtwkKXkNSn677eaT0cX3tygq+2qVv71TmHgX4gkX6o9BXjlPzdgPGwrUudavCYPT9tzkEqQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@napi-rs/nice-win32-arm64-msvc@1.0.4': resolution: {integrity: sha512-vubOe3i+YtSJGEk/++73y+TIxbuVHi+W8ZzrRm2eETCjCRwNlgbfToQZ85dSA+4iBB/NJRGNp+O4hfdbbttZWA==} @@ -4309,8 +4318,8 @@ packages: '@next/env@15.1.6': resolution: {integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==} - '@next/env@15.4.4': - resolution: {integrity: sha512-SJKOOkULKENyHSYXE5+KiFU6itcIb6wSBjgM92meK0HVKpo94dNOLZVdLLuS7/BxImROkGoPsjR4EnuDucqiiA==} + '@next/env@16.0.1': + resolution: {integrity: sha512-LFvlK0TG2L3fEOX77OC35KowL8D7DlFF45C0OvKMC4hy8c/md1RC4UMNDlUGJqfCoCS2VWrZ4dSE6OjaX5+8mw==} '@next/eslint-plugin-next@14.2.4': resolution: {integrity: sha512-svSFxW9f3xDaZA3idQmlFw7SusOuWTpDTAeBlO3AEPDltrraV+lqs7mAc6A27YdnpQVVIA3sODqUAAHdWhVWsA==} @@ -4318,11 +4327,11 @@ packages: '@next/eslint-plugin-next@15.1.6': resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==} - '@next/eslint-plugin-next@15.4.4': - resolution: {integrity: sha512-1FDsyN//ai3Jd97SEd7scw5h1yLdzDACGOPRofr2GD3sEFsBylEEoL0MHSerd4n2dq9Zm/mFMqi4+NRMOreOKA==} + '@next/eslint-plugin-next@16.0.1': + resolution: {integrity: sha512-g4Cqmv/gyFEXNeVB2HkqDlYKfy+YrlM2k8AVIO/YQVEPfhVruH1VA99uT1zELLnPLIeOnx8IZ6Ddso0asfTIdw==} - '@next/mdx@15.4.4': - resolution: {integrity: sha512-DB64O/+wlcqr0XrATgGLTk3FqxdOgC035iC4wDlmG2QugNVq7godC6bLhVdNbo9uW7ib0tmgESXcG3JV7l9HiA==} + '@next/mdx@16.0.1': + resolution: {integrity: sha512-YxcrY9Ig5agm5zekW7ta37OQ9P9dHueNRWLJLiYdE42wYrlfZ0KdjiQ3J5AHMPNq8tjiBxNOwkP4omTsVmb+9g==} peerDependencies: '@mdx-js/loader': '>=0.15.0' '@mdx-js/react': '>=0.15.0' @@ -4344,8 +4353,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@15.4.4': - resolution: {integrity: sha512-eVG55dnGwfUuG+TtnUCt+mEJ+8TGgul6nHEvdb8HEH7dmJIFYOCApAaFrIrxwtEq2Cdf+0m5sG1Np8cNpw9EAw==} + '@next/swc-darwin-arm64@16.0.1': + resolution: {integrity: sha512-R0YxRp6/4W7yG1nKbfu41bp3d96a0EalonQXiMe+1H9GTHfKxGNCGFNWUho18avRBPsO8T3RmdWuzmfurlQPbg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -4362,8 +4371,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@15.4.4': - resolution: {integrity: sha512-zqG+/8apsu49CltEj4NAmCGZvHcZbOOOsNoTVeIXphYWIbE4l6A/vuQHyqll0flU2o3dmYCXsBW5FmbrGDgljQ==} + '@next/swc-darwin-x64@16.0.1': + resolution: {integrity: sha512-kETZBocRux3xITiZtOtVoVvXyQLB7VBxN7L6EPqgI5paZiUlnsgYv4q8diTNYeHmF9EiehydOBo20lTttCbHAg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -4373,84 +4382,72 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@next/swc-linux-arm64-gnu@15.1.6': resolution: {integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] - '@next/swc-linux-arm64-gnu@15.4.4': - resolution: {integrity: sha512-LRD4l2lq4R+2QCHBQVC0wjxxkLlALGJCwigaJ5FSRSqnje+MRKHljQNZgDCaKUZQzO/TXxlmUdkZP/X3KNGZaw==} + '@next/swc-linux-arm64-gnu@16.0.1': + resolution: {integrity: sha512-hWg3BtsxQuSKhfe0LunJoqxjO4NEpBmKkE+P2Sroos7yB//OOX3jD5ISP2wv8QdUwtRehMdwYz6VB50mY6hqAg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@next/swc-linux-arm64-musl@14.2.4': resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@next/swc-linux-arm64-musl@15.1.6': resolution: {integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] - '@next/swc-linux-arm64-musl@15.4.4': - resolution: {integrity: sha512-LsGUCTvuZ0690fFWerA4lnQvjkYg9gHo12A3wiPUR4kCxbx/d+SlwmonuTH2SWZI+RVGA9VL3N0S03WTYv6bYg==} + '@next/swc-linux-arm64-musl@16.0.1': + resolution: {integrity: sha512-UPnOvYg+fjAhP3b1iQStcYPWeBFRLrugEyK/lDKGk7kLNua8t5/DvDbAEFotfV1YfcOY6bru76qN9qnjLoyHCQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@next/swc-linux-x64-gnu@14.2.4': resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@next/swc-linux-x64-gnu@15.1.6': resolution: {integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] - '@next/swc-linux-x64-gnu@15.4.4': - resolution: {integrity: sha512-aOy5yNRpLL3wNiJVkFYl6w22hdREERNjvegE6vvtix8LHRdsTHhWTpgvcYdCK7AIDCQW5ATmzr9XkPHvSoAnvg==} + '@next/swc-linux-x64-gnu@16.0.1': + resolution: {integrity: sha512-Et81SdWkcRqAJziIgFtsFyJizHoWne4fzJkvjd6V4wEkWTB4MX6J0uByUb0peiJQ4WeAt6GGmMszE5KrXK6WKg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@next/swc-linux-x64-musl@14.2.4': resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@next/swc-linux-x64-musl@15.1.6': resolution: {integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] - '@next/swc-linux-x64-musl@15.4.4': - resolution: {integrity: sha512-FL7OAn4UkR8hKQRGBmlHiHinzOb07tsfARdGh7v0Z0jEJ3sz8/7L5bR23ble9E6DZMabSStqlATHlSxv1fuzAg==} + '@next/swc-linux-x64-musl@16.0.1': + resolution: {integrity: sha512-qBbgYEBRrC1egcG03FZaVfVxrJm8wBl7vr8UFKplnxNRprctdP26xEv9nJ07Ggq4y1adwa0nz2mz83CELY7N6Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@next/swc-win32-arm64-msvc@14.2.4': resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==} @@ -4464,8 +4461,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@15.4.4': - resolution: {integrity: sha512-eEdNW/TXwjYhOulQh0pffTMMItWVwKCQpbziSBmgBNFZIIRn2GTXrhrewevs8wP8KXWYMx8Z+mNU0X+AfvtrRg==} + '@next/swc-win32-arm64-msvc@16.0.1': + resolution: {integrity: sha512-cPuBjYP6I699/RdbHJonb3BiRNEDm5CKEBuJ6SD8k3oLam2fDRMKAvmrli4QMDgT2ixyRJ0+DTkiODbIQhRkeQ==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -4488,8 +4485,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@15.4.4': - resolution: {integrity: sha512-SE5pYNbn/xZKMy1RE3pAs+4xD32OI4rY6mzJa4XUkp/ItZY+OMjIgilskmErt8ls/fVJ+Ihopi2QIeW6O3TrMw==} + '@next/swc-win32-x64-msvc@16.0.1': + resolution: {integrity: sha512-XeEUJsE4JYtfrXe/LaJn3z1pD19fK0Q6Er8Qoufi+HqvdO4LEPyCxLUt4rxA+4RfYo6S9gMlmzCMU2F+AatFqQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -4899,35 +4896,30 @@ packages: engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - libc: [glibc] '@parcel/watcher-linux-arm64-glibc@2.4.1': resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] '@parcel/watcher-linux-arm64-musl@2.4.1': resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [musl] '@parcel/watcher-linux-x64-glibc@2.4.1': resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [glibc] '@parcel/watcher-linux-x64-musl@2.4.1': resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [musl] '@parcel/watcher-wasm@2.4.1': resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} @@ -5286,7 +5278,6 @@ packages: resolution: {integrity: sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==} cpu: [arm] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm-gnueabihf@4.9.1': resolution: {integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==} @@ -5297,79 +5288,66 @@ packages: resolution: {integrity: sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==} cpu: [arm] os: [linux] - libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.16.4': resolution: {integrity: sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==} cpu: [arm64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm64-gnu@4.9.1': resolution: {integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==} cpu: [arm64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.16.4': resolution: {integrity: sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==} cpu: [arm64] os: [linux] - libc: [musl] '@rollup/rollup-linux-arm64-musl@4.9.1': resolution: {integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==} cpu: [arm64] os: [linux] - libc: [musl] '@rollup/rollup-linux-powerpc64le-gnu@4.16.4': resolution: {integrity: sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==} cpu: [ppc64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.16.4': resolution: {integrity: sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==} cpu: [riscv64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.9.1': resolution: {integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==} cpu: [riscv64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-s390x-gnu@4.16.4': resolution: {integrity: sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==} cpu: [s390x] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.16.4': resolution: {integrity: sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==} cpu: [x64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.9.1': resolution: {integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==} cpu: [x64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-musl@4.16.4': resolution: {integrity: sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==} cpu: [x64] os: [linux] - libc: [musl] '@rollup/rollup-linux-x64-musl@4.9.1': resolution: {integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==} cpu: [x64] os: [linux] - libc: [musl] '@rollup/rollup-win32-arm64-msvc@4.16.4': resolution: {integrity: sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==} @@ -5438,49 +5416,41 @@ packages: resolution: {integrity: sha512-JB9FAYWjYAeNCPFh0mQu3SZdFHiA+EY37z1AktLDl789SoEec2HPGkvvOs+OIET1pKWgjUGD4Z4Uq4P/r5JFNA==} cpu: [arm64] os: [linux] - libc: [glibc] '@rspack/binding-linux-arm64-gnu@1.2.8': resolution: {integrity: sha512-En/SMl45s19iUVb1/ZDFQvFDxIjnlfk7yqV3drMWWAL5HSgksNejaTIFTO52aoohIBbmwuk5wSGcbU0G0IFiPg==} cpu: [arm64] os: [linux] - libc: [glibc] '@rspack/binding-linux-arm64-musl@0.5.7': resolution: {integrity: sha512-3fNhPvA9Kj/L7rwr2Pj1bvxWBLBgqfkqSvt91iUxPbxgfTiSBQh0Tfb9+hkHv2VCTyNQI/vytkOH+4i4DNXCBw==} cpu: [arm64] os: [linux] - libc: [musl] '@rspack/binding-linux-arm64-musl@1.2.8': resolution: {integrity: sha512-N1oZsXfJ9VLLcK7p1PS65cxLYQCZ7iqHW2OP6Ew2+hlz/d1hzngxgzrtZMCXFOHXDvTzVu5ff6jGS2v7+zv2tA==} cpu: [arm64] os: [linux] - libc: [musl] '@rspack/binding-linux-x64-gnu@0.5.7': resolution: {integrity: sha512-y/GnXt1hhbKSqzBSy+ALWwievlejQhIIF8FPXL1kKFh60zl7DE+iYHSJ128jIJiph9dQkBnHw0ABJ5D+vbSqdA==} cpu: [x64] os: [linux] - libc: [glibc] '@rspack/binding-linux-x64-gnu@1.2.8': resolution: {integrity: sha512-BdPaepoLKuaVwip4QK/nGqNi1xpbCWSxiycPbKRrGqKgt/QGihxxFgiqr4EpWQVIJNIMy4nCsg4arO0+H1KWGQ==} cpu: [x64] os: [linux] - libc: [glibc] '@rspack/binding-linux-x64-musl@0.5.7': resolution: {integrity: sha512-US/FUv6cvbxbe4nymINwer/EQTvGEgCaAIrvKuAP0yAfK0eyqIHYZj/zCBM2qOS69Mpc2FWVMC/ftRyCvAz/xw==} cpu: [x64] os: [linux] - libc: [musl] '@rspack/binding-linux-x64-musl@1.2.8': resolution: {integrity: sha512-GFv0Bod268OcXIcjeLoPlK0oz8rClEIxIRFkz+ejhbvfCwRJ+Fd+EKaaKQTBfZQujPqc0h2GctIF25nN5pFTmA==} cpu: [x64] os: [linux] - libc: [musl] '@rspack/binding-win32-arm64-msvc@0.5.7': resolution: {integrity: sha512-g7NWXa5EGvh6j1VPXGOFaWuOVxdPYYLh3wpUl46Skrd6qFZKB2r+yNhuXo6lqezwYvbtHEDrmFOHF2S6epXO5g==} @@ -5787,28 +5757,24 @@ packages: engines: {node: '>=10'} cpu: [arm64] os: [linux] - libc: [glibc] '@swc/core-linux-arm64-musl@1.11.13': resolution: {integrity: sha512-+ukuB8RHD5BHPCUjQwuLP98z+VRfu+NkKQVBcLJGgp0/+w7y0IkaxLY/aKmrAS5ofCNEGqKL+AOVyRpX1aw+XA==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - libc: [musl] '@swc/core-linux-x64-gnu@1.11.13': resolution: {integrity: sha512-q9H3WI3U3dfJ34tdv60zc8oTuWvSd5fOxytyAO9Pc5M82Hic3jjWaf2xBekUg07ubnMZpyfnv+MlD+EbUI3Llw==} engines: {node: '>=10'} cpu: [x64] os: [linux] - libc: [glibc] '@swc/core-linux-x64-musl@1.11.13': resolution: {integrity: sha512-9aaZnnq2pLdTbAzTSzy/q8dr7Woy3aYIcQISmw1+Q2/xHJg5y80ZzbWSWKYca/hKonDMjIbGR6dp299I5J0aeA==} engines: {node: '>=10'} cpu: [x64] os: [linux] - libc: [musl] '@swc/core-win32-arm64-msvc@1.11.13': resolution: {integrity: sha512-n3QZmDewkHANcoHvtwvA6yJbmS4XJf0MBMmwLZoKDZ2dOnC9D/jHiXw7JOohEuzYcpLoL5tgbqmjxa3XNo9Oow==} @@ -5858,69 +5824,65 @@ packages: '@swc/wasm@1.11.13': resolution: {integrity: sha512-R3cpgAX/mxoPH9zNCwmWGOqtvQ9obRpf97Kw8FJu0HUsEcEG766ozxFgfzE9p4IwK7pKOvzYR+szDtIXlOQwdQ==} - '@tailwindcss/node@4.1.11': - resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==} + '@tailwindcss/node@4.1.16': + resolution: {integrity: sha512-BX5iaSsloNuvKNHRN3k2RcCuTEgASTo77mofW0vmeHkfrDWaoFAFvNHpEgtu0eqyypcyiBkDWzSMxJhp3AUVcw==} - '@tailwindcss/oxide-android-arm64@4.1.11': - resolution: {integrity: sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==} + '@tailwindcss/oxide-android-arm64@4.1.16': + resolution: {integrity: sha512-8+ctzkjHgwDJ5caq9IqRSgsP70xhdhJvm+oueS/yhD5ixLhqTw9fSL1OurzMUhBwE5zK26FXLCz2f/RtkISqHA==} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@tailwindcss/oxide-darwin-arm64@4.1.11': - resolution: {integrity: sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==} + '@tailwindcss/oxide-darwin-arm64@4.1.16': + resolution: {integrity: sha512-C3oZy5042v2FOALBZtY0JTDnGNdS6w7DxL/odvSny17ORUnaRKhyTse8xYi3yKGyfnTUOdavRCdmc8QqJYwFKA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@tailwindcss/oxide-darwin-x64@4.1.11': - resolution: {integrity: sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==} + '@tailwindcss/oxide-darwin-x64@4.1.16': + resolution: {integrity: sha512-vjrl/1Ub9+JwU6BP0emgipGjowzYZMjbWCDqwA2Z4vCa+HBSpP4v6U2ddejcHsolsYxwL5r4bPNoamlV0xDdLg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@tailwindcss/oxide-freebsd-x64@4.1.11': - resolution: {integrity: sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==} + '@tailwindcss/oxide-freebsd-x64@4.1.16': + resolution: {integrity: sha512-TSMpPYpQLm+aR1wW5rKuUuEruc/oOX3C7H0BTnPDn7W/eMw8W+MRMpiypKMkXZfwH8wqPIRKppuZoedTtNj2tg==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11': - resolution: {integrity: sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==} + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16': + resolution: {integrity: sha512-p0GGfRg/w0sdsFKBjMYvvKIiKy/LNWLWgV/plR4lUgrsxFAoQBFrXkZ4C0w8IOXfslB9vHK/JGASWD2IefIpvw==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@tailwindcss/oxide-linux-arm64-gnu@4.1.11': - resolution: {integrity: sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==} + '@tailwindcss/oxide-linux-arm64-gnu@4.1.16': + resolution: {integrity: sha512-DoixyMmTNO19rwRPdqviTrG1rYzpxgyYJl8RgQvdAQUzxC1ToLRqtNJpU/ATURSKgIg6uerPw2feW0aS8SNr/w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] - '@tailwindcss/oxide-linux-arm64-musl@4.1.11': - resolution: {integrity: sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==} + '@tailwindcss/oxide-linux-arm64-musl@4.1.16': + resolution: {integrity: sha512-H81UXMa9hJhWhaAUca6bU2wm5RRFpuHImrwXBUvPbYb+3jo32I9VIwpOX6hms0fPmA6f2pGVlybO6qU8pF4fzQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] - '@tailwindcss/oxide-linux-x64-gnu@4.1.11': - resolution: {integrity: sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==} + '@tailwindcss/oxide-linux-x64-gnu@4.1.16': + resolution: {integrity: sha512-ZGHQxDtFC2/ruo7t99Qo2TTIvOERULPl5l0K1g0oK6b5PGqjYMga+FcY1wIUnrUxY56h28FxybtDEla+ICOyew==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] - '@tailwindcss/oxide-linux-x64-musl@4.1.11': - resolution: {integrity: sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==} + '@tailwindcss/oxide-linux-x64-musl@4.1.16': + resolution: {integrity: sha512-Oi1tAaa0rcKf1Og9MzKeINZzMLPbhxvm7rno5/zuP1WYmpiG0bEHq4AcRUiG2165/WUzvxkW4XDYCscZWbTLZw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] - '@tailwindcss/oxide-wasm32-wasi@4.1.11': - resolution: {integrity: sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==} + '@tailwindcss/oxide-wasm32-wasi@4.1.16': + resolution: {integrity: sha512-B01u/b8LteGRwucIBmCQ07FVXLzImWESAIMcUU6nvFt/tYsQ6IHz8DmZ5KtvmwxD+iTYBtM1xwoGXswnlu9v0Q==} engines: {node: '>=14.0.0'} cpu: [wasm32] bundledDependencies: @@ -5931,24 +5893,24 @@ packages: - '@emnapi/wasi-threads' - tslib - '@tailwindcss/oxide-win32-arm64-msvc@4.1.11': - resolution: {integrity: sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==} + '@tailwindcss/oxide-win32-arm64-msvc@4.1.16': + resolution: {integrity: sha512-zX+Q8sSkGj6HKRTMJXuPvOcP8XfYON24zJBRPlszcH1Np7xuHXhWn8qfFjIujVzvH3BHU+16jBXwgpl20i+v9A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@tailwindcss/oxide-win32-x64-msvc@4.1.11': - resolution: {integrity: sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==} + '@tailwindcss/oxide-win32-x64-msvc@4.1.16': + resolution: {integrity: sha512-m5dDFJUEejbFqP+UXVstd4W/wnxA4F61q8SoL+mqTypId2T2ZpuxosNSgowiCnLp2+Z+rivdU0AqpfgiD7yCBg==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@tailwindcss/oxide@4.1.11': - resolution: {integrity: sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==} + '@tailwindcss/oxide@4.1.16': + resolution: {integrity: sha512-2OSv52FRuhdlgyOQqgtQHuCgXnS8nFSYRp2tJ+4WZXKgTxqPy7SMSls8c3mPT5pkZ17SBToGM5LHEJBO7miEdg==} engines: {node: '>= 10'} - '@tailwindcss/postcss@4.1.11': - resolution: {integrity: sha512-q/EAIIpF6WpLhKEuQSEVMZNMIY8KhWoAemZ9eylNAih9jxMGAYPPWBn3I9QL/2jZ+e7OEz/tZkX5HwbBR4HohA==} + '@tailwindcss/postcss@4.1.16': + resolution: {integrity: sha512-Qn3SFGPXYQMKR/UtqS+dqvPrzEeBZHrFA92maT4zijCVggdsXnDBMsPFJo1eArX3J+O+Gi+8pV4PkqjLCNBk3A==} '@testing-library/dom@10.4.0': resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} @@ -6183,6 +6145,9 @@ packages: '@types/node@20.3.3': resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==} + '@types/node@24.10.0': + resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==} + '@types/normalize-package-data@2.4.1': resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -6224,6 +6189,11 @@ packages: peerDependencies: '@types/react': ^19.0.0 + '@types/react-dom@19.2.2': + resolution: {integrity: sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw==} + peerDependencies: + '@types/react': ^19.2.0 + '@types/react@18.2.6': resolution: {integrity: sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==} @@ -6233,6 +6203,9 @@ packages: '@types/react@19.0.7': resolution: {integrity: sha512-MoFsEJKkAtZCrC1r6CM8U22GzhG7u2Wir8ons/aCKH6MBdD1ibV24zOSSkdZVUKqN5i396zG5VKLYZ3yaUZdLA==} + '@types/react@19.2.2': + resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==} + '@types/resolve@1.17.1': resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} @@ -6371,6 +6344,14 @@ packages: typescript: optional: true + '@typescript-eslint/eslint-plugin@8.46.3': + resolution: {integrity: sha512-sbaQ27XBUopBkRiuY/P9sWGOWUW4rl8fDoHIUmLpZd8uldsTyB4/Zg6bWTegPoTLnKj9Hqgn3QD6cjPNB32Odw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.46.3 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/experimental-utils@4.33.0': resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} @@ -6413,6 +6394,19 @@ packages: typescript: optional: true + '@typescript-eslint/parser@8.46.3': + resolution: {integrity: sha512-6m1I5RmHBGTnUGS113G04DMu3CpSdxCAU/UvtjNWL4Nuf3MW9tQhiJqRlHzChIkhy6kZSAQmc+I1bcGjE3yNKg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/project-service@8.46.3': + resolution: {integrity: sha512-Fz8yFXsp2wDFeUElO88S9n4w1I4CWDTXDqDr9gYvZgUpwXQqmZBr9+NTTql5R3J7+hrJZPdpiWaB9VNhAKYLuQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/scope-manager@4.33.0': resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -6425,6 +6419,16 @@ packages: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/scope-manager@8.46.3': + resolution: {integrity: sha512-FCi7Y1zgrmxp3DfWfr+3m9ansUUFoy8dkEdeQSgA9gbm8DaHYvZCdkFRQrtKiedFf3Ha6VmoqoAaP68+i+22kg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.46.3': + resolution: {integrity: sha512-GLupljMniHNIROP0zE7nCcybptolcH8QZfXOpCfhQDAdwJ/ZTlcaBOYebSOZotpti/3HrHSw7D3PZm75gYFsOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/type-utils@5.44.0': resolution: {integrity: sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -6445,6 +6449,13 @@ packages: typescript: optional: true + '@typescript-eslint/type-utils@8.46.3': + resolution: {integrity: sha512-ZPCADbr+qfz3aiTTYNNkCbUt+cjNwI/5McyANNrFBpVxPt7GqpEYz5ZfdwuFyGUnJ9FdDXbGODUu6iRCI6XRXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/types@4.33.0': resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -6457,6 +6468,10 @@ packages: resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/types@8.46.3': + resolution: {integrity: sha512-G7Ok9WN/ggW7e/tOf8TQYMaxgID3Iujn231hfi0Pc7ZheztIJVpO44ekY00b7akqc6nZcvregk0Jpah3kep6hA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@4.33.0': resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} @@ -6484,6 +6499,12 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.46.3': + resolution: {integrity: sha512-f/NvtRjOm80BtNM5OQtlaBdM5BRFUv7gf381j9wygDNL+qOYSNOgtQ/DCndiYi80iIOv76QqaTmp4fa9hwI0OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/utils@5.44.0': resolution: {integrity: sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -6496,6 +6517,13 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@8.46.3': + resolution: {integrity: sha512-VXw7qmdkucEx9WkmR3ld/u6VhRyKeiF1uxWwCy/iuNfokjJ7VhsgLSOTjsol8BunSw190zABzpwdNsze2Kpo4g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/visitor-keys@4.33.0': resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -6508,6 +6536,10 @@ packages: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/visitor-keys@8.46.3': + resolution: {integrity: sha512-uk574k8IU0rOF/AjniX8qbLSGURJVUCeM5e4MIMKBFFi8weeiLrG1fyQejyLXQpRZbU/1BuQasleV/RfHC3hHg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@umijs/ast@4.4.12': resolution: {integrity: sha512-+u7W9uO9NKwm9SsI2f8l8JTYqrD+Ff/GaxyHeK+YzieSnS0kr9kMs6PoDxxGMmYWbKszPBGckXJHvAXtC1GVoA==} @@ -6564,28 +6596,24 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@umijs/es-module-parser-linux-arm64-musl@0.0.7': resolution: {integrity: sha512-cqQffARWkmQ3n1RYNKZR3aD6X8YaP6u1maASjDgPQOpZMAlv/OSDrM/7iGujWTs0PD0haockNG9/DcP6lgPHMw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@umijs/es-module-parser-linux-x64-gnu@0.0.7': resolution: {integrity: sha512-PHrKHtT665Za0Ydjch4ACrNpRU+WIIden12YyF1CtMdhuLDSoU6UfdhF3NoDbgEUcXVDX/ftOqmj0SbH3R1uew==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@umijs/es-module-parser-linux-x64-musl@0.0.7': resolution: {integrity: sha512-cyZvUK5lcECLWzLp/eU1lFlCETcz+LEb+wrdARQSST1dgoIGZsT4cqM1WzYmdZNk3o883tiZizLt58SieEiHBQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@umijs/es-module-parser-win32-arm64-msvc@0.0.7': resolution: {integrity: sha512-V7WxnUI88RboSl0RWLNQeKBT7EDW35fW6Tn92zqtoHHxrhAIL9DtDyvC8REP4qTxeZ6Oej/Ax5I6IjsLx3yTOg==} @@ -6626,28 +6654,24 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@umijs/mako-linux-arm64-musl@0.11.10': resolution: {integrity: sha512-kqI1Jw6IHtDwrcsqPZrYxsV3pHzZyOR+6fCFnF5MSURnXbUbJb6Rk66VsKKpMqbyfsEO6nt0WT9FrRBlFvRU2A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@umijs/mako-linux-x64-gnu@0.11.10': resolution: {integrity: sha512-jlhXVvWJuumMmiE3z3ViugOMx9ZasNM1anng0PsusCgDwfy0IOfGzfwfwagqtzfsC5MwyRcfnRQyDdbfbroaSA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@umijs/mako-linux-x64-musl@0.11.10': resolution: {integrity: sha512-SLV/PRdL12dFEKlQGenW3OboZXmdYi25y+JblgVJLBhpdxZrHFqpCsTZn4L3hVEhyl0/ksR1iY0wtfK3urR29g==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@umijs/mako-win32-ia32-msvc@0.11.10': resolution: {integrity: sha512-quCWpVl7yQjG+ccGhkF81GxO3orXdPW1OZWXWxJgOI0uPk7Hczh2EYMEVqqQGbi/83eJ1e3iE1jRTl/+2eHryQ==} @@ -7566,6 +7590,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + add-dom-event-listener@1.1.0: resolution: {integrity: sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==} @@ -7802,6 +7831,10 @@ packages: resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} engines: {node: '>= 0.4'} + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + array-iterate@2.0.1: resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} @@ -7832,6 +7865,10 @@ packages: resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} engines: {node: '>= 0.4'} + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + array.prototype.flat@1.3.1: resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} @@ -7840,6 +7877,10 @@ packages: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + array.prototype.flatmap@1.3.1: resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} engines: {node: '>= 0.4'} @@ -8475,6 +8516,10 @@ packages: resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} engines: {node: '>= 0.4'} + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + call-bind@1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} @@ -8490,6 +8535,10 @@ packages: resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} engines: {node: '>= 0.4'} + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + call-me-maybe@1.0.2: resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} @@ -8659,10 +8708,6 @@ packages: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} - chownr@3.0.0: - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} - engines: {node: '>=18'} - chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} @@ -9885,6 +9930,10 @@ packages: resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} engines: {node: '>=8'} + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} @@ -10186,6 +10235,10 @@ packages: resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} engines: {node: '>=10.13.0'} + enhanced-resolve@5.18.3: + resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} + engines: {node: '>=10.13.0'} + enhanced-resolve@5.9.3: resolution: {integrity: sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==} engines: {node: '>=10.13.0'} @@ -10229,6 +10282,10 @@ packages: resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} engines: {node: '>= 0.4'} + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} @@ -10261,6 +10318,10 @@ packages: resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} engines: {node: '>= 0.4'} + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} @@ -10279,6 +10340,10 @@ packages: es-shim-unscopables@1.0.2: resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} @@ -10419,10 +10484,10 @@ packages: typescript: optional: true - eslint-config-next@15.4.4: - resolution: {integrity: sha512-sK/lWLUVF5om18O5w76Jt3F8uzu/LP5mVa6TprCMWkjWHUmByq80iHGHcdH7k1dLiJlj+DRIWf98d5piwRsSuA==} + eslint-config-next@16.0.1: + resolution: {integrity: sha512-wNuHw5gNOxwLUvpg0cu6IL0crrVC9hAwdS/7UwleNkwyaMiWIOAwf8yzXVqBBzL3c9A7jVRngJxjoSpPP1aEhg==} peerDependencies: - eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 + eslint: '>=9.0.0' typescript: '>=3.3.1' peerDependenciesMeta: typescript: @@ -10485,6 +10550,27 @@ packages: eslint-import-resolver-webpack: optional: true + eslint-module-utils@2.12.1: + resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + eslint-module-utils@2.8.0: resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} @@ -10544,6 +10630,16 @@ packages: '@typescript-eslint/parser': optional: true + eslint-plugin-import@2.32.0: + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-plugin-jest@25.7.0: resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -10605,6 +10701,12 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + eslint-plugin-react-hooks@7.0.1: + resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==} + engines: {node: '>=18'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + eslint-plugin-react@7.32.2: resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} @@ -10663,6 +10765,10 @@ packages: resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-utils@1.4.3: resolution: {integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==} engines: {node: '>=6'} @@ -10689,10 +10795,18 @@ packages: resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@4.2.0: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-webpack-plugin@3.1.1: resolution: {integrity: sha512-xSucskTN9tOkfW7so4EaiFIkulWLXwCB/15H917lR6pTv0Zot6/fetFucmENRb7J5whVSFKIvwnrnsa78SG2yg==} engines: {node: '>= 12.13.0'} @@ -10722,10 +10836,24 @@ packages: jiti: optional: true + eslint@9.39.1: + resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + espree@10.3.0: resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + espree@6.2.1: resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==} engines: {node: '>=6.0.0'} @@ -11118,6 +11246,10 @@ packages: for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + for-in@1.0.2: resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} engines: {node: '>=0.10.0'} @@ -11317,6 +11449,10 @@ packages: resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} engines: {node: '>= 0.4'} + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + get-own-enumerable-property-symbols@3.0.2: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} @@ -11467,6 +11603,10 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} + globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} @@ -11682,6 +11822,12 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true + hermes-estree@0.25.1: + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} + + hermes-parser@0.25.1: + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + hex-color-regex@1.1.0: resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} @@ -11959,6 +12105,10 @@ packages: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + image-meta@0.2.0: resolution: {integrity: sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==} @@ -12553,6 +12703,10 @@ packages: resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} engines: {node: '>= 0.4'} + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} @@ -12863,8 +13017,8 @@ packages: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true - jiti@2.5.1: - resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true js-cookie@2.2.1: @@ -13160,14 +13314,20 @@ packages: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} + lightningcss-android-arm64@1.30.2: + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + lightningcss-darwin-arm64@1.22.1: resolution: {integrity: sha512-ldvElu+R0QimNTjsKpaZkUv3zf+uefzLy/R1R19jtgOfSRM+zjUCUgDhfEDRmVqJtMwYsdhMI2aJtJChPC6Osg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] - lightningcss-darwin-arm64@1.30.1: - resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} + lightningcss-darwin-arm64@1.30.2: + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] @@ -13178,8 +13338,8 @@ packages: cpu: [x64] os: [darwin] - lightningcss-darwin-x64@1.30.1: - resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} + lightningcss-darwin-x64@1.30.2: + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] @@ -13190,8 +13350,8 @@ packages: cpu: [x64] os: [freebsd] - lightningcss-freebsd-x64@1.30.1: - resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} + lightningcss-freebsd-x64@1.30.2: + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] @@ -13202,8 +13362,8 @@ packages: cpu: [arm] os: [linux] - lightningcss-linux-arm-gnueabihf@1.30.1: - resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} + lightningcss-linux-arm-gnueabihf@1.30.2: + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] @@ -13213,59 +13373,51 @@ packages: engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] - lightningcss-linux-arm64-gnu@1.30.1: - resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} + lightningcss-linux-arm64-gnu@1.30.2: + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] lightningcss-linux-arm64-musl@1.22.1: resolution: {integrity: sha512-MCV6RuRpzXbunvzwY644iz8cw4oQxvW7oer9xPkdadYqlEyiJJ6wl7FyJOH7Q6ZYH4yjGAUCvxDBxPbnDu9ZVg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [musl] - lightningcss-linux-arm64-musl@1.30.1: - resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} + lightningcss-linux-arm64-musl@1.30.2: + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [musl] lightningcss-linux-x64-gnu@1.22.1: resolution: {integrity: sha512-RjNgpdM20VUXgV7us/VmlO3Vn2ZRiDnc3/bUxCVvySZWPiVPprpqW/QDWuzkGa+NCUf6saAM5CLsZLSxncXJwg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [glibc] - lightningcss-linux-x64-gnu@1.30.1: - resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} + lightningcss-linux-x64-gnu@1.30.2: + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [glibc] lightningcss-linux-x64-musl@1.22.1: resolution: {integrity: sha512-ZgO4C7Rd6Hv/5MnyY2KxOYmIlzk4rplVolDt3NbkNR8DndnyX0Q5IR4acJWNTBICQ21j3zySzKbcJaiJpk/4YA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [musl] - lightningcss-linux-x64-musl@1.30.1: - resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} + lightningcss-linux-x64-musl@1.30.2: + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [musl] - lightningcss-win32-arm64-msvc@1.30.1: - resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} + lightningcss-win32-arm64-msvc@1.30.2: + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] @@ -13276,8 +13428,8 @@ packages: cpu: [x64] os: [win32] - lightningcss-win32-x64-msvc@1.30.1: - resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} + lightningcss-win32-x64-msvc@1.30.2: + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] @@ -13286,8 +13438,8 @@ packages: resolution: {integrity: sha512-Fy45PhibiNXkm0cK5FJCbfO8Y6jUpD/YcHf/BtuI+jvYYqSXKF4muk61jjE8YxCR9y+hDYIWSzHTc+bwhDE6rQ==} engines: {node: '>= 12.0.0'} - lightningcss@1.30.1: - resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} + lightningcss@1.30.2: + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} engines: {node: '>= 12.0.0'} lilconfig@2.1.0: @@ -13508,6 +13660,9 @@ packages: magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + magic-string@0.30.5: resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} engines: {node: '>=12'} @@ -13948,10 +14103,6 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} - minizlib@3.0.2: - resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} - engines: {node: '>= 18'} - mississippi@3.0.0: resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==} engines: {node: '>=4.0.0'} @@ -13975,11 +14126,6 @@ packages: engines: {node: '>=10'} hasBin: true - mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} - engines: {node: '>=10'} - hasBin: true - mlly@1.4.0: resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} @@ -14132,9 +14278,9 @@ packages: sass: optional: true - next@15.4.4: - resolution: {integrity: sha512-kNcubvJjOL9yUOfwtZF3HfDhuhp+kVD+FM2A6Tyua1eI/xfmY4r/8ZS913MMz+oWKDlbps/dQOWdDricuIkXLw==} - engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + next@16.0.1: + resolution: {integrity: sha512-e9RLSssZwd35p7/vOa+hoDFggUZIUbZhIUSLZuETCwrCVvxOs87NamoUzT+vbcNAL8Ld9GobBnWOA6SbV/arOw==} + engines: {node: '>=20.9.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 @@ -14417,6 +14563,10 @@ packages: resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} engines: {node: '>= 0.4'} + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} @@ -16396,10 +16546,10 @@ packages: peerDependencies: react: ^19.0.0 - react-dom@19.1.0: - resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} + react-dom@19.2.0: + resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} peerDependencies: - react: ^19.1.0 + react: ^19.2.0 react-error-overlay@6.0.11: resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} @@ -16503,8 +16653,8 @@ packages: resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} engines: {node: '>=0.10.0'} - react@19.1.0: - resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} + react@19.2.0: + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} engines: {node: '>=0.10.0'} reactcss@1.2.3: @@ -17234,8 +17384,8 @@ packages: scheduler@0.25.0: resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} - scheduler@0.26.0: - resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} schema-utils@1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} @@ -17409,8 +17559,8 @@ packages: resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - sharp@0.34.3: - resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==} + sharp@0.34.4: + resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@1.2.0: @@ -17771,6 +17921,10 @@ packages: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} engines: {node: '>= 0.4'} + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + stream-browserify@2.0.2: resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} @@ -18220,8 +18374,8 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tailwindcss@4.1.11: - resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==} + tailwindcss@4.1.16: + resolution: {integrity: sha512-pONL5awpaQX4LN5eiv7moSiSPd/DLDzKVRJz8Q9PgzmAdd1R4307GQS2ZpfiN7ZmekdQrfhZZiSE5jkLR4WNaA==} tapable@1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} @@ -18252,10 +18406,6 @@ packages: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} - tar@7.4.3: - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} - engines: {node: '>=18'} - temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} @@ -18520,6 +18670,12 @@ packages: tryer@1.0.1: resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -18718,6 +18874,13 @@ packages: typescript-auto-import-cache@0.3.2: resolution: {integrity: sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==} + typescript-eslint@8.46.3: + resolution: {integrity: sha512-bAfgMavTuGo+8n6/QQDVQz4tZ4f7Soqg53RbrlZQEoAltYop/XR4RAts/I0BrO3TTClTSTFJ0wYbla+P8cEWJA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + typescript@4.1.6: resolution: {integrity: sha512-pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow==} engines: {node: '>=4.2.0'} @@ -18748,6 +18911,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + ua-parser-js@1.0.38: resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==} @@ -18794,6 +18962,9 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + undici@5.28.4: resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} engines: {node: '>=14.0'} @@ -20140,6 +20311,10 @@ packages: resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} engines: {node: '>= 0.4'} + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + which-typed-array@1.1.9: resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} engines: {node: '>= 0.4'} @@ -20380,10 +20555,6 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yallist@5.0.0: - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} - engines: {node: '>=18'} - yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} @@ -20470,12 +20641,21 @@ packages: peerDependencies: zod: ^3.18.0 + zod-validation-error@4.0.2: + resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + zod@3.22.4: resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zod@4.1.12: + resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==} + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -21194,22 +21374,22 @@ snapshots: eslint: 8.28.0 eslint-visitor-keys: 2.1.0 - '@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@9.18.0(jiti@2.5.1))': + '@babel/eslint-parser@7.23.3(@babel/core@7.21.3)(eslint@8.28.0)': dependencies: - '@babel/core': 7.23.6 + '@babel/core': 7.21.3 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.18.0(jiti@2.5.1) + eslint: 8.28.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 + optional: true - '@babel/eslint-parser@7.23.3(@babel/core@7.24.7)(eslint@8.28.0)': + '@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@9.39.1(jiti@2.6.1))': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.23.6 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.28.0 + eslint: 9.39.1(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 - optional: true '@babel/generator@7.2.0': dependencies: @@ -21905,11 +22085,6 @@ snapshots: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.21.3)': dependencies: '@babel/core': 7.21.3 @@ -22352,12 +22527,6 @@ snapshots: '@babel/core': 7.21.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.22.5 - optional: true - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.21.3)': dependencies: '@babel/core': 7.21.3 @@ -22397,16 +22566,6 @@ snapshots: '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.3) '@babel/types': 7.22.5 - '@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.7) - '@babel/types': 7.22.5 - optional: true - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.21.3)': dependencies: '@babel/core': 7.21.3 @@ -22440,13 +22599,6 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - optional: true - '@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.21.3)': dependencies: '@babel/core': 7.21.3 @@ -22662,17 +22814,6 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.21.3) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.21.3) - '@babel/preset-react@7.22.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.7) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.24.7) - optional: true - '@babel/preset-typescript@7.22.5(@babel/core@7.21.3)': dependencies: '@babel/core': 7.21.3 @@ -22820,11 +22961,11 @@ snapshots: '@bufbuild/protobuf@2.2.0': optional: true - '@builder.io/qwik@1.5.2(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(undici@6.14.1)': + '@builder.io/qwik@1.5.2(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(undici@6.14.1)': dependencies: csstype: 3.1.3 undici: 6.14.1 - vite: 5.2.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.2.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - '@types/node' - less @@ -22962,7 +23103,7 @@ snapshots: tslib: 2.8.1 optional: true - '@emnapi/runtime@1.4.5': + '@emnapi/runtime@1.7.0': dependencies: tslib: 2.8.1 optional: true @@ -23407,11 +23548,21 @@ snapshots: eslint: 8.28.0 eslint-visitor-keys: 3.4.1 - '@eslint-community/eslint-utils@4.4.0(eslint@9.18.0(jiti@2.5.1))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.18.0(jiti@2.6.1))': dependencies: - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 3.4.1 + '@eslint-community/eslint-utils@4.4.0(eslint@9.39.1(jiti@2.6.1))': + dependencies: + eslint: 9.39.1(jiti@2.6.1) + eslint-visitor-keys: 3.4.1 + + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.6.1))': + dependencies: + eslint: 9.39.1(jiti@2.6.1) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.1': {} '@eslint/config-array@0.19.1': @@ -23422,10 +23573,26 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/config-array@0.21.1': + dependencies: + '@eslint/object-schema': 2.1.7 + debug: 4.3.7(supports-color@6.1.0) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.4.2': + dependencies: + '@eslint/core': 0.17.0 + '@eslint/core@0.10.0': dependencies: '@types/json-schema': 7.0.15 + '@eslint/core@0.17.0': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/eslintrc@1.4.1': dependencies: ajv: 6.12.6 @@ -23454,15 +23621,38 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.3.7(supports-color@6.1.0) + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + '@eslint/js@9.18.0': {} + '@eslint/js@9.39.1': {} + '@eslint/object-schema@2.1.5': {} + '@eslint/object-schema@2.1.7': {} + '@eslint/plugin-kit@0.2.5': dependencies: '@eslint/core': 0.10.0 levn: 0.4.1 + '@eslint/plugin-kit@0.4.1': + dependencies: + '@eslint/core': 0.17.0 + levn: 0.4.1 + '@farmfe/cli@1.0.2': dependencies: cac: 6.7.14 @@ -23636,6 +23826,8 @@ snapshots: '@humanwhocodes/retry@0.4.1': {} + '@humanwhocodes/retry@0.4.3': {} + '@iconify/types@2.0.0': {} '@iconify/utils@2.1.1': @@ -23649,14 +23841,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@img/colour@1.0.0': + optional: true + '@img/sharp-darwin-arm64@0.33.5': optionalDependencies: '@img/sharp-libvips-darwin-arm64': 1.0.4 optional: true - '@img/sharp-darwin-arm64@0.34.3': + '@img/sharp-darwin-arm64@0.34.4': optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.2.0 + '@img/sharp-libvips-darwin-arm64': 1.2.3 optional: true '@img/sharp-darwin-x64@0.33.5': @@ -23664,60 +23859,60 @@ snapshots: '@img/sharp-libvips-darwin-x64': 1.0.4 optional: true - '@img/sharp-darwin-x64@0.34.3': + '@img/sharp-darwin-x64@0.34.4': optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.2.0 + '@img/sharp-libvips-darwin-x64': 1.2.3 optional: true '@img/sharp-libvips-darwin-arm64@1.0.4': optional: true - '@img/sharp-libvips-darwin-arm64@1.2.0': + '@img/sharp-libvips-darwin-arm64@1.2.3': optional: true '@img/sharp-libvips-darwin-x64@1.0.4': optional: true - '@img/sharp-libvips-darwin-x64@1.2.0': + '@img/sharp-libvips-darwin-x64@1.2.3': optional: true '@img/sharp-libvips-linux-arm64@1.0.4': optional: true - '@img/sharp-libvips-linux-arm64@1.2.0': + '@img/sharp-libvips-linux-arm64@1.2.3': optional: true '@img/sharp-libvips-linux-arm@1.0.5': optional: true - '@img/sharp-libvips-linux-arm@1.2.0': + '@img/sharp-libvips-linux-arm@1.2.3': optional: true - '@img/sharp-libvips-linux-ppc64@1.2.0': + '@img/sharp-libvips-linux-ppc64@1.2.3': optional: true '@img/sharp-libvips-linux-s390x@1.0.4': optional: true - '@img/sharp-libvips-linux-s390x@1.2.0': + '@img/sharp-libvips-linux-s390x@1.2.3': optional: true '@img/sharp-libvips-linux-x64@1.0.4': optional: true - '@img/sharp-libvips-linux-x64@1.2.0': + '@img/sharp-libvips-linux-x64@1.2.3': optional: true '@img/sharp-libvips-linuxmusl-arm64@1.0.4': optional: true - '@img/sharp-libvips-linuxmusl-arm64@1.2.0': + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': optional: true '@img/sharp-libvips-linuxmusl-x64@1.0.4': optional: true - '@img/sharp-libvips-linuxmusl-x64@1.2.0': + '@img/sharp-libvips-linuxmusl-x64@1.2.3': optional: true '@img/sharp-linux-arm64@0.33.5': @@ -23725,9 +23920,9 @@ snapshots: '@img/sharp-libvips-linux-arm64': 1.0.4 optional: true - '@img/sharp-linux-arm64@0.34.3': + '@img/sharp-linux-arm64@0.34.4': optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.2.0 + '@img/sharp-libvips-linux-arm64': 1.2.3 optional: true '@img/sharp-linux-arm@0.33.5': @@ -23735,14 +23930,14 @@ snapshots: '@img/sharp-libvips-linux-arm': 1.0.5 optional: true - '@img/sharp-linux-arm@0.34.3': + '@img/sharp-linux-arm@0.34.4': optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.2.0 + '@img/sharp-libvips-linux-arm': 1.2.3 optional: true - '@img/sharp-linux-ppc64@0.34.3': + '@img/sharp-linux-ppc64@0.34.4': optionalDependencies: - '@img/sharp-libvips-linux-ppc64': 1.2.0 + '@img/sharp-libvips-linux-ppc64': 1.2.3 optional: true '@img/sharp-linux-s390x@0.33.5': @@ -23750,9 +23945,9 @@ snapshots: '@img/sharp-libvips-linux-s390x': 1.0.4 optional: true - '@img/sharp-linux-s390x@0.34.3': + '@img/sharp-linux-s390x@0.34.4': optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.2.0 + '@img/sharp-libvips-linux-s390x': 1.2.3 optional: true '@img/sharp-linux-x64@0.33.5': @@ -23760,9 +23955,9 @@ snapshots: '@img/sharp-libvips-linux-x64': 1.0.4 optional: true - '@img/sharp-linux-x64@0.34.3': + '@img/sharp-linux-x64@0.34.4': optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.2.0 + '@img/sharp-libvips-linux-x64': 1.2.3 optional: true '@img/sharp-linuxmusl-arm64@0.33.5': @@ -23770,9 +23965,9 @@ snapshots: '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 optional: true - '@img/sharp-linuxmusl-arm64@0.34.3': + '@img/sharp-linuxmusl-arm64@0.34.4': optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 optional: true '@img/sharp-linuxmusl-x64@0.33.5': @@ -23780,9 +23975,9 @@ snapshots: '@img/sharp-libvips-linuxmusl-x64': 1.0.4 optional: true - '@img/sharp-linuxmusl-x64@0.34.3': + '@img/sharp-linuxmusl-x64@0.34.4': optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.2.0 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 optional: true '@img/sharp-wasm32@0.33.5': @@ -23790,24 +23985,24 @@ snapshots: '@emnapi/runtime': 1.3.1 optional: true - '@img/sharp-wasm32@0.34.3': + '@img/sharp-wasm32@0.34.4': dependencies: - '@emnapi/runtime': 1.4.5 + '@emnapi/runtime': 1.7.0 optional: true - '@img/sharp-win32-arm64@0.34.3': + '@img/sharp-win32-arm64@0.34.4': optional: true '@img/sharp-win32-ia32@0.33.5': optional: true - '@img/sharp-win32-ia32@0.34.3': + '@img/sharp-win32-ia32@0.34.4': optional: true '@img/sharp-win32-x64@0.33.5': optional: true - '@img/sharp-win32-x64@0.34.3': + '@img/sharp-win32-x64@0.34.4': optional: true '@inquirer/figures@1.0.3': {} @@ -23830,10 +24025,6 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@isaacs/fs-minipass@4.0.1': - dependencies: - minipass: 7.1.2 - '@istanbuljs/load-nyc-config@1.1.0': dependencies: camelcase: 5.3.1 @@ -23890,7 +24081,7 @@ snapshots: - ts-node - utf-8-validate - '@jest/core@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10)': + '@jest/core@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10)': dependencies: '@jest/console': 27.5.1 '@jest/reporters': 27.5.1 @@ -23904,7 +24095,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 27.5.1 - jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 @@ -24086,6 +24277,11 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.0': {} '@jridgewell/set-array@1.1.2': {} @@ -24103,6 +24299,8 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.22': dependencies: '@jridgewell/resolve-uri': 3.1.0 @@ -24163,13 +24361,6 @@ snapshots: react: 18.3.1 react-is: 16.13.1 - '@loadable/component@5.15.2(react@19.1.0)': - dependencies: - '@babel/runtime': 7.23.6 - hoist-non-react-statics: 3.3.2 - react: 19.1.0 - react-is: 16.13.1 - '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)': dependencies: detect-libc: 2.0.4 @@ -24187,9 +24378,9 @@ snapshots: '@mdn/browser-compat-data@5.5.37': {} - '@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.91.0)': + '@mdx-js/loader@3.1.1(acorn@8.15.0)(webpack@5.91.0)': dependencies: - '@mdx-js/mdx': 3.1.0(acorn@8.14.0) + '@mdx-js/mdx': 3.1.0(acorn@8.15.0) source-map: 0.7.4 optionalDependencies: webpack: 5.91.0 @@ -24197,7 +24388,7 @@ snapshots: - acorn - supports-color - '@mdx-js/mdx@3.1.0(acorn@8.14.0)': + '@mdx-js/mdx@3.1.0(acorn@8.15.0)': dependencies: '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.5 @@ -24211,7 +24402,7 @@ snapshots: hast-util-to-jsx-runtime: 2.3.6 markdown-extensions: 2.0.0 recma-build-jsx: 1.0.0 - recma-jsx: 1.0.1(acorn@8.14.0) + recma-jsx: 1.0.1(acorn@8.15.0) recma-stringify: 1.0.0 rehype-recma: 1.0.0 remark-mdx: 3.1.0 @@ -24365,7 +24556,7 @@ snapshots: '@next/env@15.1.6': {} - '@next/env@15.4.4': {} + '@next/env@16.0.1': {} '@next/eslint-plugin-next@14.2.4': dependencies: @@ -24375,15 +24566,15 @@ snapshots: dependencies: fast-glob: 3.3.1 - '@next/eslint-plugin-next@15.4.4': + '@next/eslint-plugin-next@16.0.1': dependencies: fast-glob: 3.3.1 - '@next/mdx@15.4.4(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.91.0))': + '@next/mdx@16.0.1(@mdx-js/loader@3.1.1(acorn@8.15.0)(webpack@5.91.0))': dependencies: source-map: 0.7.4 optionalDependencies: - '@mdx-js/loader': 3.1.0(acorn@8.14.0)(webpack@5.91.0) + '@mdx-js/loader': 3.1.1(acorn@8.15.0)(webpack@5.91.0) '@next/swc-darwin-arm64@14.2.4': optional: true @@ -24391,7 +24582,7 @@ snapshots: '@next/swc-darwin-arm64@15.1.6': optional: true - '@next/swc-darwin-arm64@15.4.4': + '@next/swc-darwin-arm64@16.0.1': optional: true '@next/swc-darwin-x64@14.2.4': @@ -24400,7 +24591,7 @@ snapshots: '@next/swc-darwin-x64@15.1.6': optional: true - '@next/swc-darwin-x64@15.4.4': + '@next/swc-darwin-x64@16.0.1': optional: true '@next/swc-linux-arm64-gnu@14.2.4': @@ -24409,7 +24600,7 @@ snapshots: '@next/swc-linux-arm64-gnu@15.1.6': optional: true - '@next/swc-linux-arm64-gnu@15.4.4': + '@next/swc-linux-arm64-gnu@16.0.1': optional: true '@next/swc-linux-arm64-musl@14.2.4': @@ -24418,7 +24609,7 @@ snapshots: '@next/swc-linux-arm64-musl@15.1.6': optional: true - '@next/swc-linux-arm64-musl@15.4.4': + '@next/swc-linux-arm64-musl@16.0.1': optional: true '@next/swc-linux-x64-gnu@14.2.4': @@ -24427,7 +24618,7 @@ snapshots: '@next/swc-linux-x64-gnu@15.1.6': optional: true - '@next/swc-linux-x64-gnu@15.4.4': + '@next/swc-linux-x64-gnu@16.0.1': optional: true '@next/swc-linux-x64-musl@14.2.4': @@ -24436,7 +24627,7 @@ snapshots: '@next/swc-linux-x64-musl@15.1.6': optional: true - '@next/swc-linux-x64-musl@15.4.4': + '@next/swc-linux-x64-musl@16.0.1': optional: true '@next/swc-win32-arm64-msvc@14.2.4': @@ -24445,7 +24636,7 @@ snapshots: '@next/swc-win32-arm64-msvc@15.1.6': optional: true - '@next/swc-win32-arm64-msvc@15.4.4': + '@next/swc-win32-arm64-msvc@16.0.1': optional: true '@next/swc-win32-ia32-msvc@14.2.4': @@ -24457,7 +24648,7 @@ snapshots: '@next/swc-win32-x64-msvc@15.1.6': optional: true - '@next/swc-win32-x64-msvc@15.4.4': + '@next/swc-win32-x64-msvc@16.0.1': optional: true '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': @@ -24550,12 +24741,12 @@ snapshots: '@nuxt/devalue@2.0.2': {} - '@nuxt/devtools-kit@1.3.6(magicast@0.3.4)(rollup@4.16.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@nuxt/devtools-kit@1.3.6(magicast@0.3.4)(rollup@4.16.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@nuxt/kit': 3.12.2(magicast@0.3.4)(rollup@4.16.4) '@nuxt/schema': 3.12.2(rollup@4.16.4) execa: 7.2.0 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - magicast - rollup @@ -24574,13 +24765,13 @@ snapshots: rc9: 2.1.2 semver: 7.7.2 - '@nuxt/devtools@1.3.6(bufferutil@4.0.8)(rollup@4.16.4)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@nuxt/devtools@1.3.6(bufferutil@4.0.8)(rollup@4.16.4)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@antfu/utils': 0.7.8 - '@nuxt/devtools-kit': 1.3.6(magicast@0.3.4)(rollup@4.16.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@nuxt/devtools-kit': 1.3.6(magicast@0.3.4)(rollup@4.16.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@nuxt/devtools-wizard': 1.3.6 '@nuxt/kit': 3.12.2(magicast@0.3.4)(rollup@4.16.4) - '@vue/devtools-core': 7.3.3(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@vue/devtools-core': 7.3.3(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@vue/devtools-kit': 7.3.3 birpc: 0.2.17 consola: 3.2.3 @@ -24609,9 +24800,9 @@ snapshots: simple-git: 3.25.0 sirv: 2.0.4 unimport: 3.7.2(rollup@4.16.4) - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vite-plugin-inspect: 0.8.4(@nuxt/kit@3.12.2(magicast@0.3.4)(rollup@4.16.4))(rollup@4.16.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) - vite-plugin-vue-inspector: 5.1.2(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite-plugin-inspect: 0.8.4(@nuxt/kit@3.12.2(magicast@0.3.4)(rollup@4.16.4))(rollup@4.16.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite-plugin-vue-inspector: 5.1.2(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) which: 3.0.1 ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) transitivePeerDependencies: @@ -24690,12 +24881,12 @@ snapshots: - rollup - supports-color - '@nuxt/vite-builder@3.12.2(@types/node@20.14.11)(eslint@9.18.0(jiti@2.5.1))(less@4.2.0)(lightningcss@1.30.1)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2)(vue@3.4.30(typescript@5.8.2))': + '@nuxt/vite-builder@3.12.2(@types/node@24.10.0)(eslint@9.39.1(jiti@2.6.1))(less@4.2.0)(lightningcss@1.30.2)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3)(vue@3.4.30(typescript@5.9.3))': dependencies: '@nuxt/kit': 3.12.2(magicast@0.3.4)(rollup@4.16.4) '@rollup/plugin-replace': 5.0.7(rollup@4.16.4) - '@vitejs/plugin-vue': 5.0.5(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.8.2)) - '@vitejs/plugin-vue-jsx': 4.0.0(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.8.2)) + '@vitejs/plugin-vue': 5.0.5(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.9.3)) + '@vitejs/plugin-vue-jsx': 4.0.0(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.9.3)) autoprefixer: 10.4.19(postcss@8.5.3) clear: 0.1.0 consola: 3.2.3 @@ -24722,10 +24913,10 @@ snapshots: ufo: 1.5.3 unenv: 1.9.0 unplugin: 1.10.1 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vite-node: 1.6.0(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vite-plugin-checker: 0.6.4(eslint@9.18.0(jiti@2.5.1))(meow@9.0.0)(optionator@0.9.4)(stylelint@14.16.1)(typescript@5.8.2)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) - vue: 3.4.30(typescript@5.8.2) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite-node: 1.6.0(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite-plugin-checker: 0.6.4(eslint@9.39.1(jiti@2.6.1))(meow@9.0.0)(optionator@0.9.4)(stylelint@14.16.1)(typescript@5.9.3)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vue: 3.4.30(typescript@5.9.3) vue-bundle-renderer: 2.1.0 transitivePeerDependencies: - '@types/node' @@ -25233,18 +25424,18 @@ snapshots: '@polka/url@1.0.0-next.24': {} - '@preact/preset-vite@2.7.0(@babel/core@7.24.7)(preact@10.19.3)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@preact/preset-vite@2.7.0(@babel/core@7.24.7)(preact@10.19.3)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.7) - '@prefresh/vite': 2.4.4(preact@10.19.3)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@prefresh/vite': 2.4.4(preact@10.19.3)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@rollup/pluginutils': 4.2.1 babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.24.7) debug: 4.3.4 kolorist: 1.8.0 resolve: 1.22.8 - vite: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - preact - supports-color @@ -25257,7 +25448,7 @@ snapshots: '@prefresh/utils@1.2.0': {} - '@prefresh/vite@2.4.4(preact@10.19.3)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@prefresh/vite@2.4.4(preact@10.19.3)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@babel/core': 7.23.6 '@prefresh/babel-plugin': 0.5.1 @@ -25265,7 +25456,7 @@ snapshots: '@prefresh/utils': 1.2.0 '@rollup/pluginutils': 4.2.1 preact: 10.19.3 - vite: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - supports-color @@ -25358,9 +25549,9 @@ snapshots: optionalDependencies: '@types/babel__core': 7.20.5 - '@rollup/plugin-babel@6.0.3(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@3.29.4)': + '@rollup/plugin-babel@6.0.3(@babel/core@7.21.3)(@types/babel__core@7.20.5)(rollup@3.29.4)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.21.3 '@babel/helper-module-imports': 7.22.5 '@rollup/pluginutils': 5.0.2(rollup@3.29.4) optionalDependencies: @@ -25853,26 +26044,26 @@ snapshots: magic-string: 0.25.9 string.prototype.matchall: 4.0.12 - '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)))(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)))(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@sveltejs/vite-plugin-svelte': 3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) debug: 4.3.7(supports-color@6.1.0) svelte: 4.2.18 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)))(svelte@4.2.18)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.1(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)))(svelte@4.2.18)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) debug: 4.3.5 deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.10 svelte: 4.2.18 svelte-hmr: 0.16.0(svelte@4.2.18) - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitefu: 0.2.5(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vitefu: 0.2.5(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) transitivePeerDependencies: - supports-color @@ -26086,77 +26277,74 @@ snapshots: '@swc/wasm@1.11.13': optional: true - '@tailwindcss/node@4.1.11': + '@tailwindcss/node@4.1.16': dependencies: - '@ampproject/remapping': 2.3.0 - enhanced-resolve: 5.18.2 - jiti: 2.5.1 - lightningcss: 1.30.1 - magic-string: 0.30.17 + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.18.3 + jiti: 2.6.1 + lightningcss: 1.30.2 + magic-string: 0.30.21 source-map-js: 1.2.1 - tailwindcss: 4.1.11 + tailwindcss: 4.1.16 - '@tailwindcss/oxide-android-arm64@4.1.11': + '@tailwindcss/oxide-android-arm64@4.1.16': optional: true - '@tailwindcss/oxide-darwin-arm64@4.1.11': + '@tailwindcss/oxide-darwin-arm64@4.1.16': optional: true - '@tailwindcss/oxide-darwin-x64@4.1.11': + '@tailwindcss/oxide-darwin-x64@4.1.16': optional: true - '@tailwindcss/oxide-freebsd-x64@4.1.11': + '@tailwindcss/oxide-freebsd-x64@4.1.16': optional: true - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11': + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16': optional: true - '@tailwindcss/oxide-linux-arm64-gnu@4.1.11': + '@tailwindcss/oxide-linux-arm64-gnu@4.1.16': optional: true - '@tailwindcss/oxide-linux-arm64-musl@4.1.11': + '@tailwindcss/oxide-linux-arm64-musl@4.1.16': optional: true - '@tailwindcss/oxide-linux-x64-gnu@4.1.11': + '@tailwindcss/oxide-linux-x64-gnu@4.1.16': optional: true - '@tailwindcss/oxide-linux-x64-musl@4.1.11': + '@tailwindcss/oxide-linux-x64-musl@4.1.16': optional: true - '@tailwindcss/oxide-wasm32-wasi@4.1.11': + '@tailwindcss/oxide-wasm32-wasi@4.1.16': optional: true - '@tailwindcss/oxide-win32-arm64-msvc@4.1.11': + '@tailwindcss/oxide-win32-arm64-msvc@4.1.16': optional: true - '@tailwindcss/oxide-win32-x64-msvc@4.1.11': + '@tailwindcss/oxide-win32-x64-msvc@4.1.16': optional: true - '@tailwindcss/oxide@4.1.11': - dependencies: - detect-libc: 2.0.4 - tar: 7.4.3 + '@tailwindcss/oxide@4.1.16': optionalDependencies: - '@tailwindcss/oxide-android-arm64': 4.1.11 - '@tailwindcss/oxide-darwin-arm64': 4.1.11 - '@tailwindcss/oxide-darwin-x64': 4.1.11 - '@tailwindcss/oxide-freebsd-x64': 4.1.11 - '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.11 - '@tailwindcss/oxide-linux-arm64-gnu': 4.1.11 - '@tailwindcss/oxide-linux-arm64-musl': 4.1.11 - '@tailwindcss/oxide-linux-x64-gnu': 4.1.11 - '@tailwindcss/oxide-linux-x64-musl': 4.1.11 - '@tailwindcss/oxide-wasm32-wasi': 4.1.11 - '@tailwindcss/oxide-win32-arm64-msvc': 4.1.11 - '@tailwindcss/oxide-win32-x64-msvc': 4.1.11 - - '@tailwindcss/postcss@4.1.11': + '@tailwindcss/oxide-android-arm64': 4.1.16 + '@tailwindcss/oxide-darwin-arm64': 4.1.16 + '@tailwindcss/oxide-darwin-x64': 4.1.16 + '@tailwindcss/oxide-freebsd-x64': 4.1.16 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.16 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.16 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.16 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.16 + '@tailwindcss/oxide-linux-x64-musl': 4.1.16 + '@tailwindcss/oxide-wasm32-wasi': 4.1.16 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.16 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.16 + + '@tailwindcss/postcss@4.1.16': dependencies: '@alloc/quick-lru': 5.2.0 - '@tailwindcss/node': 4.1.11 - '@tailwindcss/oxide': 4.1.11 + '@tailwindcss/node': 4.1.16 + '@tailwindcss/oxide': 4.1.16 postcss: 8.5.3 - tailwindcss: 4.1.11 + tailwindcss: 4.1.16 '@testing-library/dom@10.4.0': dependencies: @@ -26439,6 +26627,10 @@ snapshots: '@types/node@20.3.3': {} + '@types/node@24.10.0': + dependencies: + undici-types: 7.16.0 + '@types/normalize-package-data@2.4.1': {} '@types/numeral@2.0.2': {} @@ -26471,6 +26663,10 @@ snapshots: dependencies: '@types/react': 19.0.7 + '@types/react-dom@19.2.2(@types/react@19.2.2)': + dependencies: + '@types/react': 19.2.2 + '@types/react@18.2.6': dependencies: '@types/prop-types': 15.7.5 @@ -26486,6 +26682,10 @@ snapshots: dependencies: csstype: 3.1.3 + '@types/react@19.2.2': + dependencies: + csstype: 3.1.3 + '@types/resolve@1.17.1': dependencies: '@types/node': 18.14.1 @@ -26643,14 +26843,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3)': + '@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3)': dependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) + '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) '@typescript-eslint/scope-manager': 5.44.0 - '@typescript-eslint/type-utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) - '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) + '@typescript-eslint/type-utils': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) + '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) debug: 4.3.4 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) ignore: 5.2.4 natural-compare-lite: 1.4.0 regexpp: 3.2.0 @@ -26661,33 +26861,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': - dependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - '@typescript-eslint/scope-manager': 5.44.0 - '@typescript-eslint/type-utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - debug: 4.3.4 - eslint: 9.18.0(jiti@2.5.1) - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.5.1 - tsutils: 3.21.0(typescript@5.8.2) - optionalDependencies: - typescript: 5.8.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/parser': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/type-utils': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) debug: 4.3.7(supports-color@6.1.0) - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 @@ -26698,6 +26880,23 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.3 + '@typescript-eslint/type-utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.3 + eslint: 9.39.1(jiti@2.6.1) + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/experimental-utils@4.33.0(eslint@6.8.0)(typescript@4.1.6)': dependencies: '@types/json-schema': 7.0.15 @@ -26755,39 +26954,48 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3)': + '@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3)': dependencies: '@typescript-eslint/scope-manager': 5.44.0 '@typescript-eslint/types': 5.44.0 '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.5.3) debug: 4.3.4 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) optionalDependencies: typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2)': dependencies: - '@typescript-eslint/scope-manager': 5.44.0 - '@typescript-eslint/types': 5.44.0 - '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.8.2) - debug: 4.3.4 - eslint: 9.18.0(jiti@2.5.1) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2) + debug: 4.3.7(supports-color@6.1.0) + eslint: 9.39.1(jiti@2.6.1) optionalDependencies: typescript: 5.8.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2) + '@typescript-eslint/scope-manager': 8.46.3 + '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.3 debug: 4.3.7(supports-color@6.1.0) - eslint: 9.18.0(jiti@2.5.1) - optionalDependencies: - typescript: 5.8.2 + eslint: 9.39.1(jiti@2.6.1) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.46.3(typescript@5.9.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3) + '@typescript-eslint/types': 8.46.3 + debug: 4.3.7(supports-color@6.1.0) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -26806,6 +27014,15 @@ snapshots: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 + '@typescript-eslint/scope-manager@8.46.3': + dependencies: + '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/visitor-keys': 8.46.3 + + '@typescript-eslint/tsconfig-utils@8.46.3(typescript@5.9.3)': + dependencies: + typescript: 5.9.3 + '@typescript-eslint/type-utils@5.44.0(eslint@8.28.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 5.44.0(typescript@4.9.5) @@ -26818,39 +27035,39 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3)': + '@typescript-eslint/type-utils@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3)': dependencies: '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.5.3) - '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) + '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) debug: 4.3.7(supports-color@6.1.0) - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/type-utils@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2)': dependencies: - '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.8.2) - '@typescript-eslint/utils': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) debug: 4.3.7(supports-color@6.1.0) - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) tsutils: 3.21.0(typescript@5.8.2) optionalDependencies: typescript: 5.8.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/type-utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2) - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) debug: 4.3.7(supports-color@6.1.0) - eslint: 9.18.0(jiti@2.5.1) - tsutils: 3.21.0(typescript@5.8.2) - optionalDependencies: - typescript: 5.8.2 + eslint: 9.39.1(jiti@2.6.1) + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -26860,6 +27077,8 @@ snapshots: '@typescript-eslint/types@5.62.0': {} + '@typescript-eslint/types@8.46.3': {} + '@typescript-eslint/typescript-estree@4.33.0(typescript@4.1.6)': dependencies: '@typescript-eslint/types': 4.33.0 @@ -26916,20 +27135,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@5.44.0(typescript@5.8.2)': - dependencies: - '@typescript-eslint/types': 5.44.0 - '@typescript-eslint/visitor-keys': 5.44.0 - debug: 4.3.7(supports-color@6.1.0) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.1 - tsutils: 3.21.0(typescript@5.8.2) - optionalDependencies: - typescript: 5.8.2 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 5.62.0 @@ -26958,6 +27163,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.46.3(typescript@5.9.3)': + dependencies: + '@typescript-eslint/project-service': 8.46.3(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3) + '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/visitor-keys': 8.46.3 + debug: 4.3.7(supports-color@6.1.0) + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@5.44.0(eslint@8.28.0)(typescript@4.9.5)': dependencies: '@types/json-schema': 7.0.15 @@ -26973,31 +27194,16 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3)': + '@typescript-eslint/utils@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3)': dependencies: '@types/json-schema': 7.0.15 '@types/semver': 7.5.0 '@typescript-eslint/scope-manager': 5.44.0 '@typescript-eslint/types': 5.44.0 '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.5.3) - eslint: 9.18.0(jiti@2.5.1) - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@9.18.0(jiti@2.5.1)) - semver: 7.5.1 - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/utils@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': - dependencies: - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.44.0 - '@typescript-eslint/types': 5.44.0 - '@typescript-eslint/typescript-estree': 5.44.0(typescript@5.8.2) - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@9.18.0(jiti@2.5.1)) + eslint-utils: 3.0.0(eslint@9.18.0(jiti@2.6.1)) semver: 7.5.1 transitivePeerDependencies: - supports-color @@ -27018,21 +27224,32 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2)': + '@typescript-eslint/utils@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@2.5.1)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.1(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.5.0 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.2) - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) eslint-scope: 5.1.1 semver: 7.7.2 transitivePeerDependencies: - supports-color - typescript + '@typescript-eslint/utils@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@typescript-eslint/scope-manager': 8.46.3 + '@typescript-eslint/types': 8.46.3 + '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) + eslint: 9.39.1(jiti@2.6.1) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/visitor-keys@4.33.0': dependencies: '@typescript-eslint/types': 4.33.0 @@ -27048,6 +27265,11 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.1 + '@typescript-eslint/visitor-keys@8.46.3': + dependencies: + '@typescript-eslint/types': 8.46.3 + eslint-visitor-keys: 4.2.1 + '@umijs/ast@4.4.12': dependencies: '@umijs/bundler-utils': 4.4.12 @@ -27109,18 +27331,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@umijs/bundler-vite@4.4.12(@types/node@20.14.11)(lightningcss@1.30.1)(postcss@8.5.3)(rollup@3.29.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)': + '@umijs/bundler-vite@4.4.12(@types/node@24.10.0)(lightningcss@1.30.2)(postcss@8.5.3)(rollup@3.29.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)': dependencies: '@svgr/core': 6.5.1 '@umijs/bundler-utils': 4.4.12 '@umijs/utils': 4.4.12 - '@vitejs/plugin-react': 4.0.0(vite@4.5.2(@types/node@20.14.11)(less@4.1.3)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@vitejs/plugin-react': 4.0.0(vite@4.5.2(@types/node@24.10.0)(less@4.1.3)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) core-js: 3.34.0 less: 4.1.3 postcss-preset-env: 7.5.0(postcss@8.5.3) rollup-plugin-visualizer: 5.9.0(rollup@3.29.4) systemjs: 6.14.1 - vite: 4.5.2(@types/node@20.14.11)(less@4.1.3)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 4.5.2(@types/node@24.10.0)(less@4.1.3)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - '@types/node' - lightningcss @@ -27221,17 +27443,17 @@ snapshots: '@babel/runtime': 7.23.6 query-string: 6.14.1 - '@umijs/lint@4.4.12(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(stylelint@14.16.1)(typescript@5.8.2)': + '@umijs/lint@4.4.12(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(stylelint@14.16.1)(typescript@5.8.2)': dependencies: '@babel/core': 7.23.6 - '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@9.18.0(jiti@2.5.1)) + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@9.39.1(jiti@2.6.1)) '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2(postcss@8.5.3))(postcss@8.5.3) - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - '@typescript-eslint/parser': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/parser': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) '@umijs/babel-preset-umi': 4.4.12 - eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(typescript@5.8.2) - eslint-plugin-react: 7.33.2(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-react-hooks: 4.6.0(eslint@9.18.0(jiti@2.5.1)) + eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(typescript@5.8.2) + eslint-plugin-react: 7.33.2(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-react-hooks: 4.6.0(eslint@9.39.1(jiti@2.6.1)) postcss: 8.5.3 postcss-syntax: 0.36.2(postcss@8.5.3) stylelint-config-standard: 25.0.0(stylelint@14.16.1) @@ -27324,7 +27546,7 @@ snapshots: dependencies: tsx: 3.12.2 - '@umijs/preset-umi@4.4.12(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@20.14.11)(@types/react@18.3.3)(@types/webpack@4.41.33)(lightningcss@1.30.1)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15)))': + '@umijs/preset-umi@4.4.12(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@24.10.0)(@types/react@18.3.3)(@types/webpack@4.41.33)(lightningcss@1.30.2)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15)))': dependencies: '@iconify/utils': 2.1.1 '@stagewise/toolbar': 0.6.2 @@ -27334,7 +27556,7 @@ snapshots: '@umijs/bundler-esbuild': 4.4.12 '@umijs/bundler-mako': 0.11.10(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(postcss@8.5.3)(sass-embedded@1.79.4)(sass@1.54.7)(typescript@5.8.2)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@umijs/bundler-utils': 4.4.12 - '@umijs/bundler-vite': 4.4.12(@types/node@20.14.11)(lightningcss@1.30.1)(postcss@8.5.3)(rollup@3.29.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + '@umijs/bundler-vite': 4.4.12(@types/node@24.10.0)(lightningcss@1.30.2)(postcss@8.5.3)(rollup@3.29.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) '@umijs/bundler-webpack': 4.4.12(@types/webpack@4.41.33)(sockjs-client@1.6.1)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@umijs/core': 4.4.12 '@umijs/did-you-know': 1.0.4 @@ -27415,16 +27637,6 @@ snapshots: react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: 6.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@umijs/renderer-react@4.4.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': - dependencies: - '@babel/runtime': 7.23.6 - '@loadable/component': 5.15.2(react@19.1.0) - history: 5.3.0 - react: 19.1.0 - react-dom: 19.1.0(react@19.1.0) - react-helmet-async: 1.3.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - react-router-dom: 6.3.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@umijs/route-utils@2.2.2': dependencies: '@qixian.cs/path-to-regexp': 6.1.0 @@ -27492,13 +27704,13 @@ snapshots: '@unhead/schema': 1.9.14 '@unhead/shared': 1.9.14 - '@unhead/vue@1.9.14(vue@3.4.30(typescript@5.8.2))': + '@unhead/vue@1.9.14(vue@3.4.30(typescript@5.9.3))': dependencies: '@unhead/schema': 1.9.14 '@unhead/shared': 1.9.14 hookable: 5.5.3 unhead: 1.9.14 - vue: 3.4.30(typescript@5.8.2) + vue: 3.4.30(typescript@5.9.3) '@vercel/nft@0.26.5(encoding@0.1.13)': dependencies: @@ -27541,33 +27753,33 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.0.0(vite@4.5.2(@types/node@20.14.11)(less@4.1.3)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@vitejs/plugin-react@4.0.0(vite@4.5.2(@types/node@24.10.0)(less@4.1.3)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.24.7) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.24.7) react-refresh: 0.14.0 - vite: 4.5.2(@types/node@20.14.11)(less@4.1.3)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 4.5.2(@types/node@24.10.0)(less@4.1.3)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@3.0.1(vite@4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47)': + '@vitejs/plugin-vue-jsx@3.0.1(vite@4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47)': dependencies: '@babel/core': 7.21.3 '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.21.3) '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.3) - vite: 4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) vue: 3.2.47 transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@4.0.0(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.8.2))': + '@vitejs/plugin-vue-jsx@4.0.0(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.9.3))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7) '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.7) - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vue: 3.4.30(typescript@5.8.2) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vue: 3.4.30(typescript@5.9.3) transitivePeerDependencies: - supports-color @@ -27589,22 +27801,22 @@ snapshots: vite: 4.3.9(@types/node@18.14.1)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.4.21))(terser@5.15.0) vue: 2.7.10 - '@vitejs/plugin-vue@4.1.0(vite@4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47)': + '@vitejs/plugin-vue@4.1.0(vite@4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.2.47)': dependencies: - vite: 4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) vue: 3.2.47 - '@vitejs/plugin-vue@4.3.1(vite@4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.5.13(typescript@5.8.2))': + '@vitejs/plugin-vue@4.3.1(vite@4.5.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.5.13(typescript@5.9.3))': dependencies: - vite: 4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vue: 3.5.13(typescript@5.8.2) + vite: 4.5.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vue: 3.5.13(typescript@5.9.3) - '@vitejs/plugin-vue@5.0.5(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.8.2))': + '@vitejs/plugin-vue@5.0.5(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.4.30(typescript@5.9.3))': dependencies: - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vue: 3.4.30(typescript@5.8.2) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vue: 3.4.30(typescript@5.9.3) - '@vitest/coverage-v8@2.1.4(vitest@2.1.4(@types/node@20.14.11)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@vitest/coverage-v8@2.1.4(vitest@2.1.4(@types/node@24.10.0)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -27618,7 +27830,7 @@ snapshots: std-env: 3.7.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.4(@types/node@20.14.11)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vitest: 2.1.4(@types/node@24.10.0)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - supports-color @@ -27629,13 +27841,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.4(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@vitest/mocker@2.1.4(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@vitest/spy': 2.1.4 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) '@vitest/pretty-format@2.1.4': dependencies: @@ -27796,7 +28008,7 @@ snapshots: '@vscode/l10n@0.0.18': {} - '@vue-macros/common@1.10.4(rollup@4.16.4)(vue@3.4.30(typescript@5.8.2))': + '@vue-macros/common@1.10.4(rollup@4.16.4)(vue@3.4.30(typescript@5.9.3))': dependencies: '@babel/types': 7.26.0 '@rollup/pluginutils': 5.1.0(rollup@4.16.4) @@ -27805,7 +28017,7 @@ snapshots: local-pkg: 0.5.0 magic-string-ast: 0.6.1 optionalDependencies: - vue: 3.4.30(typescript@5.8.2) + vue: 3.4.30(typescript@5.9.3) transitivePeerDependencies: - rollup @@ -28243,17 +28455,17 @@ snapshots: clipboardy: 2.3.0 cliui: 6.0.0 copy-webpack-plugin: 5.1.2(webpack@4.46.0) - css-loader: 3.6.0(webpack@5.91.0) + css-loader: 3.6.0(webpack@4.46.0) cssnano: 4.1.11 debug: 4.3.4 default-gateway: 5.0.5 dotenv: 8.6.0 dotenv-expand: 5.1.0 - file-loader: 4.3.0(webpack@5.91.0) + file-loader: 4.3.0(webpack@4.46.0) fs-extra: 7.0.1 globby: 9.2.0 hash-sum: 2.0.0 - html-webpack-plugin: 3.2.0(webpack@5.91.0) + html-webpack-plugin: 3.2.0(webpack@4.46.0) launch-editor-middleware: 2.6.0 lodash.defaultsdeep: 4.6.1 lodash.mapvalues: 4.6.0 @@ -28582,14 +28794,14 @@ snapshots: '@vue/devtools-api@6.5.1': {} - '@vue/devtools-core@7.3.3(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': + '@vue/devtools-core@7.3.3(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))': dependencies: '@vue/devtools-kit': 7.3.3 '@vue/devtools-shared': 7.3.4 mitt: 3.0.1 nanoid: 3.3.11 pathe: 1.1.2 - vite-hot-client: 0.2.3(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite-hot-client: 0.2.3(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) transitivePeerDependencies: - vite @@ -28621,7 +28833,7 @@ snapshots: '@vue/preload-webpack-plugin@1.1.2(html-webpack-plugin@3.2.0(webpack@4.46.0))(webpack@4.46.0)': dependencies: - html-webpack-plugin: 3.2.0(webpack@5.91.0) + html-webpack-plugin: 3.2.0(webpack@4.46.0) webpack: 4.46.0 '@vue/reactivity-transform@3.2.47': @@ -28718,11 +28930,11 @@ snapshots: '@vue/shared': 3.4.24 vue: 3.4.24(typescript@5.4.5) - '@vue/server-renderer@3.4.30(vue@3.4.30(typescript@5.8.2))': + '@vue/server-renderer@3.4.30(vue@3.4.30(typescript@5.9.3))': dependencies: '@vue/compiler-ssr': 3.4.30 '@vue/shared': 3.4.30 - vue: 3.4.30(typescript@5.8.2) + vue: 3.4.30(typescript@5.9.3) '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@4.9.5))': dependencies: @@ -28737,6 +28949,12 @@ snapshots: '@vue/shared': 3.5.13 vue: 3.5.13(typescript@5.8.2) + '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.9.3))': + dependencies: + '@vue/compiler-ssr': 3.5.13 + '@vue/shared': 3.5.13 + vue: 3.5.13(typescript@5.9.3) + '@vue/shared@3.2.47': {} '@vue/shared@3.3.4': {} @@ -28760,21 +28978,21 @@ snapshots: - vue optional: true - '@vueuse/core@10.7.1(vue@3.5.13(typescript@5.8.2))': + '@vueuse/core@10.7.1(vue@3.5.13(typescript@5.9.3))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.7.1 - '@vueuse/shared': 10.7.1(vue@3.5.13(typescript@5.8.2)) - vue-demi: 0.14.6(vue@3.5.13(typescript@5.8.2)) + '@vueuse/shared': 10.7.1(vue@3.5.13(typescript@5.9.3)) + vue-demi: 0.14.6(vue@3.5.13(typescript@5.9.3)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.7.1(async-validator@4.2.5)(axios@1.2.0)(focus-trap@7.5.4)(vue@3.5.13(typescript@5.8.2))': + '@vueuse/integrations@10.7.1(async-validator@4.2.5)(axios@1.2.0)(focus-trap@7.5.4)(vue@3.5.13(typescript@5.9.3))': dependencies: - '@vueuse/core': 10.7.1(vue@3.5.13(typescript@5.8.2)) - '@vueuse/shared': 10.7.1(vue@3.5.13(typescript@5.8.2)) - vue-demi: 0.14.6(vue@3.5.13(typescript@5.8.2)) + '@vueuse/core': 10.7.1(vue@3.5.13(typescript@5.9.3)) + '@vueuse/shared': 10.7.1(vue@3.5.13(typescript@5.9.3)) + vue-demi: 0.14.6(vue@3.5.13(typescript@5.9.3)) optionalDependencies: async-validator: 4.2.5 axios: 1.2.0 @@ -28793,9 +29011,9 @@ snapshots: - vue optional: true - '@vueuse/shared@10.7.1(vue@3.5.13(typescript@5.8.2))': + '@vueuse/shared@10.7.1(vue@3.5.13(typescript@5.9.3))': dependencies: - vue-demi: 0.14.6(vue@3.5.13(typescript@5.8.2)) + vue-demi: 0.14.6(vue@3.5.13(typescript@5.9.3)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -29093,6 +29311,10 @@ snapshots: dependencies: acorn: 8.14.0 + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + acorn-node@1.8.2: dependencies: acorn: 7.4.1 @@ -29115,6 +29337,8 @@ snapshots: acorn@8.14.0: {} + acorn@8.15.0: {} + add-dom-event-listener@1.1.0: dependencies: object-assign: 4.1.1 @@ -29422,6 +29646,17 @@ snapshots: get-intrinsic: 1.2.7 is-string: 1.1.1 + array-includes@3.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 + array-iterate@2.0.1: {} array-tree-filter@2.1.0: {} @@ -29454,6 +29689,16 @@ snapshots: es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + array.prototype.flat@1.3.1: dependencies: call-bind: 1.0.2 @@ -29468,6 +29713,13 @@ snapshots: es-abstract: 1.23.9 es-shim-unscopables: 1.0.2 + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.9 + es-shim-unscopables: 1.0.2 + array.prototype.flatmap@1.3.1: dependencies: call-bind: 1.0.2 @@ -29611,7 +29863,7 @@ snapshots: astring@1.9.0: {} - astro@4.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.3.3): + astro@4.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.3.3): dependencies: '@astrojs/compiler': 2.5.3 '@astrojs/internal-helpers': 0.2.1 @@ -29672,8 +29924,8 @@ snapshots: tsconfck: 3.0.2(typescript@5.3.3) unist-util-visit: 5.0.0 vfile: 6.0.1 - vite: 5.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitefu: 0.2.5(vite@5.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite: 5.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vitefu: 0.2.5(vite@5.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) which-pm: 2.1.1 yargs-parser: 21.1.1 zod: 3.22.4 @@ -29991,14 +30243,14 @@ snapshots: zod: 3.23.8 zod-validation-error: 2.1.0(zod@3.23.8) - babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.6(@babel/core@7.24.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): + babel-plugin-styled-components@2.1.4(@babel/core@7.21.3)(styled-components@5.3.6(@babel/core@7.21.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): dependencies: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.7) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.3) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.6(@babel/core@7.24.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) + styled-components: 5.3.6(@babel/core@7.21.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@babel/core' @@ -30533,6 +30785,11 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + call-bind@1.0.2: dependencies: function-bind: 1.1.2 @@ -30558,6 +30815,11 @@ snapshots: call-bind-apply-helpers: 1.0.1 get-intrinsic: 1.2.7 + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + call-me-maybe@1.0.2: {} caller-callsite@2.0.0: @@ -30739,8 +31001,6 @@ snapshots: chownr@2.0.0: {} - chownr@3.0.0: {} - chrome-trace-event@1.0.3: {} ci-info@1.6.0: {} @@ -31317,23 +31577,6 @@ snapshots: semver: 6.3.1 webpack: 4.46.0 - css-loader@3.6.0(webpack@5.91.0): - dependencies: - camelcase: 5.3.1 - cssesc: 3.0.0 - icss-utils: 4.1.1 - loader-utils: 1.4.2 - normalize-path: 3.0.0 - postcss: 7.0.39 - postcss-modules-extract-imports: 2.0.0 - postcss-modules-local-by-default: 3.0.3 - postcss-modules-scope: 2.2.0 - postcss-modules-values: 3.0.0 - postcss-value-parser: 4.2.0 - schema-utils: 2.7.1 - semver: 6.3.1 - webpack: 5.91.0 - css-loader@6.5.1(webpack@5.64.4(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: icss-utils: 5.1.0(postcss@8.4.41) @@ -31928,6 +32171,9 @@ snapshots: detect-libc@2.0.4: {} + detect-libc@2.1.2: + optional: true + detect-newline@3.1.0: {} detect-newline@4.0.1: {} @@ -32231,6 +32477,11 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.2.1 + enhanced-resolve@5.18.3: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + enhanced-resolve@5.9.3: dependencies: graceful-fs: 4.2.11 @@ -32397,6 +32648,63 @@ snapshots: unbox-primitive: 1.1.0 which-typed-array: 1.1.18 + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + es-array-method-boxes-properly@1.0.0: {} es-define-property@1.0.1: {} @@ -32459,6 +32767,10 @@ snapshots: dependencies: es-errors: 1.3.0 + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + es-set-tostringtag@2.0.1: dependencies: get-intrinsic: 1.2.7 @@ -32486,6 +32798,10 @@ snapshots: dependencies: hasown: 2.0.2 + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 @@ -32698,12 +33014,12 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-config-alloy@4.7.0(@babel/eslint-parser@7.23.3(@babel/core@7.24.7)(eslint@8.28.0))(@babel/preset-react@7.22.5(@babel/core@7.24.7))(@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint@8.28.0)(typescript@4.9.5))(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint-plugin-react@7.32.2(eslint@8.28.0))(eslint@8.28.0)(typescript@4.9.5)(vue-eslint-parser@9.0.3(eslint@8.28.0)): + eslint-config-alloy@4.7.0(@babel/eslint-parser@7.23.3(@babel/core@7.21.3)(eslint@8.28.0))(@babel/preset-react@7.22.5(@babel/core@7.21.3))(@typescript-eslint/eslint-plugin@5.44.0(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint@8.28.0)(typescript@4.9.5))(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint-plugin-react@7.32.2(eslint@8.28.0))(eslint@8.28.0)(typescript@4.9.5)(vue-eslint-parser@9.0.3(eslint@8.28.0)): dependencies: eslint: 8.28.0 optionalDependencies: - '@babel/eslint-parser': 7.23.3(@babel/core@7.24.7)(eslint@8.28.0) - '@babel/preset-react': 7.22.5(@babel/core@7.24.7) + '@babel/eslint-parser': 7.23.3(@babel/core@7.21.3)(eslint@8.28.0) + '@babel/preset-react': 7.22.5(@babel/core@7.21.3) '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0(eslint@8.28.0)(typescript@4.9.5))(eslint@8.28.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.44.0(eslint@8.28.0)(typescript@4.9.5) eslint-plugin-react: 7.32.2(eslint@8.28.0) @@ -32728,41 +33044,41 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-config-next@15.1.6(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3): + eslint-config-next@15.1.6(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3): dependencies: '@next/eslint-plugin-next': 15.1.6 '@rushstack/eslint-patch': 1.10.3 - '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) - eslint: 9.18.0(jiti@2.5.1) + '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) + '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-react: 7.37.4(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-react-hooks: 5.1.0(eslint@9.18.0(jiti@2.5.1)) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-react: 7.37.4(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-react-hooks: 5.1.0(eslint@9.18.0(jiti@2.6.1)) optionalDependencies: typescript: 5.5.3 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - eslint-config-next@15.4.4(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2): + eslint-config-next@16.0.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@next/eslint-plugin-next': 15.4.4 - '@rushstack/eslint-patch': 1.10.3 - '@typescript-eslint/eslint-plugin': 5.44.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - eslint: 9.18.0(jiti@2.5.1) + '@next/eslint-plugin-next': 16.0.1 + eslint: 9.39.1(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-react: 7.37.4(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-react-hooks: 5.1.0(eslint@9.18.0(jiti@2.5.1)) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-react: 7.37.4(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-react-hooks: 7.0.1(eslint@9.39.1(jiti@2.6.1)) + globals: 16.4.0 + typescript-eslint: 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) optionalDependencies: - typescript: 5.8.2 + typescript: 5.9.3 transitivePeerDependencies: + - '@typescript-eslint/parser' - eslint-import-resolver-webpack - supports-color @@ -32830,13 +33146,13 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: debug: 4.3.7(supports-color@6.1.0) enhanced-resolve: 5.18.2 - eslint: 9.18.0(jiti@2.5.1) - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint: 9.18.0(jiti@2.6.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) fast-glob: 3.3.2 get-tsconfig: 4.7.5 is-core-module: 2.16.1 @@ -32847,13 +33163,13 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)): dependencies: debug: 4.3.7(supports-color@6.1.0) enhanced-resolve: 5.18.2 - eslint: 9.18.0(jiti@2.5.1) - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint: 9.39.1(jiti@2.6.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.39.1(jiti@2.6.1)) fast-glob: 3.3.2 get-tsconfig: 4.7.5 is-core-module: 2.16.1 @@ -32885,25 +33201,36 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): + dependencies: + debug: 3.2.7(supports-color@6.1.0) + optionalDependencies: + '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) + eslint: 9.18.0(jiti@2.6.1) + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)): dependencies: debug: 3.2.7(supports-color@6.1.0) optionalDependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) - eslint: 9.18.0(jiti@2.5.1) + '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.39.1(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)): dependencies: debug: 3.2.7(supports-color@6.1.0) optionalDependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - eslint: 9.18.0(jiti@2.5.1) + '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.39.1(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)) transitivePeerDependencies: - supports-color @@ -32988,7 +33315,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -32997,9 +33324,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)))(eslint@9.18.0(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -33011,24 +33338,24 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.5.3) + '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.6.1))(typescript@5.5.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.39.1(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 array.prototype.flatmap: 1.3.3 debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)))(eslint@9.18.0(jiti@2.5.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -33040,7 +33367,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.44.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) + '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -33057,18 +33384,18 @@ snapshots: - supports-color - typescript - eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(typescript@5.8.2): + eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(typescript@5.8.2): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - eslint: 9.18.0(jiti@2.5.1) + '@typescript-eslint/utils': 5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) + eslint: 9.39.1(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2))(eslint@9.18.0(jiti@2.5.1))(typescript@5.8.2) - jest: 27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2))(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.2) + jest: 27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-jsx-a11y@6.10.2(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-jsx-a11y@6.10.2(eslint@9.18.0(jiti@2.6.1)): dependencies: aria-query: 5.3.2 array-includes: 3.1.8 @@ -33078,7 +33405,26 @@ snapshots: axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + safe-regex-test: 1.1.0 + string.prototype.includes: 2.0.1 + + eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.1(jiti@2.6.1)): + dependencies: + aria-query: 5.3.2 + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.10.2 + axobject-query: 4.1.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 9.39.1(jiti@2.6.1) hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -33119,13 +33465,24 @@ snapshots: dependencies: eslint: 8.28.0 - eslint-plugin-react-hooks@4.6.0(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-react-hooks@4.6.0(eslint@9.39.1(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) - eslint-plugin-react-hooks@5.1.0(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-react-hooks@5.1.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) + + eslint-plugin-react-hooks@7.0.1(eslint@9.39.1(jiti@2.6.1)): + dependencies: + '@babel/core': 7.24.7 + '@babel/parser': 7.26.2 + eslint: 9.39.1(jiti@2.6.1) + hermes-parser: 0.25.1 + zod: 4.1.12 + zod-validation-error: 4.0.2(zod@4.1.12) + transitivePeerDependencies: + - supports-color eslint-plugin-react@7.32.2(eslint@8.28.0): dependencies: @@ -33146,14 +33503,14 @@ snapshots: semver: 6.3.0 string.prototype.matchall: 4.0.8 - eslint-plugin-react@7.33.2(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-react@7.33.2(eslint@9.39.1(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.flatmap: 1.3.3 array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -33188,7 +33545,29 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.11 - eslint-plugin-react@7.37.4(eslint@9.18.0(jiti@2.5.1)): + eslint-plugin-react@7.37.4(eslint@9.18.0(jiti@2.6.1)): + dependencies: + array-includes: 3.1.8 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.2.1 + eslint: 9.18.0(jiti@2.6.1) + estraverse: 5.3.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 + + eslint-plugin-react@7.37.4(eslint@9.39.1(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -33196,7 +33575,7 @@ snapshots: array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) estraverse: 5.3.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -33261,6 +33640,11 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + eslint-utils@1.4.3: dependencies: eslint-visitor-keys: 1.3.0 @@ -33279,9 +33663,9 @@ snapshots: eslint: 8.28.0 eslint-visitor-keys: 2.1.0 - eslint-utils@3.0.0(eslint@9.18.0(jiti@2.5.1)): + eslint-utils@3.0.0(eslint@9.18.0(jiti@2.6.1)): dependencies: - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.18.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@1.3.0: {} @@ -33290,8 +33674,12 @@ snapshots: eslint-visitor-keys@3.4.1: {} + eslint-visitor-keys@3.4.3: {} + eslint-visitor-keys@4.2.0: {} + eslint-visitor-keys@4.2.1: {} + eslint-webpack-plugin@3.1.1(eslint@8.28.0)(webpack@5.64.4(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: '@types/eslint': 7.29.0 @@ -33388,9 +33776,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@9.18.0(jiti@2.5.1): + eslint@9.18.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@2.5.1)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.1 '@eslint/core': 0.10.0 @@ -33425,7 +33813,48 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 2.5.1 + jiti: 2.6.1 + transitivePeerDependencies: + - supports-color + + eslint@9.39.1(jiti@2.6.1): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.39.1 + '@eslint/plugin-kit': 0.4.1 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.6 + ajv: 6.12.6 + chalk: 4.1.1 + cross-spawn: 7.0.6 + debug: 4.3.7(supports-color@6.1.0) + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.6.1 transitivePeerDependencies: - supports-color @@ -33435,6 +33864,12 @@ snapshots: acorn-jsx: 5.3.2(acorn@8.14.0) eslint-visitor-keys: 4.2.0 + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + espree@6.2.1: dependencies: acorn: 7.4.1 @@ -33848,12 +34283,6 @@ snapshots: schema-utils: 2.7.1 webpack: 4.46.0 - file-loader@4.3.0(webpack@5.91.0): - dependencies: - loader-utils: 1.4.2 - schema-utils: 2.7.1 - webpack: 5.91.0 - file-loader@6.2.0(webpack@5.64.4(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: loader-utils: 2.0.4 @@ -34014,6 +34443,10 @@ snapshots: dependencies: is-callable: 1.2.7 + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + for-in@1.0.2: {} foreground-child@3.1.1: @@ -34272,6 +34705,19 @@ snapshots: hasown: 2.0.2 math-intrinsics: 1.1.0 + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + get-own-enumerable-property-symbols@3.0.2: {} get-package-type@0.1.0: {} @@ -34440,6 +34886,8 @@ snapshots: globals@14.0.0: {} + globals@16.4.0: {} + globalthis@1.0.3: dependencies: define-properties: 1.2.1 @@ -34771,6 +35219,12 @@ snapshots: he@1.2.0: {} + hermes-estree@0.25.1: {} + + hermes-parser@0.25.1: + dependencies: + hermes-estree: 0.25.1 + hex-color-regex@1.1.0: {} highlight.js@10.7.3: {} @@ -34880,17 +35334,6 @@ snapshots: util.promisify: 1.0.0 webpack: 4.46.0 - html-webpack-plugin@3.2.0(webpack@5.91.0): - dependencies: - html-minifier: 3.5.21 - loader-utils: 0.2.17 - lodash: 4.17.21 - pretty-error: 2.1.2 - tapable: 1.1.3 - toposort: 1.0.7 - util.promisify: 1.0.0 - webpack: 5.91.0 - html-webpack-plugin@5.5.0(webpack@5.64.4(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: '@types/html-minifier-terser': 6.1.0 @@ -35111,6 +35554,8 @@ snapshots: ignore@5.3.1: {} + ignore@7.0.5: {} + image-meta@0.2.0: {} image-size@0.5.5: @@ -35692,6 +36137,10 @@ snapshots: dependencies: call-bound: 1.0.3 + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + is-weakset@2.0.2: dependencies: call-bind: 1.0.8 @@ -35892,16 +36341,16 @@ snapshots: - ts-node - utf-8-validate - jest-cli@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10): + jest-cli@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10): dependencies: - '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 chalk: 4.1.1 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + jest-config: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) jest-util: 27.5.1 jest-validate: 27.5.1 prompts: 2.4.2 @@ -35948,7 +36397,7 @@ snapshots: - supports-color - utf-8-validate - jest-config@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10): + jest-config@27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.23.6 '@jest/test-sequencer': 27.5.1 @@ -35975,7 +36424,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2) + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2) transitivePeerDependencies: - bufferutil - canvas @@ -36332,11 +36781,11 @@ snapshots: - ts-node - utf-8-validate - jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10): + jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10): dependencies: - '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + '@jest/core': 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) import-local: 3.1.0 - jest-cli: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10) + jest-cli: 27.5.1(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - canvas @@ -36347,7 +36796,7 @@ snapshots: jiti@1.21.6: {} - jiti@2.5.1: {} + jiti@2.6.1: {} js-cookie@2.2.1: {} @@ -36703,61 +37152,64 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 + lightningcss-android-arm64@1.30.2: + optional: true + lightningcss-darwin-arm64@1.22.1: optional: true - lightningcss-darwin-arm64@1.30.1: + lightningcss-darwin-arm64@1.30.2: optional: true lightningcss-darwin-x64@1.22.1: optional: true - lightningcss-darwin-x64@1.30.1: + lightningcss-darwin-x64@1.30.2: optional: true lightningcss-freebsd-x64@1.22.1: optional: true - lightningcss-freebsd-x64@1.30.1: + lightningcss-freebsd-x64@1.30.2: optional: true lightningcss-linux-arm-gnueabihf@1.22.1: optional: true - lightningcss-linux-arm-gnueabihf@1.30.1: + lightningcss-linux-arm-gnueabihf@1.30.2: optional: true lightningcss-linux-arm64-gnu@1.22.1: optional: true - lightningcss-linux-arm64-gnu@1.30.1: + lightningcss-linux-arm64-gnu@1.30.2: optional: true lightningcss-linux-arm64-musl@1.22.1: optional: true - lightningcss-linux-arm64-musl@1.30.1: + lightningcss-linux-arm64-musl@1.30.2: optional: true lightningcss-linux-x64-gnu@1.22.1: optional: true - lightningcss-linux-x64-gnu@1.30.1: + lightningcss-linux-x64-gnu@1.30.2: optional: true lightningcss-linux-x64-musl@1.22.1: optional: true - lightningcss-linux-x64-musl@1.30.1: + lightningcss-linux-x64-musl@1.30.2: optional: true - lightningcss-win32-arm64-msvc@1.30.1: + lightningcss-win32-arm64-msvc@1.30.2: optional: true lightningcss-win32-x64-msvc@1.22.1: optional: true - lightningcss-win32-x64-msvc@1.30.1: + lightningcss-win32-x64-msvc@1.30.2: optional: true lightningcss@1.22.1: @@ -36774,20 +37226,21 @@ snapshots: lightningcss-linux-x64-musl: 1.22.1 lightningcss-win32-x64-msvc: 1.22.1 - lightningcss@1.30.1: + lightningcss@1.30.2: dependencies: detect-libc: 2.0.4 optionalDependencies: - lightningcss-darwin-arm64: 1.30.1 - lightningcss-darwin-x64: 1.30.1 - lightningcss-freebsd-x64: 1.30.1 - lightningcss-linux-arm-gnueabihf: 1.30.1 - lightningcss-linux-arm64-gnu: 1.30.1 - lightningcss-linux-arm64-musl: 1.30.1 - lightningcss-linux-x64-gnu: 1.30.1 - lightningcss-linux-x64-musl: 1.30.1 - lightningcss-win32-arm64-msvc: 1.30.1 - lightningcss-win32-x64-msvc: 1.30.1 + lightningcss-android-arm64: 1.30.2 + lightningcss-darwin-arm64: 1.30.2 + lightningcss-darwin-x64: 1.30.2 + lightningcss-freebsd-x64: 1.30.2 + lightningcss-linux-arm-gnueabihf: 1.30.2 + lightningcss-linux-arm64-gnu: 1.30.2 + lightningcss-linux-arm64-musl: 1.30.2 + lightningcss-linux-x64-gnu: 1.30.2 + lightningcss-linux-x64-musl: 1.30.2 + lightningcss-win32-arm64-msvc: 1.30.2 + lightningcss-win32-x64-msvc: 1.30.2 lilconfig@2.1.0: {} @@ -37011,6 +37464,10 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + magic-string@0.30.5: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 @@ -37729,10 +38186,6 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 - minizlib@3.0.2: - dependencies: - minipass: 7.1.2 - mississippi@3.0.0: dependencies: concat-stream: 1.6.2 @@ -37762,8 +38215,6 @@ snapshots: mkdirp@1.0.4: {} - mkdirp@3.0.1: {} - mlly@1.4.0: dependencies: acorn: 8.14.0 @@ -37931,27 +38382,27 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.4.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.54.7): + next@16.0.1(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(sass@1.54.7): dependencies: - '@next/env': 15.4.4 + '@next/env': 16.0.1 '@swc/helpers': 0.5.15 caniuse-lite: 1.0.30001707 postcss: 8.4.31 - react: 19.1.0 - react-dom: 19.1.0(react@19.1.0) - styled-jsx: 5.1.6(react@19.1.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.2.0) optionalDependencies: - '@next/swc-darwin-arm64': 15.4.4 - '@next/swc-darwin-x64': 15.4.4 - '@next/swc-linux-arm64-gnu': 15.4.4 - '@next/swc-linux-arm64-musl': 15.4.4 - '@next/swc-linux-x64-gnu': 15.4.4 - '@next/swc-linux-x64-musl': 15.4.4 - '@next/swc-win32-arm64-msvc': 15.4.4 - '@next/swc-win32-x64-msvc': 15.4.4 + '@next/swc-darwin-arm64': 16.0.1 + '@next/swc-darwin-x64': 16.0.1 + '@next/swc-linux-arm64-gnu': 16.0.1 + '@next/swc-linux-arm64-musl': 16.0.1 + '@next/swc-linux-x64-gnu': 16.0.1 + '@next/swc-linux-x64-musl': 16.0.1 + '@next/swc-win32-arm64-msvc': 16.0.1 + '@next/swc-win32-x64-msvc': 16.0.1 '@opentelemetry/api': 1.9.0 sass: 1.54.7 - sharp: 0.34.3 + sharp: 0.34.4 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -38327,17 +38778,17 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - nuxt@3.12.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@20.14.11)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.18.0(jiti@2.5.1))(ioredis@5.4.1)(less@4.2.0)(lightningcss@1.30.1)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + nuxt@3.12.2(@opentelemetry/api@1.9.0)(@parcel/watcher@2.4.1)(@types/node@24.10.0)(bufferutil@4.0.8)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.4.1)(less@4.2.0)(lightningcss@1.30.2)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: '@nuxt/devalue': 2.0.2 - '@nuxt/devtools': 1.3.6(bufferutil@4.0.8)(rollup@4.16.4)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@nuxt/devtools': 1.3.6(bufferutil@4.0.8)(rollup@4.16.4)(utf-8-validate@6.0.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@nuxt/kit': 3.12.2(magicast@0.3.4)(rollup@4.16.4) '@nuxt/schema': 3.12.2(rollup@4.16.4) '@nuxt/telemetry': 2.5.4(magicast@0.3.4)(rollup@4.16.4) - '@nuxt/vite-builder': 3.12.2(@types/node@20.14.11)(eslint@9.18.0(jiti@2.5.1))(less@4.2.0)(lightningcss@1.30.1)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2)(vue@3.4.30(typescript@5.8.2)) + '@nuxt/vite-builder': 3.12.2(@types/node@24.10.0)(eslint@9.39.1(jiti@2.6.1))(less@4.2.0)(lightningcss@1.30.2)(magicast@0.3.4)(meow@9.0.0)(optionator@0.9.4)(rollup@4.16.4)(sass-embedded@1.79.4)(sass@1.54.7)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3)(vue@3.4.30(typescript@5.9.3)) '@unhead/dom': 1.9.14 '@unhead/ssr': 1.9.14 - '@unhead/vue': 1.9.14(vue@3.4.30(typescript@5.8.2)) + '@unhead/vue': 1.9.14(vue@3.4.30(typescript@5.9.3)) '@vue/shared': 3.4.30 acorn: 8.12.0 c12: 1.11.1(magicast@0.3.4) @@ -38379,16 +38830,16 @@ snapshots: unenv: 1.9.0 unimport: 3.7.2(rollup@4.16.4) unplugin: 1.10.1 - unplugin-vue-router: 0.7.0(rollup@4.16.4)(vue-router@4.4.0(vue@3.4.30(typescript@5.8.2)))(vue@3.4.30(typescript@5.8.2)) + unplugin-vue-router: 0.7.0(rollup@4.16.4)(vue-router@4.4.0(vue@3.4.30(typescript@5.9.3)))(vue@3.4.30(typescript@5.9.3)) unstorage: 1.10.2(ioredis@5.4.1) untyped: 1.4.2 - vue: 3.4.30(typescript@5.8.2) + vue: 3.4.30(typescript@5.9.3) vue-bundle-renderer: 2.1.0 vue-devtools-stub: 0.1.0 - vue-router: 4.4.0(vue@3.4.30(typescript@5.8.2)) + vue-router: 4.4.0(vue@3.4.30(typescript@5.9.3)) optionalDependencies: '@parcel/watcher': 2.4.1 - '@types/node': 20.14.11 + '@types/node': 24.10.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -38467,6 +38918,8 @@ snapshots: object-inspect@1.13.3: {} + object-inspect@1.13.4: {} + object-is@1.1.5: dependencies: call-bind: 1.0.8 @@ -39446,13 +39899,13 @@ snapshots: postcss: 8.4.41 ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.3.3)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)): + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)): dependencies: lilconfig: 3.1.2 yaml: 2.4.5 optionalDependencies: postcss: 8.5.3 - ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3) + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3) optional: true postcss-loader@3.0.0: @@ -40866,9 +41319,9 @@ snapshots: dependencies: react: 18.2.0 - react-countup@6.4.0(@babel/core@7.24.7)(@types/babel__core@7.20.5)(react@18.2.0)(rollup@3.29.4): + react-countup@6.4.0(@babel/core@7.21.3)(@types/babel__core@7.20.5)(react@18.2.0)(rollup@3.29.4): dependencies: - '@rollup/plugin-babel': 6.0.3(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@3.29.4) + '@rollup/plugin-babel': 6.0.3(@babel/core@7.21.3)(@types/babel__core@7.20.5)(rollup@3.29.4) countup.js: 2.7.0 react: 18.2.0 transitivePeerDependencies: @@ -40927,10 +41380,10 @@ snapshots: react: 19.0.0 scheduler: 0.25.0 - react-dom@19.1.0(react@19.1.0): + react-dom@19.2.0(react@19.2.0): dependencies: - react: 19.1.0 - scheduler: 0.26.0 + react: 19.2.0 + scheduler: 0.27.0 react-error-overlay@6.0.11: {} @@ -40948,16 +41401,6 @@ snapshots: react-fast-compare: 3.2.2 shallowequal: 1.1.0 - react-helmet-async@1.3.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0): - dependencies: - '@babel/runtime': 7.23.6 - invariant: 2.2.4 - prop-types: 15.8.1 - react: 19.1.0 - react-dom: 19.1.0(react@19.1.0) - react-fast-compare: 3.2.2 - shallowequal: 1.1.0 - react-is@16.13.1: {} react-is@17.0.2: {} @@ -41001,13 +41444,6 @@ snapshots: react-dom: 18.3.1(react@18.3.1) react-router: 6.3.0(react@18.3.1) - react-router-dom@6.3.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0): - dependencies: - history: 5.3.0 - react: 19.1.0 - react-dom: 19.1.0(react@19.1.0) - react-router: 6.3.0(react@19.1.0) - react-router@6.14.0(react@18.2.0): dependencies: '@remix-run/router': 1.7.0 @@ -41018,11 +41454,6 @@ snapshots: history: 5.3.0 react: 18.3.1 - react-router@6.3.0(react@19.1.0): - dependencies: - history: 5.3.0 - react: 19.1.0 - react-sortable-hoc@2.0.0(prop-types@15.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.21.0 @@ -41041,7 +41472,7 @@ snapshots: react@19.0.0: {} - react@19.1.0: {} + react@19.2.0: {} reactcss@1.2.3(react@18.2.0): dependencies: @@ -41117,10 +41548,10 @@ snapshots: estree-util-build-jsx: 3.0.1 vfile: 6.0.1 - recma-jsx@1.0.1(acorn@8.14.0): + recma-jsx@1.0.1(acorn@8.15.0): dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) estree-util-to-js: 2.0.0 recma-parse: 1.0.0 recma-stringify: 1.0.0 @@ -41874,7 +42305,7 @@ snapshots: scheduler@0.25.0: {} - scheduler@0.26.0: {} + scheduler@0.27.0: {} schema-utils@1.0.0: dependencies: @@ -42146,34 +42577,34 @@ snapshots: '@img/sharp-win32-x64': 0.33.5 optional: true - sharp@0.34.3: + sharp@0.34.4: dependencies: - color: 4.2.3 - detect-libc: 2.0.4 + '@img/colour': 1.0.0 + detect-libc: 2.1.2 semver: 7.7.2 optionalDependencies: - '@img/sharp-darwin-arm64': 0.34.3 - '@img/sharp-darwin-x64': 0.34.3 - '@img/sharp-libvips-darwin-arm64': 1.2.0 - '@img/sharp-libvips-darwin-x64': 1.2.0 - '@img/sharp-libvips-linux-arm': 1.2.0 - '@img/sharp-libvips-linux-arm64': 1.2.0 - '@img/sharp-libvips-linux-ppc64': 1.2.0 - '@img/sharp-libvips-linux-s390x': 1.2.0 - '@img/sharp-libvips-linux-x64': 1.2.0 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 - '@img/sharp-libvips-linuxmusl-x64': 1.2.0 - '@img/sharp-linux-arm': 0.34.3 - '@img/sharp-linux-arm64': 0.34.3 - '@img/sharp-linux-ppc64': 0.34.3 - '@img/sharp-linux-s390x': 0.34.3 - '@img/sharp-linux-x64': 0.34.3 - '@img/sharp-linuxmusl-arm64': 0.34.3 - '@img/sharp-linuxmusl-x64': 0.34.3 - '@img/sharp-wasm32': 0.34.3 - '@img/sharp-win32-arm64': 0.34.3 - '@img/sharp-win32-ia32': 0.34.3 - '@img/sharp-win32-x64': 0.34.3 + '@img/sharp-darwin-arm64': 0.34.4 + '@img/sharp-darwin-x64': 0.34.4 + '@img/sharp-libvips-darwin-arm64': 1.2.3 + '@img/sharp-libvips-darwin-x64': 1.2.3 + '@img/sharp-libvips-linux-arm': 1.2.3 + '@img/sharp-libvips-linux-arm64': 1.2.3 + '@img/sharp-libvips-linux-ppc64': 1.2.3 + '@img/sharp-libvips-linux-s390x': 1.2.3 + '@img/sharp-libvips-linux-x64': 1.2.3 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 + '@img/sharp-linux-arm': 0.34.4 + '@img/sharp-linux-arm64': 0.34.4 + '@img/sharp-linux-ppc64': 0.34.4 + '@img/sharp-linux-s390x': 0.34.4 + '@img/sharp-linux-x64': 0.34.4 + '@img/sharp-linuxmusl-arm64': 0.34.4 + '@img/sharp-linuxmusl-x64': 0.34.4 + '@img/sharp-wasm32': 0.34.4 + '@img/sharp-win32-arm64': 0.34.4 + '@img/sharp-win32-ia32': 0.34.4 + '@img/sharp-win32-x64': 0.34.4 optional: true shebang-command@1.2.0: @@ -42584,6 +43015,11 @@ snapshots: dependencies: internal-slot: 1.1.0 + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + stream-browserify@2.0.2: dependencies: inherits: 2.0.4 @@ -42855,14 +43291,14 @@ snapshots: dependencies: inline-style-parser: 0.2.4 - styled-components@5.3.6(@babel/core@7.24.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): + styled-components@5.3.6(@babel/core@7.21.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): dependencies: '@babel/helper-module-imports': 7.22.5 '@babel/traverse': 7.22.5(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.1 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.6(@babel/core@7.24.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) + babel-plugin-styled-components: 2.1.4(@babel/core@7.21.3)(styled-components@5.3.6(@babel/core@7.21.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -42878,15 +43314,17 @@ snapshots: client-only: 0.0.1 react: 18.2.0 - styled-jsx@5.1.6(react@19.0.0): + styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.2.0): dependencies: client-only: 0.0.1 - react: 19.0.0 + react: 19.2.0 + optionalDependencies: + '@babel/core': 7.24.7 - styled-jsx@5.1.6(react@19.1.0): + styled-jsx@5.1.6(react@19.0.0): dependencies: client-only: 0.0.1 - react: 19.1.0 + react: 19.0.0 stylehacks@4.0.3: dependencies: @@ -43022,15 +43460,15 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@3.8.5(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18): + svelte-check@3.8.5(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18): dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 3.6.0 picocolors: 1.0.1 sade: 1.8.1 svelte: 4.2.18 - svelte-preprocess: 5.1.3(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18)(typescript@5.8.2) - typescript: 5.8.2 + svelte-preprocess: 5.1.3(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18)(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - '@babel/core' - coffeescript @@ -43046,7 +43484,7 @@ snapshots: dependencies: svelte: 4.2.18 - svelte-preprocess@5.1.3(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18)(typescript@5.8.2): + svelte-preprocess@5.1.3(@babel/core@7.24.7)(less@4.2.0)(postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)))(postcss@8.5.3)(pug@3.0.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(svelte@4.2.18)(typescript@5.9.3): dependencies: '@types/pug': 2.0.10 detect-indent: 6.1.0 @@ -43058,12 +43496,12 @@ snapshots: '@babel/core': 7.24.7 less: 4.2.0 postcss: 8.5.3 - postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.5.3)) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3)) pug: 3.0.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) - typescript: 5.8.2 + typescript: 5.9.3 svelte@4.2.18: dependencies: @@ -43254,7 +43692,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@4.1.11: {} + tailwindcss@4.1.16: {} tapable@1.1.3: {} @@ -43319,15 +43757,6 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.4.3: - dependencies: - '@isaacs/fs-minipass': 4.0.1 - chownr: 3.0.0 - minipass: 7.1.2 - minizlib: 3.0.2 - mkdirp: 3.0.1 - yallist: 5.0.0 - temp-dir@2.0.0: {} tempy@0.6.0: @@ -43577,6 +44006,10 @@ snapshots: tryer@1.0.1: {} + ts-api-utils@2.1.0(typescript@5.9.3): + dependencies: + typescript: 5.9.3 + ts-interface-checker@0.1.13: {} ts-loader@6.2.2(typescript@4.1.6): @@ -43632,42 +44065,43 @@ snapshots: '@swc/wasm': 1.11.13 optional: true - ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2): + ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.3.3)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.14.11 + '@types/node': 20.3.3 acorn: 8.14.0 acorn-walk: 8.3.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.8.2 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: '@swc/core': 1.11.13(@swc/helpers@0.5.15) '@swc/wasm': 1.11.13 + optional: true - ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.3.3)(typescript@5.4.5): + ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.5.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.3.3 + '@types/node': 24.10.0 acorn: 8.14.0 acorn-walk: 8.3.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.4.5 + typescript: 5.5.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: @@ -43675,6 +44109,27 @@ snapshots: '@swc/wasm': 1.11.13 optional: true + ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 24.10.0 + acorn: 8.14.0 + acorn-walk: 8.3.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.8.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.11.13(@swc/helpers@0.5.15) + '@swc/wasm': 1.11.13 + ts-pnp@1.2.0(typescript@4.1.6): optionalDependencies: typescript: 4.1.6 @@ -43894,6 +44349,17 @@ snapshots: dependencies: semver: 7.7.2 + typescript-eslint@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.3(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3) + eslint: 9.39.1(jiti@2.6.1) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + typescript@4.1.6: {} typescript@4.9.5: {} @@ -43906,6 +44372,8 @@ snapshots: typescript@5.8.2: {} + typescript@5.9.3: {} + ua-parser-js@1.0.38: {} ufo@1.1.2: {} @@ -43929,15 +44397,15 @@ snapshots: ultrahtml@1.5.3: {} - umi@4.4.12(@babel/core@7.24.7)(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@20.14.11)(@types/react@18.3.3)(@types/webpack@4.41.33)(@volar/vue-typescript@1.2.0)(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(lightningcss@1.30.1)(prettier@2.8.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))): + umi@4.4.12(@babel/core@7.24.7)(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@24.10.0)(@types/react@18.3.3)(@types/webpack@4.41.33)(@volar/vue-typescript@1.2.0)(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(lightningcss@1.30.2)(prettier@2.8.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylelint@14.16.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: '@babel/runtime': 7.23.6 '@umijs/bundler-utils': 4.4.12 '@umijs/bundler-webpack': 4.4.12(@types/webpack@4.41.33)(sockjs-client@1.6.1)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@umijs/core': 4.4.12 - '@umijs/lint': 4.4.12(eslint@9.18.0(jiti@2.5.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@20.14.11)(typescript@5.8.2))(utf-8-validate@5.0.10))(stylelint@14.16.1)(typescript@5.8.2) - '@umijs/preset-umi': 4.4.12(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@20.14.11)(@types/react@18.3.3)(@types/webpack@4.41.33)(lightningcss@1.30.1)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) - '@umijs/renderer-react': 4.4.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@umijs/lint': 4.4.12(eslint@9.39.1(jiti@2.6.1))(jest@27.4.3(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/wasm@1.11.13)(@types/node@24.10.0)(typescript@5.8.2))(utf-8-validate@5.0.10))(stylelint@14.16.1)(typescript@5.8.2) + '@umijs/preset-umi': 4.4.12(@rspack/core@1.2.8(@rspack/tracing@1.2.8)(@swc/helpers@0.5.15))(@types/node@24.10.0)(@types/react@18.3.3)(@types/webpack@4.41.33)(lightningcss@1.30.2)(rollup@3.29.4)(sass-embedded@1.79.4)(sass@1.54.7)(sockjs-client@1.6.1)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(type-fest@3.13.1)(typescript@5.8.2)(webpack-dev-server@4.6.0(@types/express@4.17.21)(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.11.13(@swc/helpers@0.5.15))) + '@umijs/renderer-react': 4.4.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@umijs/server': 4.4.12 '@umijs/test': 4.4.12(@babel/core@7.24.7) '@umijs/utils': 4.4.12 @@ -44004,6 +44472,8 @@ snapshots: undici-types@5.26.5: {} + undici-types@7.16.0: {} + undici@5.28.4: dependencies: '@fastify/busboy': 2.1.1 @@ -44221,11 +44691,11 @@ snapshots: transitivePeerDependencies: - supports-color - unplugin-vue-router@0.7.0(rollup@4.16.4)(vue-router@4.4.0(vue@3.4.30(typescript@5.8.2)))(vue@3.4.30(typescript@5.8.2)): + unplugin-vue-router@0.7.0(rollup@4.16.4)(vue-router@4.4.0(vue@3.4.30(typescript@5.9.3)))(vue@3.4.30(typescript@5.9.3)): dependencies: '@babel/types': 7.23.6 '@rollup/pluginutils': 5.1.0(rollup@4.16.4) - '@vue-macros/common': 1.10.4(rollup@4.16.4)(vue@3.4.30(typescript@5.8.2)) + '@vue-macros/common': 1.10.4(rollup@4.16.4)(vue@3.4.30(typescript@5.9.3)) ast-walker-scope: 0.5.0(rollup@4.16.4) chokidar: 3.6.0 fast-glob: 3.3.2 @@ -44237,7 +44707,7 @@ snapshots: unplugin: 1.10.1 yaml: 2.4.5 optionalDependencies: - vue-router: 4.4.0(vue@3.4.30(typescript@5.8.2)) + vue-router: 4.4.0(vue@3.4.30(typescript@5.9.3)) transitivePeerDependencies: - rollup - vue @@ -44360,7 +44830,7 @@ snapshots: schema-utils: 2.7.1 webpack: 4.46.0 optionalDependencies: - file-loader: 4.3.0(webpack@5.91.0) + file-loader: 4.3.0(webpack@4.46.0) url-okam@0.11.1: dependencies: @@ -44517,17 +44987,17 @@ snapshots: transitivePeerDependencies: - supports-color - vite-hot-client@0.2.3(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vite-hot-client@0.2.3(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vite-node@1.6.0(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite-node@1.6.0(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: cac: 6.7.14 debug: 4.3.7(supports-color@6.1.0) pathe: 1.1.2 picocolors: 1.1.1 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - '@types/node' - less @@ -44539,12 +45009,12 @@ snapshots: - supports-color - terser - vite-node@2.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite-node@2.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: cac: 6.7.14 debug: 4.3.7(supports-color@6.1.0) pathe: 1.1.2 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - '@types/node' - less @@ -44556,7 +45026,7 @@ snapshots: - supports-color - terser - vite-plugin-checker@0.6.4(eslint@9.18.0(jiti@2.5.1))(meow@9.0.0)(optionator@0.9.4)(stylelint@14.16.1)(typescript@5.8.2)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vite-plugin-checker@0.6.4(eslint@9.39.1(jiti@2.6.1))(meow@9.0.0)(optionator@0.9.4)(stylelint@14.16.1)(typescript@5.9.3)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: '@babel/code-frame': 7.24.7 ansi-escapes: 4.3.2 @@ -44569,19 +45039,19 @@ snapshots: semver: 7.7.2 strip-ansi: 6.0.1 tiny-invariant: 1.3.3 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 optionalDependencies: - eslint: 9.18.0(jiti@2.5.1) + eslint: 9.39.1(jiti@2.6.1) meow: 9.0.0 optionator: 0.9.4 stylelint: 14.16.1 - typescript: 5.8.2 + typescript: 5.9.3 - vite-plugin-inspect@0.8.4(@nuxt/kit@3.12.2(magicast@0.3.4)(rollup@4.16.4))(rollup@4.16.4)(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vite-plugin-inspect@0.8.4(@nuxt/kit@3.12.2(magicast@0.3.4)(rollup@4.16.4))(rollup@4.16.4)(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: '@antfu/utils': 0.7.8 '@rollup/pluginutils': 5.1.0(rollup@4.16.4) @@ -44592,7 +45062,7 @@ snapshots: perfect-debounce: 1.0.0 picocolors: 1.1.1 sirv: 2.0.4 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) optionalDependencies: '@nuxt/kit': 3.12.2(magicast@0.3.4)(rollup@4.16.4) transitivePeerDependencies: @@ -44624,7 +45094,7 @@ snapshots: transitivePeerDependencies: - rollup - vite-plugin-solid@2.8.0(solid-js@1.8.7)(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vite-plugin-solid@2.8.0(solid-js@1.8.7)(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: '@babel/core': 7.23.6 '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6) @@ -44633,12 +45103,12 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.8.7 solid-refresh: 0.5.3(solid-js@1.8.7) - vite: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitefu: 0.2.5(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + vite: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vitefu: 0.2.5(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) transitivePeerDependencies: - supports-color - vite-plugin-vue-inspector@5.1.2(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vite-plugin-vue-inspector@5.1.2(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): dependencies: '@babel/core': 7.23.6 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.23.6) @@ -44649,7 +45119,7 @@ snapshots: '@vue/compiler-dom': 3.5.13 kolorist: 1.8.0 magic-string: 0.30.17 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) transitivePeerDependencies: - supports-color @@ -44696,13 +45166,13 @@ snapshots: sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@4.3.9(@types/node@20.14.11)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@4.3.9(@types/node@24.10.0)(less@4.2.0)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.17.12 postcss: 8.4.41 rollup: 3.26.0 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.2.0 sass: 1.54.7 @@ -44710,7 +45180,7 @@ snapshots: sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@4.5.1(@types/node@16.18.12)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.18.20 postcss: 8.5.3 @@ -44719,13 +45189,13 @@ snapshots: '@types/node': 16.18.12 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.18.20 postcss: 8.5.3 @@ -44734,115 +45204,130 @@ snapshots: '@types/node': 20.14.11 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@4.5.2(@types/node@20.14.11)(less@4.1.3)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@4.5.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.18.20 postcss: 8.5.3 rollup: 3.29.4 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 + fsevents: 2.3.3 + less: 4.2.0 + lightningcss: 1.30.2 + sass: 1.54.7 + stylus: 0.63.0 + sugarss: 4.0.1(postcss@8.5.3) + terser: 5.30.4 + + vite@4.5.2(@types/node@24.10.0)(less@4.1.3)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + dependencies: + esbuild: 0.18.20 + postcss: 8.5.3 + rollup: 3.29.4 + optionalDependencies: + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.1.3 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.19.10 postcss: 8.4.41 rollup: 4.9.1 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@5.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@5.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.19.10 postcss: 8.5.3 rollup: 4.16.4 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@5.2.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@5.2.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.20.2 postcss: 8.4.41 rollup: 4.16.4 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: esbuild: 0.21.5 postcss: 8.4.41 rollup: 4.16.4 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.30.1 + lightningcss: 1.30.2 sass: 1.54.7 sass-embedded: 1.79.4 stylus: 0.63.0 sugarss: 4.0.1(postcss@8.5.3) terser: 5.30.4 - vitefu@0.2.5(vite@5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vitefu@0.2.5(vite@5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): optionalDependencies: - vite: 5.0.10(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.0.10(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitefu@0.2.5(vite@5.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vitefu@0.2.5(vite@5.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): optionalDependencies: - vite: 5.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitefu@0.2.5(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): + vitefu@0.2.5(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)): optionalDependencies: - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vitepress@1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@20.14.11)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.8.2): + vitepress@1.0.0-beta.2(@algolia/client-search@4.22.0)(@types/node@24.10.0)(@types/react@18.3.3)(async-validator@4.2.5)(axios@1.2.0)(less@4.2.0)(lightningcss@1.30.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.54.7)(search-insights@2.7.0)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)(typescript@5.9.3): dependencies: '@docsearch/css': 3.5.2 '@docsearch/js': 3.5.2(@algolia/client-search@4.22.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.7.0) - '@vitejs/plugin-vue': 4.3.1(vite@4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.5.13(typescript@5.8.2)) + '@vitejs/plugin-vue': 4.3.1(vite@4.5.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4))(vue@3.5.13(typescript@5.9.3)) '@vue/devtools-api': 6.5.1 - '@vueuse/core': 10.7.1(vue@3.5.13(typescript@5.8.2)) - '@vueuse/integrations': 10.7.1(async-validator@4.2.5)(axios@1.2.0)(focus-trap@7.5.4)(vue@3.5.13(typescript@5.8.2)) + '@vueuse/core': 10.7.1(vue@3.5.13(typescript@5.9.3)) + '@vueuse/integrations': 10.7.1(async-validator@4.2.5)(axios@1.2.0)(focus-trap@7.5.4)(vue@3.5.13(typescript@5.9.3)) body-scroll-lock: 4.0.0-beta.0 focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 6.3.0 shiki: 0.14.7 - vite: 4.5.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vue: 3.5.13(typescript@5.8.2) + vite: 4.5.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vue: 3.5.13(typescript@5.9.3) transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -44870,10 +45355,10 @@ snapshots: - typescript - universal-cookie - vitest@2.1.4(@types/node@20.14.11)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): + vitest@2.1.4(@types/node@24.10.0)(jsdom@25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4))(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4): dependencies: '@vitest/expect': 2.1.4 - '@vitest/mocker': 2.1.4(vite@5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) + '@vitest/mocker': 2.1.4(vite@5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4)) '@vitest/pretty-format': 2.1.4 '@vitest/runner': 2.1.4 '@vitest/snapshot': 2.1.4 @@ -44889,11 +45374,11 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.1(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) - vite-node: 2.1.4(@types/node@20.14.11)(less@4.2.0)(lightningcss@1.30.1)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite: 5.4.1(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) + vite-node: 2.1.4(@types/node@24.10.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.79.4)(sass@1.54.7)(stylus@0.63.0)(sugarss@4.0.1(postcss@8.5.3))(terser@5.30.4) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.14.11 + '@types/node': 24.10.0 jsdom: 25.0.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) transitivePeerDependencies: - less @@ -45051,9 +45536,9 @@ snapshots: vue: 3.5.13(typescript@4.9.5) optional: true - vue-demi@0.14.6(vue@3.5.13(typescript@5.8.2)): + vue-demi@0.14.6(vue@3.5.13(typescript@5.9.3)): dependencies: - vue: 3.5.13(typescript@5.8.2) + vue: 3.5.13(typescript@5.9.3) vue-devtools-stub@0.1.0: {} @@ -45088,7 +45573,7 @@ snapshots: vue-loader@15.10.1(@vue/compiler-sfc@3.3.4)(cache-loader@4.1.0(webpack@4.46.0))(css-loader@3.6.0(webpack@4.46.0))(ejs@3.1.10)(lodash@4.17.21)(pug@3.0.2)(vue-template-compiler@2.7.14)(webpack@4.46.0): dependencies: '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(lodash@4.17.21)(pug@3.0.2) - css-loader: 3.6.0(webpack@5.91.0) + css-loader: 3.6.0(webpack@4.46.0) hash-sum: 1.0.2 loader-utils: 1.4.2 vue-hot-reload-api: 2.3.4 @@ -45196,10 +45681,10 @@ snapshots: dependencies: vue: 2.7.10 - vue-router@4.4.0(vue@3.4.30(typescript@5.8.2)): + vue-router@4.4.0(vue@3.4.30(typescript@5.9.3)): dependencies: '@vue/devtools-api': 6.5.1 - vue: 3.4.30(typescript@5.8.2) + vue: 3.4.30(typescript@5.9.3) vue-style-loader@4.1.3: dependencies: @@ -45248,15 +45733,15 @@ snapshots: optionalDependencies: typescript: 5.4.5 - vue@3.4.30(typescript@5.8.2): + vue@3.4.30(typescript@5.9.3): dependencies: '@vue/compiler-dom': 3.4.30 '@vue/compiler-sfc': 3.4.30 '@vue/runtime-dom': 3.4.30 - '@vue/server-renderer': 3.4.30(vue@3.4.30(typescript@5.8.2)) + '@vue/server-renderer': 3.4.30(vue@3.4.30(typescript@5.9.3)) '@vue/shared': 3.4.30 optionalDependencies: - typescript: 5.8.2 + typescript: 5.9.3 vue@3.5.13(typescript@4.9.5): dependencies: @@ -45279,6 +45764,16 @@ snapshots: optionalDependencies: typescript: 5.8.2 + vue@3.5.13(typescript@5.9.3): + dependencies: + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-sfc': 3.5.13 + '@vue/runtime-dom': 3.5.13 + '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.9.3)) + '@vue/shared': 3.5.13 + optionalDependencies: + typescript: 5.9.3 + w3c-hr-time@1.0.2: dependencies: browser-process-hrtime: 1.0.0 @@ -45883,6 +46378,16 @@ snapshots: gopd: 1.2.0 has-tostringtag: 1.0.2 + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + which-typed-array@1.1.9: dependencies: available-typed-arrays: 1.0.5 @@ -46165,8 +46670,6 @@ snapshots: yallist@4.0.0: {} - yallist@5.0.0: {} - yaml@1.10.2: {} yaml@2.4.5: {} @@ -46263,8 +46766,14 @@ snapshots: dependencies: zod: 3.23.8 + zod-validation-error@4.0.2(zod@4.1.12): + dependencies: + zod: 4.1.12 + zod@3.22.4: {} zod@3.23.8: {} + zod@4.1.12: {} + zwitch@2.0.4: {}