diff --git a/ts/docs/architecture/agents/agentServerConversations.md b/ts/docs/architecture/agents/agentServerConversations.md index 4d24a655cc..a29b840fa6 100644 --- a/ts/docs/architecture/agents/agentServerConversations.md +++ b/ts/docs/architecture/agents/agentServerConversations.md @@ -270,7 +270,7 @@ See `packages/vscode-shell/src/agentServerBridge.ts` (`handleManageConversation` The browser extension (`packages/agents/browserExtension/src/extension`) is a Chrome MV3 extension that runs in **connected mode only** — its service worker maintains a WebSocket to the agentServer. The chat panel surfaces the same `@conversation` slash commands and NL phrases as the Shell and CLI. -The chat panel forwards the dispatcher's `manage-conversation` `takeAction` payload to the service worker via a `chatPanelManageConversation` invoke RPC. The service worker (`extension/serviceWorker/dispatcherConnection.ts`) delegates to the shared `manageConversation` helper from `@typeagent/agent-server-client/conversation` (which implements all eight subcommands) via a thin `AgentServerConnection` adapter over the extension's RPC channel, and returns a rendered HTML message plus a `switched` flag. +The chat panel forwards the dispatcher's `manage-conversation` `takeAction` payload to the service worker via a `chatPanelManageConversation` invoke RPC. The service worker (`extension/serviceWorker/dispatcherConnection.ts`) delegates to the shared `manageConversation` helper from `@typeagent/agent-server-client/conversation` (which implements every subcommand) via a thin `AgentServerConnection` adapter over the extension's RPC channel, and returns a rendered HTML message plus a `switched` flag. When `switched` is set, the chat panel clears its DOM and re-runs `loadSessionHistory()` (mirroring the Shell's `replayDisplayHistory` on `conversationChanged`), then renders the confirmation message so it lands after the replayed history. Live display events arriving during the replay are queued via a `runOrDefer` gate and flushed in order on completion. @@ -286,11 +286,11 @@ All four clients (CLI, Electron Shell, VS Code, browser extension) drive their c Modules: -| Module | Surface | -| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `naming.ts` | `normalizeConversationName`, `findConversationByName`, `findUniqueConversationByName`, `formatAutoConversationName`, `sortConversationsByCreatedDesc` | -| `lifecycle.ts` | `findOrCreateNamedConversation`, `joinNamedOrFallback`, `switchConversationSafe`, `createEphemeralConversation`, `deleteEphemeralConversation`, `validateConversationNameUnique`, `isConversationNotFoundError` | -| `manage.ts` | `manageConversation` (top-level dispatcher) + per-subcommand entries (`manageNew`, `manageList`, `manageInfo`, `manageSwitch`, `manageCycle`, `manageRename`, `manageDelete`). All return a discriminated `ConversationActionResult` the caller renders to its own UI. | +| Module | Surface | +| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `naming.ts` | `normalizeConversationName`, `findConversationByName`, `findUniqueConversationByName`, `formatAutoConversationName`, `sortConversationsByCreatedDesc` | +| `lifecycle.ts` | `findOrCreateNamedConversation`, `joinNamedOrFallback`, `switchConversationSafe`, `createEphemeralConversation`, `deleteEphemeralConversation`, `validateConversationNameUnique`, `isConversationNotFoundError` | +| `manage.ts` | `manageConversation` (top-level dispatcher) + per-subcommand entries (`manageNew`, `manageList`, `manageFind`, `manageSearch`, `manageInfo`, `manageSwitch`, `manageCycle`, `manageRename`, `manageDelete`). All return a discriminated `ConversationActionResult` the caller renders to its own UI. | ### Switch protocol @@ -345,6 +345,8 @@ where `payload` has the shape: { subcommand: "help" } { subcommand: "new"; name?: string } { subcommand: "list" } +{ subcommand: "find"; query: string } +{ subcommand: "search"; query: string } { subcommand: "info" } { subcommand: "switch"; name: string } { subcommand: "prev" } @@ -353,7 +355,7 @@ where `payload` has the shape: { subcommand: "rename"; name?: string; newName: string } ``` -`help` is dispatched when `@conversation` / `/conversation` is invoked with no subcommand (via the dispatcher's `defaultSubCommand: "help"`); there is intentionally no natural-language form for it. NL drops `help` from its `ConversationActionPayload` union and only emits `new`, `list`, `info`, `switch`, `prev`, `next`, `rename`, `delete`. See `packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts` for the authoritative type. +`help` is dispatched when `@conversation` / `/conversation` is invoked with no subcommand (via the dispatcher's `defaultSubCommand: "help"`), and also has a natural-language form (e.g. "conversation help", "help with conversations"). `find` matches conversations by **name** (lexical + embedding); `search` matches conversation **content** via the knowPro unified message index. The full natural-language set the `system.conversation` sub-agent emits is `new`, `list`, `find`, `search`, `info`, `switch`, `prev`, `next`, `rename`, `delete`, and `help`. See `packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts` for the authoritative type. Each client handles `"manage-conversation"` using its own conversation management API: diff --git a/ts/docs/architecture/core/dispatcher.md b/ts/docs/architecture/core/dispatcher.md index 04d4719eeb..6dea3dc0f2 100644 --- a/ts/docs/architecture/core/dispatcher.md +++ b/ts/docs/architecture/core/dispatcher.md @@ -730,14 +730,17 @@ subcommands, and help text. The system agent also has sub-agents with LLM-translated action schemas: -- **`system.describe`** — Natural language capability discovery ("what can the spotify agent do", - "describe the play action"). `executeDescribeAction` forwards to the equivalent `@describe` - command (same convention as `system.config`/`system.history`), which resolves the agent/action - against `getAgentSchemas()` (agentSchemaInfo.ts) and renders a deterministic markdown summary, - optionally polished by a fast structured-output LLM call when one is configured — the model - returns a schema-validated JSON object (summary / explanation + example) that is rendered to - markdown deterministically, falling back to the deterministic text on a missing/failed model - (see `describeCore.ts`). +- **`system.help`** — Natural language questions about TypeAgent itself. One schema owns three + actions: `answerTypeAgentQuestion` (find the command/action for a task) and `explainTypeAgent` + (conceptual/setup questions), both grounded via the `@typeagent/selfhelp` library, plus + `describeAgent`/`describeAction` capability discovery ("what can the spotify agent do", "describe + the play action"). The describe actions forward to the same `describeCore` engine as the + `@describe` command, which resolves the agent/action against `getAgentSchemas()` + (agentSchemaInfo.ts) and renders a deterministic markdown summary, optionally polished by a fast + structured-output LLM call when one is configured, falling back to the deterministic text on a + missing/failed model (see `describeCore.ts`). When `describeAgent` names something that is not an + installed agent (a concept like "translation"), the handler falls back to `explainTypeAgent` + rather than dead-ending. - **`system.config`** — Natural language configuration changes. - **`system.conversation`** — Natural language management of **agentServer client-connection conversations** (the named, GUID-keyed sessions described in diff --git a/ts/docs/overview/action-browser.html b/ts/docs/overview/action-browser.html index dadce99a7c..99e0f1b7eb 100644 --- a/ts/docs/overview/action-browser.html +++ b/ts/docs/overview/action-browser.html @@ -144,7 +144,7 @@

🧭 TypeAgent Action Browser

-33 agents · 557 actions · 411 commands · generated 2026-07-29 14:39:02 UTC +32 agents · 557 actions · 416 commands · generated 2026-07-31 18:27:52 UTC
@@ -167,7 +167,7 @@

🧭 TypeAgent Action Browser

- + + + diff --git a/ts/packages/chat-ui/src/chatPanel.ts b/ts/packages/chat-ui/src/chatPanel.ts index 913549daff..527f904e50 100644 --- a/ts/packages/chat-ui/src/chatPanel.ts +++ b/ts/packages/chat-ui/src/chatPanel.ts @@ -81,7 +81,13 @@ import { createWebSpeechProvider } from "./webSpeechProvider.js"; import { openSettingsPopup, openHelpPopup } from "./popups.js"; import { TemplateEditor, type TemplateEditServices } from "./templateEditor.js"; import type { TemplateEditConfig } from "@typeagent/dispatcher-types"; -import { iconX, iconJumpQueue, iconStop, iconRetry } from "./icons.js"; +import { + iconX, + iconJumpQueue, + iconStop, + iconRetry, + iconOpenInWindow, +} from "./icons.js"; /** * How long the transient "sent" acknowledgement stays on the user bubble @@ -551,6 +557,26 @@ export interface StatusNoticeBadge { */ type CaretPoint = { node: Node; offset: number }; +/** + * A live-updating bubble tracked by the top rail: either an agent dynamic + * display or a bubble flagged live via a `data-live-title` content marker + * (the conversation-index progress bar). When such a bubble scrolls out of the + * message viewport a compact chip is shown in the rail so the user can watch + * its progress and jump back to it. + */ +type LiveBubbleEntry = { + container: AgentMessageContainer; + kind: "dynamic" | "marker"; + title: string; + icon: string; + percent?: number; + pinned: boolean; + offscreen: boolean; + position: "above" | "below" | "in"; + chip?: HTMLDivElement; + barFill?: HTMLElement; +}; + /** * A lightweight chat panel that renders user and agent messages. * Designed for embedding in a Chrome extension side panel or any @@ -754,10 +780,22 @@ export class ChatPanel { source: string; displayId: string; nextRefreshTime: number; + // The action's own bubble, captured when the host associates a + // requestId, so refreshes update it in place instead of spawning a + // separate container. Undefined => fall back to a standalone bubble. + container?: AgentMessageContainer; }[] = []; private dynamicTimer?: ReturnType; private dynamicContainers = new Map(); + // Live-bubble "top rail". When a live-updating bubble scrolls out of the + // message viewport, a compact chip is shown in `topRail` (an in-flow strip + // above the messages, so it never overlaps the transcript or the + // scrollbar). Keyed by the observed bubble element (container.div). + private topRail?: HTMLDivElement; + private liveObserver?: IntersectionObserver; + private liveBubbles = new Map(); + // Pending image attachments (base64 data URLs) private pendingAttachments: string[] = []; @@ -862,6 +900,8 @@ export class ChatPanel { private voiceBanner?: HTMLDivElement; private lightboxOverlay?: HTMLDivElement; private lightboxKeyHandler?: (ev: KeyboardEvent) => void; + private textViewerOverlay?: HTMLDivElement; + private textViewerKeyHandler?: (ev: KeyboardEvent) => void; private speechState: SpeechState = "idle"; constructor( @@ -915,6 +955,13 @@ export class ChatPanel { wrapper.appendChild(this.voiceBanner); } + // Live-bubble top rail — an in-flow strip above the messages (so it + // never overlaps the transcript or the scrollbar). Populated by the + // IntersectionObserver below when a live bubble scrolls out of view. + this.topRail = document.createElement("div"); + this.topRail.className = "chat-top-rail"; + wrapper.appendChild(this.topRail); + // Scrollable message area this.messageDiv = document.createElement("div"); this.messageDiv.className = "chat"; @@ -927,6 +974,17 @@ export class ChatPanel { wrapper.appendChild(this.messageDiv); + // Watch live bubbles (dynamic displays / marked progress bubbles) and + // surface a rail chip whenever one leaves the message viewport. Guarded + // for environments without IntersectionObserver (e.g. jsdom tests), in + // which case the rail is simply inert. + if (typeof IntersectionObserver !== "undefined") { + this.liveObserver = new IntersectionObserver( + (entries) => this.onLiveIntersection(entries), + { root: this.messageDiv, threshold: 0 }, + ); + } + // New messages pill — shown when user scrolls away from bottom // Positioned outside messageDiv to avoid column-reverse layout issues this.newMessagesPill = document.createElement("div"); @@ -1012,41 +1070,183 @@ export class ChatPanel { } /** - * Lazily syntax-highlight a logged tool-call block the first time it opens. - * The reasoning engine renders every tool call (single or folded) as a native - *
holding only that call's own JSON (an - * object for one call, an array for a folded run). The
/ - * handles show/hide plus keyboard toggling on its own; we only highlight the - *
 once, when it first becomes visible, so it reads like the clickable
-     * action JSON view (same highlightJson tokens). The `toggle` event does not
-     * bubble, so we listen in the capture phase to keep a single delegated
-     * listener. Each block owns its JSON inline, independent of the enclosing
-     * action's JSON view. Shared by the Electron and VS Code shells.
+     * React to a reasoning block opening for the first time. The reasoning
+     * engine renders each logged tool call and tool result as a native
+     * 
that owns its own content inline (JSON for a call, the full + * result text for a result), so the
/ handles show/hide + * and keyboard toggling on its own. The `toggle` event does not bubble, so + * we listen in the capture phase to keep a single delegated listener. + * - tool call: syntax-highlight its JSON once, when first visible, so it + * reads like the clickable action JSON view (same highlightJson tokens). + * - tool result: add an "open in viewer" affordance so the full result can + * be popped out into a larger view. + * Shared by the Electron and VS Code shells. */ private setupReasoningToolCall() { this.messageDiv.addEventListener( "toggle", (e) => { const details = e.target as HTMLElement | null; - if ( - !details?.classList?.contains("reasoning-tool-call") || - !(details as HTMLDetailsElement).open - ) { + if (!details || !(details as HTMLDetailsElement).open) { return; } - const pre = details.querySelector( - "pre.reasoning-tool-call-json", - ); - if (!pre || pre.dataset.highlighted === "true") return; - // The
 starts as raw (escaped) JSON text; its textContent is
-                // the un-escaped JSON, which highlightJson re-escapes.
-                pre.innerHTML = sanitize(highlightJson(pre.textContent ?? ""));
-                pre.dataset.highlighted = "true";
+                if (details.classList.contains("reasoning-tool-call")) {
+                    const pre = details.querySelector(
+                        "pre.reasoning-tool-call-json",
+                    );
+                    if (!pre || pre.dataset.highlighted === "true") return;
+                    // The 
 starts as raw (escaped) JSON text; its
+                    // textContent is the un-escaped JSON, which highlightJson
+                    // re-escapes.
+                    pre.innerHTML = sanitize(
+                        highlightJson(pre.textContent ?? ""),
+                    );
+                    pre.dataset.highlighted = "true";
+                } else if (
+                    details.classList.contains("reasoning-tool-result")
+                ) {
+                    this.addToolResultViewerButton(
+                        details as HTMLDetailsElement,
+                    );
+                }
             },
             true,
         );
     }
 
+    /**
+     * Add an "open in viewer" affordance to a tool-result block the first time
+     * it expands. The full result text already lives inline in the block's
+     * 
; this lets the user pop it out into a larger, movable view - a
+     * host-native window/editor when the host provides openMessageInWindow
+     * (e.g. the VS Code shell), or an in-page overlay everywhere else (the
+     * Electron shell, web). Idempotent: a second open adds no second button.
+     */
+    private addToolResultViewerButton(details: HTMLDetailsElement) {
+        const summary = details.querySelector(
+            ".reasoning-tool-result-summary",
+        );
+        if (
+            !summary ||
+            summary.querySelector(".reasoning-tool-result-open") !== null
+        ) {
+            return;
+        }
+        const pre = details.querySelector(
+            "pre.reasoning-tool-result-body",
+        );
+        if (!pre) {
+            return;
+        }
+        const button = document.createElement("button");
+        button.type = "button";
+        button.className = "reasoning-tool-result-open";
+        button.title = "Open result in viewer";
+        button.setAttribute("aria-label", "Open tool result in viewer");
+        button.appendChild(iconOpenInWindow());
+        button.addEventListener("click", (ev) => {
+            // Don't let the click toggle the enclosing 
. + ev.preventDefault(); + ev.stopPropagation(); + this.openToolResultViewer(pre.textContent ?? ""); + }); + summary.appendChild(button); + } + + /** + * Show a tool result's full text in a larger view: a host-native + * window/editor when the host supports it (openMessageInWindow), else an + * in-page overlay that works in every host. + */ + private openToolResultViewer(text: string) { + const html = `
${escapeHtml(
+            text,
+        )}
`; + if (this.platformAdapter.openMessageInWindow?.(html, "Tool result")) { + return; + } + this.openTextViewer(text, "Tool result"); + } + + /** + * Open a full-window text viewer overlaying the chat, used as the in-page + * fallback for hosts without a native window. Scrollable, with copy and + * Esc / backdrop / close-button dismissal. Mirrors openImageLightbox. + */ + public openTextViewer(text: string, title = "Tool result") { + this.closeTextViewer(); + + const overlay = document.createElement("div"); + overlay.className = "chat-text-viewer-overlay"; + overlay.tabIndex = -1; + + const panel = document.createElement("div"); + panel.className = "chat-text-viewer-panel"; + + const header = document.createElement("div"); + header.className = "chat-text-viewer-header"; + const titleEl = document.createElement("span"); + titleEl.className = "chat-text-viewer-title"; + titleEl.textContent = title; + header.appendChild(titleEl); + + const copyBtn = document.createElement("button"); + copyBtn.type = "button"; + copyBtn.className = "chat-text-viewer-button"; + copyBtn.textContent = "Copy"; + copyBtn.title = "Copy to clipboard"; + copyBtn.addEventListener("click", () => { + void navigator.clipboard?.writeText(text); + }); + header.appendChild(copyBtn); + + const closeBtn = document.createElement("button"); + closeBtn.type = "button"; + closeBtn.className = "chat-text-viewer-button"; + closeBtn.textContent = "\u00D7"; + closeBtn.title = "Close (Esc)"; + closeBtn.addEventListener("click", () => this.closeTextViewer()); + header.appendChild(closeBtn); + + panel.appendChild(header); + + const body = document.createElement("pre"); + body.className = "chat-text-viewer-body"; + body.textContent = text; + panel.appendChild(body); + + overlay.appendChild(panel); + + const onKey = (ev: KeyboardEvent) => { + if (ev.key === "Escape") { + ev.preventDefault(); + this.closeTextViewer(); + } + }; + // Click on the backdrop (not the panel) dismisses. + overlay.addEventListener("click", (ev) => { + if (ev.target === overlay) this.closeTextViewer(); + }); + document.addEventListener("keydown", onKey); + + this.textViewerOverlay = overlay; + this.textViewerKeyHandler = onKey; + this.rootElement.appendChild(overlay); + overlay.focus(); + } + + /** Tear down the text viewer overlay if it is open. */ + public closeTextViewer() { + if (this.textViewerKeyHandler) { + document.removeEventListener("keydown", this.textViewerKeyHandler); + this.textViewerKeyHandler = undefined; + } + if (this.textViewerOverlay) { + this.textViewerOverlay.remove(); + this.textViewerOverlay = undefined; + } + } + /** * Open a full-window image viewer overlaying the chat. Supports * wheel-zoom centered on the cursor, drag-to-pan, double-click toggle, @@ -2683,7 +2883,10 @@ export class ChatPanel { requestId, ); container.setMessage(content, source, undefined); - this.scrollToBottom(); + // In-place replace (e.g. a live progress bar): keep the viewport at the + // bottom if already there, but don't raise the New-messages pill - the + // bubble is being rewritten, not newly added. + this.scrollToBottom(false); } /** @@ -3871,6 +4074,7 @@ export class ChatPanel { this.threadContainers.clear(); this.notificationContainers.clear(); this.requestAgentContainers.clear(); + this.clearLiveBubbles(); this.currentUserThreadId = undefined; this.pendingThreadDisplayInfo.clear(); this.pendingThreadResult.clear(); @@ -5550,13 +5754,24 @@ export class ChatPanel { source: string, displayId: string, nextRefreshMs: number, + requestId?: string, ) { if (!this.getDynamicDisplay) return; const MIN_INTERVAL = 500; + // When the host passes the originating requestId, refresh the action's + // own bubble in place (a single bubble) rather than a separate + // globe-icon container. Captured now, while the action's bubble is + // still mapped, so it survives the request's thread-container cleanup + // on completion. + const container = + requestId !== undefined + ? this.threadContainers.get(this.resolveThreadId(requestId)) + : undefined; this.dynamicDisplays.push({ source, displayId, nextRefreshTime: Date.now() + Math.max(nextRefreshMs, MIN_INTERVAL), + container, }); this.scheduleDynamicRefresh(); } @@ -5590,27 +5805,54 @@ export class ChatPanel { item.displayId, ); - // Reuse the same container so refreshes replace content + // Prefer the action's own bubble (captured at registration) + // so the live display updates in place. Fall back to a + // standalone container only when the host didn't associate a + // request bubble, keyed so repeat refreshes reuse it. const key = `${item.source}:${item.displayId}`; - let container = this.dynamicContainers.get(key); + let container = item.container; if (!container) { - container = this.createAgentContainer(item.source, "🌐"); - this.dynamicContainers.set(key, container); + container = this.dynamicContainers.get(key); + if (!container) { + container = this.createAgentContainer( + item.source, + "🌐", + ); + this.dynamicContainers.set(key, container); + } } // Replace content (no append mode = replace) container.setMessage(result.content, item.source, undefined); - this.scrollToBottom(); + // In-place tick update, not a new message: don't raise the + // "New messages" pill when the user has scrolled up. + this.scrollToBottom(false); if (result.nextRefreshMs > 0) { + // Still live — track it for the top rail. If the content + // advertises a data-live-title marker (e.g. the player's + // now-playing card), onContainerContentChanged already + // registered it with a rich title + progress percent, so + // don't overwrite that with the generic source label. + if (!container.getLiveMarker()) { + this.registerLiveBubble(container, "dynamic", { + title: item.source, + icon: container.iconText || "🌐", + }); + } this.dynamicDisplays.push({ source: item.source, displayId: item.displayId, nextRefreshTime: Date.now() + Math.max(result.nextRefreshMs, 500), + container: item.container, }); } else { - // Display is done — remove from tracking - this.dynamicContainers.delete(key); + // Display is done — stop tracking. Only drop a standalone + // fallback container; the action's own bubble persists. + this.unregisterLiveBubble(container); + if (item.container === undefined) { + this.dynamicContainers.delete(key); + } } } catch { // Refresh failed — don't re-register @@ -5619,6 +5861,189 @@ export class ChatPanel { this.scheduleDynamicRefresh(); } + // ---- Live-bubble top rail -------------------------------------------- + + /** + * Track (or refresh) a live-updating bubble so a chip appears in the top + * rail while it is scrolled out of view. Safe to call repeatedly to update + * the chip's title / percent. + */ + private registerLiveBubble( + container: AgentMessageContainer, + kind: "dynamic" | "marker", + info: { title: string; icon: string; percent?: number }, + ) { + if (!this.liveObserver) return; + const el = container.div; + let entry = this.liveBubbles.get(el); + if (!entry) { + entry = { + container, + kind, + title: info.title, + icon: info.icon, + percent: info.percent, + pinned: true, + offscreen: false, + position: "in", + }; + this.liveBubbles.set(el, entry); + this.liveObserver.observe(el); + } else { + entry.kind = kind; + entry.title = info.title; + entry.icon = info.icon; + entry.percent = info.percent; + } + this.refreshTopRail(); + } + + /** Stop tracking a bubble and drop its chip. */ + private unregisterLiveBubble(container: AgentMessageContainer) { + const el = container.div; + const entry = this.liveBubbles.get(el); + if (!entry) return; + this.liveObserver?.unobserve(el); + entry.chip?.remove(); + this.liveBubbles.delete(el); + } + + /** Drop all live-bubble tracking (called from clear()). */ + private clearLiveBubbles() { + for (const [el, entry] of this.liveBubbles) { + this.liveObserver?.unobserve(el); + entry.chip?.remove(); + } + this.liveBubbles.clear(); + } + + /** + * Content hook run after any agent bubble renders. Registers the bubble + * with the rail when its content carries a `data-live-title` marker, and + * unregisters marker-tracked bubbles once that marker is gone (e.g. the + * index summary replaces the progress bar). + */ + private onContainerContentChanged(container: AgentMessageContainer) { + const marker = container.getLiveMarker(); + if (marker) { + this.registerLiveBubble(container, "marker", { + title: marker.title, + icon: marker.icon || container.iconText || "⏳", + percent: marker.percent, + }); + } else if (this.liveBubbles.get(container.div)?.kind === "marker") { + this.unregisterLiveBubble(container); + } + } + + private onLiveIntersection(entries: IntersectionObserverEntry[]) { + for (const e of entries) { + const entry = this.liveBubbles.get(e.target as HTMLElement); + if (!entry) continue; + if (e.isIntersecting) { + entry.offscreen = false; + entry.position = "in"; + } else { + entry.offscreen = true; + const rb = e.rootBounds; + entry.position = + rb && e.boundingClientRect.bottom <= rb.top + ? "above" + : "below"; + } + } + this.refreshTopRail(); + } + + /** + * Reconcile the rail: show a chip for each pinned bubble that is currently + * off-screen, remove it otherwise, and refresh chip contents in place. + */ + private refreshTopRail() { + if (!this.topRail) return; + for (const entry of this.liveBubbles.values()) { + const shouldShow = entry.pinned && entry.offscreen; + if (shouldShow && !entry.chip) { + entry.chip = this.buildLiveChip(entry); + this.topRail.appendChild(entry.chip); + } else if (!shouldShow && entry.chip) { + entry.chip.remove(); + entry.chip = undefined; + entry.barFill = undefined; + } + if (entry.chip) this.updateLiveChip(entry); + } + } + + private buildLiveChip(entry: LiveBubbleEntry): HTMLDivElement { + const chip = document.createElement("div"); + chip.className = "chat-live-chip"; + chip.setAttribute("role", "button"); + chip.tabIndex = 0; + + const dir = document.createElement("span"); + dir.className = "chat-live-chip-dir"; + chip.appendChild(dir); + + const icon = document.createElement("span"); + icon.className = "chat-live-chip-icon"; + chip.appendChild(icon); + + const label = document.createElement("span"); + label.className = "chat-live-chip-label"; + chip.appendChild(label); + + if (entry.percent !== undefined) { + const bar = document.createElement("span"); + bar.className = "chat-live-chip-bar"; + const fill = document.createElement("i"); + bar.appendChild(fill); + chip.appendChild(bar); + entry.barFill = fill; + } + + const pin = document.createElement("button"); + pin.className = "chat-live-chip-pin"; + pin.type = "button"; + pin.textContent = "📌"; + pin.title = "Unpin — stop showing this in the rail"; + pin.addEventListener("click", (ev) => { + ev.stopPropagation(); + entry.pinned = false; + this.refreshTopRail(); + }); + chip.appendChild(pin); + + const jump = () => + entry.container.div.scrollIntoView({ + behavior: "smooth", + block: "center", + }); + chip.addEventListener("click", jump); + chip.addEventListener("keydown", (ev) => { + if (ev.key === "Enter" || ev.key === " ") { + ev.preventDefault(); + jump(); + } + }); + return chip; + } + + private updateLiveChip(entry: LiveBubbleEntry) { + const chip = entry.chip; + if (!chip) return; + chip.title = `Jump to ${entry.title}`; + const dir = chip.querySelector(".chat-live-chip-dir"); + if (dir) dir.textContent = entry.position === "above" ? "▲" : "▼"; + const icon = chip.querySelector(".chat-live-chip-icon"); + if (icon) icon.textContent = entry.icon; + const label = chip.querySelector(".chat-live-chip-label"); + if (label) label.textContent = entry.title; + if (entry.barFill && entry.percent !== undefined) { + entry.barFill.style.width = `${entry.percent}%`; + } + } + /** Focus the text input. */ public focus() { this.textInput.focus(); @@ -6197,6 +6622,11 @@ export class ChatPanel { this.settingsView, this.platformAdapter, ); + // Detect the `data-live-title` marker (e.g. the conversation-index + // progress bar) whenever this bubble's content changes, so it can be + // tracked by the top rail. + container.onContentChanged = () => + this.onContainerContentChanged(container); if (threadId !== undefined) { this.attachFeedbackToContainer(container, threadId); } @@ -6315,7 +6745,11 @@ export class ChatPanel { this.scrollToBottom(); } - private scrollToBottom() { + // `notifyIfScrolledAway` controls the "New messages" pill: pass false for + // in-place content updates (e.g. a live progress bar rewriting the same + // bubble) so replacing an existing message does not masquerade as a new + // message when the user has scrolled up. + private scrollToBottom(notifyIfScrolledAway: boolean = true) { // If user has manually scrolled away from bottom, don't auto-scroll. // Show the pill instead so they can choose to jump to new messages. if (this.userHasManuallyScrolled) { @@ -6323,8 +6757,10 @@ export class ChatPanel { this.hideNewMessagesPill(); return; } - this.hasUnseenNewMessages = true; - this.showNewMessagesPill(); + if (notifyIfScrolledAway) { + this.hasUnseenNewMessages = true; + this.showNewMessagesPill(); + } return; } @@ -6424,6 +6860,10 @@ class AgentMessageContainer { private reasoning = false; private readonly collapsedReasoning = new WeakSet(); private lastAppendMode?: DisplayAppendMode; + + // Invoked after this bubble renders content. ChatPanel uses it to detect + // the `data-live-title` marker and track the bubble in the top rail. + public onContentChanged?: () => void; // Mirrors the shell's swapContent pattern: when action JSON is set, // clicking the agent name toggles the message body between the // rendered response and a
 of the action JSON.
@@ -6744,7 +7184,23 @@ class AgentMessageContainer {
      */
     public setActionResultData(result: unknown) {
         if (result === undefined || result === null) return;
-        const json = JSON.stringify(result, undefined, 2);
+        // Prepend a display-only `status` so the inspector shows the outcome
+        // (success vs error) at a glance. It is derived here for display and is
+        // not part of the real ActionResult: the dispatcher marks a failure
+        // with a string `error` field (success results omit it), which is what
+        // we key on.
+        const display =
+            typeof result === "object"
+                ? {
+                      status:
+                          typeof (result as { error?: unknown }).error ===
+                          "string"
+                              ? "error"
+                              : "success",
+                      ...(result as Record),
+                  }
+                : result;
+        const json = JSON.stringify(display, undefined, 2);
         const html = `
${highlightJson(json)}
`; this.resultDiv.innerHTML = sanitize(html); this.actionResultHtml = html; @@ -6795,6 +7251,7 @@ class AgentMessageContainer { ); this.lastAppendMode = appendMode; this.div.classList.remove("chat-message-hidden"); + this.onContentChanged?.(); return; } @@ -6811,6 +7268,7 @@ class AgentMessageContainer { this.lastAppendMode = appendMode; this.div.classList.remove("chat-message-hidden"); + this.onContentChanged?.(); } public setIcon(icon: string) { @@ -6819,6 +7277,33 @@ class AgentMessageContainer { } } + /** The bubble's current avatar glyph (used as a fallback chip icon). */ + public get iconText(): string { + return this.iconDiv.textContent ?? ""; + } + + /** + * If this bubble's content carries a `data-live-title` marker (emitted by + * live progress content such as the conversation-index bar), return its + * title / optional icon / optional percent. Used by the top rail. + */ + public getLiveMarker(): + | { title: string; icon?: string; percent?: number } + | undefined { + const el = + this.messageDiv.querySelector("[data-live-title]"); + if (!el) return undefined; + const title = el.getAttribute("data-live-title") ?? ""; + const icon = el.getAttribute("data-live-icon") ?? undefined; + const pctStr = el.getAttribute("data-live-percent"); + const pct = pctStr !== null ? Number(pctStr) : NaN; + return { + title, + icon, + percent: Number.isFinite(pct) ? pct : undefined, + }; + } + public updateSource(source: string, icon?: string) { if (!this.actionDerivedName) { this.nameSpan.textContent = source; diff --git a/ts/packages/chat-ui/styles/chat.css b/ts/packages/chat-ui/styles/chat.css index 12bb80f56e..0a795dd6b9 100644 --- a/ts/packages/chat-ui/styles/chat.css +++ b/ts/packages/chat-ui/styles/chat.css @@ -1209,6 +1209,79 @@ background: rgba(0, 0, 0, 0.45); } +/* In-page text viewer overlay (openTextViewer) - the fallback for hosts without + a native window (the Electron shell, web). Same backdrop as the image + lightbox; holds a scrollable, themed panel with a header (title + copy/close) + and the full result text. */ +.chat-text-viewer-overlay { + position: fixed; + inset: 0; + z-index: 9000; + display: flex; + align-items: center; + justify-content: center; + background: var(--chat-lightbox-backdrop, rgba(0, 0, 0, 0.75)); + outline: none; +} +.chat-text-viewer-panel { + display: flex; + flex-direction: column; + width: min(900px, 90vw); + height: min(80vh, 900px); + border: 1px solid var(--chat-conversation-border, #d0d0d0); + border-radius: 8px; + background: var( + --chat-conversation-popover-background, + var(--chat-conversation-background, #fff) + ); + color: var(--chat-conversation-foreground, #1f1f1f); + box-shadow: 0 6px 32px + var(--chat-conversation-popover-shadow, rgba(0, 0, 0, 0.4)); + overflow: hidden; +} +.chat-text-viewer-header { + display: flex; + align-items: center; + gap: 8px; + padding: 8px 12px; + border-bottom: 1px solid var(--chat-conversation-border, #d0d0d0); +} +.chat-text-viewer-title { + flex: 1 1 auto; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: 600; + font-size: 13px; +} +.chat-text-viewer-button { + flex: none; + border: 1px solid var(--chat-conversation-button-border, transparent); + border-radius: 6px; + background: var(--chat-conversation-button-background, #e8e8e8); + color: var(--chat-conversation-button-foreground, #1f1f1f); + font: inherit; + font-size: 13px; + line-height: 1; + padding: 6px 10px; + cursor: pointer; +} +.chat-text-viewer-button:hover { + background: var(--chat-conversation-button-hover-background, #dcdcdc); +} +.chat-text-viewer-body { + flex: 1 1 auto; + margin: 0; + padding: 12px 14px; + overflow: auto; + white-space: pre-wrap; + word-break: break-word; + font-family: Consolas, "Courier New", monospace; + font-size: 12.5px; + line-height: 1.5; +} + .chat-message-hidden { display: none; visibility: hidden; @@ -1279,28 +1352,31 @@ table.sc-table { table.sc-table th, table.sc-table td { - /* Final fallback (used where --vscode-* isn't defined, e.g. the Electron - shell) is a mid-gray alpha so borders read on both light and dark. */ - border: 1px solid var(--vscode-editorWidget-border, rgba(127, 127, 127, 0.35)); - padding: 4px 10px; + padding: 5px 10px; text-align: left; vertical-align: top; + /* Let long unbreakable tokens (e.g. slugs like "subagent/prime-83-...") + wrap instead of forcing the table wider than its bubble. `anywhere` (not + `break-word`) also shrinks the column's min-content width, which is what + actually keeps the table from scrolling sideways in a narrow bubble. */ + overflow-wrap: anywhere; } +/* A single header underline plus subtle zebra striping - no full per-cell + grid, which reads as a heavy spreadsheet inside a chat bubble. */ table.sc-table thead th { - background: var( - --chat-conversation-list-hover-background, - rgba(0, 0, 0, 0.06) - ); + background: transparent; color: var(--chat-conversation-foreground, #1f1f1f); font-weight: 600; white-space: nowrap; + border-bottom: 1px solid + var(--vscode-editorWidget-border, rgba(127, 127, 127, 0.4)); } table.sc-table tbody tr:nth-child(even) { /* Mid-gray alpha fallback so the zebra stripe stays visible on the Electron shell's dark bubbles (where --vscode-list-hoverBackground is undefined). */ - background: var(--vscode-list-hoverBackground, rgba(127, 127, 127, 0.12)); + background: var(--vscode-list-hoverBackground, rgba(127, 127, 127, 0.08)); } .sc-cell-number { @@ -1908,6 +1984,83 @@ table.sc-kv-table.sc-card-fields { line-height: 1.4; } +/* Logged tool results inside a reasoning step. Mirrors the tool-call block: a + native
whose is a clickable one-line preview (with an + error marker when the tool failed); expanding it reveals the full result + text. chat-ui appends an "open in viewer" button to the summary the first + time a result opens so large results can be popped out into a bigger view. */ +.reasoning-tool-result { + margin: 2px 0; +} +.reasoning-tool-result-summary { + cursor: pointer; + list-style: none; + display: flex; + align-items: center; + gap: 6px; +} +.reasoning-tool-result-summary::-webkit-details-marker { + display: none; +} +.reasoning-tool-result-summary strong { + flex: none; + font-weight: 600; + color: var(--chat-conversation-success-foreground, #16825d); +} +.reasoning-tool-result-error .reasoning-tool-result-summary strong { + color: var(--chat-conversation-error-foreground, #c42b1c); +} +/* Result preview chip - neutral gray (not the gold tool-name chip) so a result + reads as distinct from a call. Ellipsizes when the preview is wide. */ +.reasoning-tool-result-summary code { + flex: 0 1 auto; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + background: rgba(127, 127, 127, 0.18); + padding: 0 4px; + border-radius: 3px; + font-family: Consolas, "Courier New", monospace; + font-size: 0.95em; +} +/* "Open in viewer" button - pushed to the trailing edge, icon-only. */ +.reasoning-tool-result-open { + flex: none; + margin-left: auto; + display: inline-flex; + align-items: center; + justify-content: center; + width: 22px; + height: 22px; + padding: 0; + border: none; + border-radius: 4px; + background: transparent; + color: inherit; + opacity: 0.55; + cursor: pointer; +} +.reasoning-tool-result-open:hover { + opacity: 1; + background: rgba(127, 127, 127, 0.18); +} +.reasoning-tool-result-body { + margin: 4px 0 0 0; + padding: 8px; + background: rgba(127, 127, 127, 0.1); + border-radius: 6px; + white-space: pre-wrap; + word-break: break-word; + overflow-x: auto; + max-width: 100%; + max-height: 400px; + overflow-y: auto; + font-family: Consolas, "Courier New", monospace; + font-size: 12px; + line-height: 1.4; +} + /* ========================================================================= Choice Panel ========================================================================= */ @@ -3337,6 +3490,107 @@ span.ansi-bright-white-fg { transform: translateX(-50%) scale(0.98); } +/* ========================================================================= + Live-bubble Top Rail + In-flow strip above the messages (never overlaps the transcript or the + scrollbar). Shows a compact chip for each live-updating bubble (agent + dynamic displays, the conversation-index progress bar) once it scrolls out + of view. Self-contained colors (shared with the New-messages pill) so it + reads on both light and dark host themes. + ========================================================================= */ + +.chat-top-rail { + flex: 0 0 auto; + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 6px; + padding: 6px 8px; + border-bottom: 1px solid rgba(127, 127, 127, 0.18); +} + +.chat-top-rail:empty { + display: none; +} + +.chat-live-chip { + display: inline-flex; + align-items: center; + gap: 8px; + max-width: 100%; + padding: 4px 6px 4px 10px; + background-color: var(--chat-new-messages-bg, #0066bf); + color: var(--chat-new-messages-fg, #ffffff); + border-radius: 999px; + font-size: 12px; + cursor: pointer; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18); + user-select: none; +} + +.chat-live-chip:hover { + background-color: var(--chat-new-messages-bg-hover, #0052a3); +} + +.chat-live-chip-dir { + font-size: 10px; + opacity: 0.85; +} + +.chat-live-chip-icon { + font-size: 13px; + line-height: 1; + animation: chat-live-pulse 1.8s ease-in-out infinite; +} + +@keyframes chat-live-pulse { + 0%, + 100% { + opacity: 1; + } + 50% { + opacity: 0.45; + } +} + +.chat-live-chip-label { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 220px; +} + +.chat-live-chip-bar { + flex: 0 0 40px; + height: 5px; + border-radius: 3px; + background: rgba(255, 255, 255, 0.3); + overflow: hidden; +} + +.chat-live-chip-bar > i { + display: block; + height: 100%; + width: 0%; + background: #fff; + transition: width 0.3s ease; +} + +.chat-live-chip-pin { + border: 0; + background: transparent; + color: inherit; + cursor: pointer; + font-size: 13px; + line-height: 1; + padding: 2px 4px; + border-radius: 6px; +} + +.chat-live-chip-pin:hover { + background: rgba(255, 255, 255, 0.18); +} + /* ========================================================================= Status Notice (persistent, dismissible corner toast <-> pinned pill) Rendered by ChatPanel.showStatusNotice(). Self-contained colors (no theme diff --git a/ts/packages/chat-ui/test/chatPanel.spec.ts b/ts/packages/chat-ui/test/chatPanel.spec.ts index 59650cdb69..60144cb73c 100644 --- a/ts/packages/chat-ui/test/chatPanel.spec.ts +++ b/ts/packages/chat-ui/test/chatPanel.spec.ts @@ -23,11 +23,17 @@ function makePanel(opts?: { attachments: string[] | undefined, requestId: string, ) => void; + openMessageInWindow?: (html: string, title?: string) => boolean; }) { const root = document.createElement("div"); document.body.appendChild(root); const panel = new ChatPanel(root, { - platformAdapter: { handleLinkClick() {} }, + platformAdapter: { + handleLinkClick() {}, + ...(opts?.openMessageInWindow + ? { openMessageInWindow: opts.openMessageInWindow } + : {}), + }, onCancel: opts?.onCancel, onSend: opts?.onSend, }); @@ -1266,6 +1272,134 @@ describe("reasoning tool calls (single + folded)", () => { }); }); +describe("reasoning tool results", () => { + // Mirrors what the reasoning engine emits for a tool result: a native + //
with a one-line preview summary + // and a
 holding the full result text, collapsed until opened.
+    const resultHtml =
+        '
' + + '\u21B3 ' + + "Found 3 matches: alpha beta" + + '
Found 3 matches:\nalpha\nbeta
' + + "
"; + + const fullText = "Found 3 matches:\nalpha\nbeta"; + + function addResult(panel: ChatPanel, html: string = resultHtml) { + panel.addUserMessage("run a tool", "req-1"); + panel.addAgentMessage( + { type: "markdown", content: html, kind: "info" }, + "dispatcher.reasoningAction.copilot", + undefined, + "step", + "req-1", + ); + } + + function openResult(root: HTMLElement): HTMLDetailsElement { + const details = root.querySelector( + "details.reasoning-tool-result", + )!; + details.open = true; + details.dispatchEvent(new Event("toggle")); + return details; + } + + it("renders the result collapsed with a preview and the full body inline", () => { + const { root, panel } = makePanel(); + addResult(panel); + const details = root.querySelector( + "details.reasoning-tool-result", + ); + expect(details).not.toBeNull(); + expect(details!.open).toBe(false); + expect( + root.querySelector(".reasoning-tool-result-summary code")! + .textContent, + ).toBe("Found 3 matches: alpha beta"); + const pre = root.querySelector( + "pre.reasoning-tool-result-body", + )!; + expect(pre.textContent).toBe(fullText); + }); + + it("adds an 'open in viewer' button the first time the result opens (only once)", () => { + const { root, panel } = makePanel(); + addResult(panel); + expect(root.querySelector(".reasoning-tool-result-open")).toBeNull(); + openResult(root); + expect( + root.querySelectorAll(".reasoning-tool-result-open"), + ).toHaveLength(1); + // Closing and re-opening does not add a second button. + const details = root.querySelector( + "details.reasoning-tool-result", + )!; + details.open = false; + details.dispatchEvent(new Event("toggle")); + details.open = true; + details.dispatchEvent(new Event("toggle")); + expect( + root.querySelectorAll(".reasoning-tool-result-open"), + ).toHaveLength(1); + }); + + it("opens the in-page text viewer with the full result when no host window is available", () => { + const { root, panel } = makePanel(); + addResult(panel); + openResult(root); + root.querySelector( + ".reasoning-tool-result-open", + )!.click(); + const overlay = root.querySelector( + ".chat-text-viewer-overlay", + ); + expect(overlay).not.toBeNull(); + expect( + overlay!.querySelector(".chat-text-viewer-body")! + .textContent, + ).toBe(fullText); + // Esc dismisses the overlay. + document.dispatchEvent(new KeyboardEvent("keydown", { key: "Escape" })); + expect(root.querySelector(".chat-text-viewer-overlay")).toBeNull(); + }); + + it("hands the full result to the host window when openMessageInWindow is provided", () => { + const openMessageInWindow = jest.fn( + (_html: string, _title?: string) => true, + ); + const { root, panel } = makePanel({ openMessageInWindow }); + addResult(panel); + openResult(root); + root.querySelector( + ".reasoning-tool-result-open", + )!.click(); + expect(openMessageInWindow).toHaveBeenCalledTimes(1); + const [html, title] = openMessageInWindow.mock.calls[0]; + expect(html).toContain("Found 3 matches:"); + expect(title).toBe("Tool result"); + // The host handled it, so no in-page overlay is created. + expect(root.querySelector(".chat-text-viewer-overlay")).toBeNull(); + }); + + it("keeps the viewer-button click from toggling the details", () => { + const { root, panel } = makePanel(); + addResult(panel); + const details = openResult(root); + const button = root.querySelector( + ".reasoning-tool-result-open", + )!; + const ev = new MouseEvent("click", { + bubbles: true, + cancelable: true, + }); + button.dispatchEvent(ev); + // A real summary click toggles the
; the button suppresses it. + expect(ev.defaultPrevented).toBe(true); + expect(details.open).toBe(true); + }); +}); + describe("question form wizard (paged)", () => { const form: QuestionForm = { message: "Q", @@ -1567,4 +1701,42 @@ describe("ChatPanel action result inspector", () => { const pre = root.querySelector(".chat-message-result pre.chat-json"); expect(pre?.textContent).toContain("later"); }); + + it("prepends a display-only success status for a non-error result", () => { + const { root, panel } = makePanel(); + panel.addUserMessage("do it", "req-1"); + panel.addAgentMessage("done", "agent", undefined, undefined, "req-1"); + + panel.appendDiagnosticData("req-1", { + type: "actionResult", + source: "agent", + actionIndex: 0, + result: { entities: [] }, + }); + + const pre = root.querySelector(".chat-message-result pre.chat-json"); + expect(pre).not.toBeNull(); + expect(pre!.textContent).toContain("status"); + expect(pre!.textContent).toContain("success"); + expect(pre!.textContent).not.toContain("error"); + }); + + it("labels a result carrying an error with status error", () => { + const { root, panel } = makePanel(); + panel.addUserMessage("do it", "req-1"); + panel.addAgentMessage("done", "agent", undefined, undefined, "req-1"); + + panel.appendDiagnosticData("req-1", { + type: "actionResult", + source: "agent", + actionIndex: 0, + result: { error: "boom" }, + }); + + const pre = root.querySelector(".chat-message-result pre.chat-json"); + expect(pre).not.toBeNull(); + expect(pre!.textContent).toContain("status"); + expect(pre!.textContent).toContain("error"); + expect(pre!.textContent).toContain("boom"); + }); }); diff --git a/ts/packages/cli/src/commands/conversations/search.ts b/ts/packages/cli/src/commands/conversations/search.ts new file mode 100644 index 0000000000..2f64308bf9 --- /dev/null +++ b/ts/packages/cli/src/commands/conversations/search.ts @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { Args, Command, Flags } from "@oclif/core"; +import { + connectAgentServer, + AGENT_SERVER_DEFAULT_PORT, +} from "@typeagent/agent-server-client"; +import type { ConversationContentMatch } from "@typeagent/agent-server-client"; + +function formatTable(matches: ConversationContentMatch[]): string { + if (matches.length === 0) { + return "No conversations with matching content found."; + } + + const rows = matches.map((m) => ({ + score: m.score.toFixed(2), + id: m.conversation.conversationId, + name: m.conversation.name ?? "", + snippet: m.snippets[0] ?? "", + })); + + const scoreWidth = Math.max( + "SCORE".length, + ...rows.map((r) => r.score.length), + ); + const idWidth = Math.max( + "CONVERSATION ID".length, + ...rows.map((r) => r.id.length), + ); + const nameWidth = Math.max( + "NAME".length, + ...rows.map((r) => r.name.length), + ); + + const header = [ + "SCORE".padEnd(scoreWidth), + "CONVERSATION ID".padEnd(idWidth), + "NAME", + ].join(" "); + const separator = [ + "-".repeat(scoreWidth), + "-".repeat(idWidth), + "-".repeat(nameWidth), + ].join(" "); + // Each match renders as a row, followed by its best snippet (indented) when + // one is available. + const body = rows.flatMap((r) => { + const line = [ + r.score.padEnd(scoreWidth), + r.id.padEnd(idWidth), + r.name, + ].join(" "); + return r.snippet ? [line, ` ${r.snippet}`] : [line]; + }); + return [header, separator, ...body].join("\n"); +} + +export default class ConversationsSearch extends Command { + static description = + "Search the CONTENT of conversations (knowPro message index). Usage: conversations search [--max N]"; + static flags = { + port: Flags.integer({ + description: "Port for type agent server", + default: AGENT_SERVER_DEFAULT_PORT, + }), + max: Flags.integer({ + description: "Maximum number of matches to return", + default: 10, + }), + }; + static args = { + query: Args.string({ + description: "Text to search for within conversation content", + required: true, + }), + }; + + async run(): Promise { + const { args, flags } = await this.parse(ConversationsSearch); + const url = `ws://localhost:${flags.port}`; + const connection = await connectAgentServer(url); + try { + const matches = await connection.searchConversationContent( + args.query, + flags.max, + ); + this.log(formatTable(matches)); + } finally { + await connection.close(); + } + } +} diff --git a/ts/packages/cli/src/conversationCommands.ts b/ts/packages/cli/src/conversationCommands.ts index 0bd83af0ef..27dd68478f 100644 --- a/ts/packages/cli/src/conversationCommands.ts +++ b/ts/packages/cli/src/conversationCommands.ts @@ -134,6 +134,13 @@ function parseSlashCommand(args: string): ParsedCommand { } return { ok: true, payload: { subcommand: "find", query } }; } + case "search": { + const query = parseNameArg(subArgs); + if (!query) { + return { ok: false, usage: "@conversation search " }; + } + return { ok: true, payload: { subcommand: "search", query } }; + } case "info": return { ok: true, payload: { subcommand: "info" } }; case "prev": @@ -175,7 +182,7 @@ function parseSlashCommand(args: string): ParsedCommand { default: return { ok: false, - usage: `Unknown subcommand '${sub}'. Available: new, switch, list, find, info, rename, delete`, + usage: `Unknown subcommand '${sub}'. Available: new, switch, list, find, search, info, rename, delete`, }; } } @@ -188,6 +195,7 @@ function colorizeQuotedNames(message: string): string { return message.replace(/"([^"]+)"/g, (_, name) => `'${chalk.green(name)}'`); } +// code-complexity-allow: switch handler for all conversation result kinds; each case is straightforward but there are many function renderResult(result: ConversationActionResult): void { switch (result.kind) { case "ok": @@ -273,6 +281,34 @@ function renderResult(result: ConversationActionResult): void { console.log(""); break; } + case "contentMatches": { + // eslint-disable-next-line no-console + console.log( + chalk.bold( + `\nContent matches for '${chalk.green(result.query)}':`, + ), + ); + const currentId = result.currentConversationId; + for (const m of result.matches) { + const c = m.conversation; + const isCurrent = c.conversationId === currentId; + const marker = isCurrent ? "\u25b8 " : " "; + const pct = chalk.dim(`(${Math.round(m.score * 100)}%)`); + const line = `${marker}${c.name} ${pct}${ + isCurrent ? " (current)" : "" + }`; + // eslint-disable-next-line no-console + console.log(isCurrent ? chalk.green(line) : line); + const snippet = m.snippets[0]; + if (snippet) { + // eslint-disable-next-line no-console + console.log(chalk.dim(` ${snippet}`)); + } + } + // eslint-disable-next-line no-console + console.log(""); + break; + } } } @@ -354,6 +390,8 @@ function printHelp(): void { "Switch to the previous conversation in the list (wraps around)", ], ["list []", "List all conversations"], + ["find ", "Find conversations by name"], + ["search ", "Search conversation content"], ["info", "Show info about the current conversation"], ["rename ", "Rename the current conversation"], ["delete ", "Delete a conversation by name"], diff --git a/ts/packages/cli/src/enhancedConsole.ts b/ts/packages/cli/src/enhancedConsole.ts index 237ac1a6b2..9600df3f2e 100644 --- a/ts/packages/cli/src/enhancedConsole.ts +++ b/ts/packages/cli/src/enhancedConsole.ts @@ -1580,6 +1580,7 @@ export function createEnhancedClientIO( subcommand: string; name?: string; newName?: string; + query?: string; }; const convCtx = getConversationCommandContext(); if (!convCtx) { @@ -1608,6 +1609,12 @@ export function createEnhancedClientIO( case "next": args = "next"; break; + case "find": + args = `find "${payload.query ?? ""}"`; + break; + case "search": + args = `search "${payload.query ?? ""}"`; + break; case "delete": args = `delete "${payload.name}"`; break; diff --git a/ts/packages/coda/README.AUTOGEN.md b/ts/packages/coda/README.AUTOGEN.md index 01d055d120..343889d54e 100644 --- a/ts/packages/coda/README.AUTOGEN.md +++ b/ts/packages/coda/README.AUTOGEN.md @@ -3,7 +3,7 @@ - + # agent-coda — AI-generated documentation @@ -12,19 +12,19 @@ ## Overview -The `agent-coda` package is a TypeScript library that powers the Coda Operated Assistance (CODA) system, a voice-controlled coding assistant designed for Visual Studio Code (VSCode). It integrates with the TypeAgent shell or CLI to enable developers to perform coding tasks and manage their workspace using natural language commands. This package enhances accessibility and productivity by enabling hands-free interaction with the VSCode environment. +The `agent-coda` package is a TypeScript library that powers the Coda Operated Assistance (CODA) system, a voice-controlled coding assistant for Visual Studio Code (VSCode). It integrates with the TypeAgent shell or CLI to enable developers to perform coding tasks and manage their workspace using natural language commands. This package is designed to enhance accessibility and streamline workflows by enabling hands-free interaction with the VSCode environment. ## What it does -The `agent-coda` package provides a suite of actions that allow users to interact with VSCode through voice commands. These actions are categorized as follows: +The `agent-coda` package provides a wide range of actions that allow users to interact with VSCode through voice commands. These actions are grouped into several categories: -- **File and Code Management**: Actions like `createFile`, `openFile`, and `getFileContent` enable users to create, open, and manage files. Additional actions such as `getSelection` and `getDiagnostics` provide insights into the current state of the editor. -- **Editor Layout and Navigation**: The `changeEditorColumns` action allows users to adjust the editor layout (e.g., single, double, or triple columns). Other actions facilitate navigation and management of open editors and workspace folders. -- **Extension Management**: Actions such as `checkExtensionAvailable` and `fetchTopExtensions` enable users to search for, install, and manage VSCode extensions. -- **Debugging**: The `startDebugging` action allows users to initiate debugging sessions with specific configurations. -- **Workbench Operations**: Actions like `handleWorkBenchActions` enable users to manage workspace folders, open files, and perform other workbench-related tasks. +- **File and Code Management**: Actions like `createFile`, `openFile`, and `getFileContent` allow users to create, open, and manage files. Additional actions such as `getSelection` and `getDiagnostics` provide insights into the current state of the editor. +- **Editor Layout and Navigation**: The `changeEditorColumns` action enables users to adjust the editor layout (e.g., single, double, or triple columns). Other actions facilitate navigation and management of open editors and workspace folders. +- **Extension Management**: Actions such as `checkExtensionAvailable` and `fetchTopExtensions` allow users to search for, install, and manage VSCode extensions. +- **Debugging**: The `startDebugging` action enables users to initiate debugging sessions with specific configurations. +- **Workbench Operations**: Actions like `handleWorkBenchActions` allow users to manage workspace folders, open files, and perform other workbench-related tasks. -These capabilities allow developers to perform common development tasks hands-free, improving accessibility and streamlining workflows. +These capabilities enable developers to perform common development tasks hands-free, enhancing productivity and accessibility. ## Setup @@ -71,7 +71,7 @@ The `agent-coda` extension is designed to work in conjunction with the TypeAgent The `agent-coda` package is organized into several key files, each responsible for specific functionalities: -- [codeUtils.ts](./src/codeUtils.ts): Provides utility functions for code manipulation, such as ensuring proper syntax closures and generating documentation comments. +- [codeUtils.ts](./src/codeUtils.ts): Contains utility functions for code manipulation, such as ensuring proper syntax closures and generating documentation comments. - [commandAliasMgr.ts](./src/commandAliasMgr.ts): Manages command aliases to simplify the recognition and execution of voice commands. - [extension.ts](./src/extension.ts): The main entry point for the VSCode extension, responsible for activation, command registration, and initializing WebSocket connections. - [handleDebugActions.ts](./src/handleDebugActions.ts): Implements debugging-related actions, such as starting debugging sessions with specific configurations. @@ -137,6 +137,6 @@ _2 environment variables referenced from `./src/` (set in `ts/.env` or your shel --- -_Auto-generated against commit `95c8336eb7cd853020fc28cbc98b6380676e73f3` on `2026-07-30T17:32:13.295Z` by `docs-generate.yml`. Links validated at that commit; the working tree may have drifted by up to 24h. Re-run `pnpm --filter agent-coda docs:verify-links` to spot-check._ +_Auto-generated against commit `5a7bdd3625eef42d75702c9fd9f0dadb7cb10410` on `2026-07-29T05:15:39.538Z` by `docs-generate.yml`. Links validated at that commit; the working tree may have drifted by up to 24h. Re-run `pnpm --filter agent-coda docs:verify-links` to spot-check._ diff --git a/ts/packages/coda/package.json b/ts/packages/coda/package.json index f2529452b7..3724db404d 100644 --- a/ts/packages/coda/package.json +++ b/ts/packages/coda/package.json @@ -29,8 +29,8 @@ "prettier": "prettier --check . --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", "pretest": "pnpm run build", - "test-compile": "tsc -p ./src", "test:full": "vscode-test", + "test-compile": "tsc -p ./src", "vscode:prepublish": "pnpm run esbuild-base --minify", "watch": "tsc -w" }, diff --git a/ts/packages/defaultAgentProvider/data/config.json b/ts/packages/defaultAgentProvider/data/config.json index 21b273c1da..2e7f5e533a 100644 --- a/ts/packages/defaultAgentProvider/data/config.json +++ b/ts/packages/defaultAgentProvider/data/config.json @@ -101,10 +101,6 @@ }, "ipconfig": { "name": "@typeagent/ipconfig-agent" - }, - "selfhelp": { - "name": "@typeagent/selfhelp-agent", - "execMode": "dispatcher" } }, "mcpServers": { diff --git a/ts/packages/defaultAgentProvider/package.json b/ts/packages/defaultAgentProvider/package.json index a705459215..0d199c3c40 100644 --- a/ts/packages/defaultAgentProvider/package.json +++ b/ts/packages/defaultAgentProvider/package.json @@ -68,7 +68,6 @@ "@typeagent/photo-agent": "workspace:*", "@typeagent/powershell-typeagent": "workspace:*", "@typeagent/screencapture-agent": "workspace:*", - "@typeagent/selfhelp-agent": "workspace:*", "@typeagent/studio-agent": "workspace:*", "@typeagent/taskflow-typeagent": "workspace:*", "@typeagent/telemetry": "workspace:*", diff --git a/ts/packages/dispatcher/dispatcher/README.md b/ts/packages/dispatcher/dispatcher/README.md index 616fb40675..6342a87b70 100644 --- a/ts/packages/dispatcher/dispatcher/README.md +++ b/ts/packages/dispatcher/dispatcher/README.md @@ -129,8 +129,9 @@ enabling it. - `@describe ` — detailed explanation of one action, including its parameters. - `@describe ` — same as above when the action name alone is unambiguous across agents. -Also reachable via natural language (the `system.describe` schema), e.g. "what can the spotify -agent do", "show me all of spotify's actions", "what does the play action do". +Also reachable via natural language (the `system.help` schema's `describeAgent`/`describeAction` +actions), e.g. "what can the spotify agent do", "show me all of spotify's actions", "what does the +play action do". ### Conversations diff --git a/ts/packages/dispatcher/dispatcher/package.json b/ts/packages/dispatcher/dispatcher/package.json index c5a8d9afd5..addf7761eb 100644 --- a/ts/packages/dispatcher/dispatcher/package.json +++ b/ts/packages/dispatcher/dispatcher/package.json @@ -64,6 +64,7 @@ "@typeagent/image-memory": "workspace:*", "@typeagent/knowledge-processor": "workspace:*", "@typeagent/knowpro": "workspace:*", + "@typeagent/selfhelp": "workspace:*", "@typeagent/taskflow-typeagent": "workspace:*", "@typeagent/telemetry": "workspace:*", "@typeagent/typechat-utils": "workspace:*", diff --git a/ts/packages/dispatcher/dispatcher/src/context/commandHandlerContext.ts b/ts/packages/dispatcher/dispatcher/src/context/commandHandlerContext.ts index 83ab546472..b119e89597 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/commandHandlerContext.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/commandHandlerContext.ts @@ -203,8 +203,92 @@ export type CopilotImporter = ( export type ConversationContentSink = ( text: string, sender: "user" | "assistant", + turnKey?: string, ) => void; +/** + * Host-provided cross-conversation content search over the unified message + * index. Returns the best-matching conversations (id + name) with a relevance + * score in [0, 1] and representative snippets, best first. Injected by the + * agent-server; undefined for hosts without a unified content index. + */ +export type ConversationSearcher = ( + query: { question?: string | undefined; terms?: string[] | undefined }, + maxMatches?: number, +) => Promise< + { + conversationId: string; + name: string; + score: number; + snippets: string[]; + }[] +>; + +/** + * The result of summarizing a conversation (see {@link ConversationSummarizer}): + * the summary text, or why one could not be produced. + */ +export type ConversationSummaryResult = + | { kind: "ok"; conversationId: string; name: string; summary: string } + | { kind: "not-found"; query: string } + | { kind: "empty"; conversationId: string; name: string } + | { kind: "unavailable"; reason: string }; + +/** + * Host-provided conversation summarizer. Resolves a conversation by name or + * topic (or the current one when omitted), reads its stored transcript, and + * returns an LLM-written summary. Injected by the agent-server; undefined for + * hosts without stored conversations. + */ +export type ConversationSummarizer = ( + nameOrTopic?: string | undefined, +) => Promise; + +/** + * Which conversations a content-index backfill should cover: the one the + * command ran in (`current`), a specific one (`named`), or every conversation + * (`all`). + */ +export type ConversationIndexTarget = + | { scope: "current" } + | { scope: "all" } + | { scope: "named"; name: string }; + +/** Per-conversation outcome of a content-index backfill. */ +export type ConversationIndexResult = { + indexed: { + name: string; + /** User turns newly added to the index by this backfill. */ + newlyIndexed: number; + /** Total user turns in the conversation (already-indexed + new). */ + totalMessages: number; + }[]; + /** Set to the requested name when a `named` target matched nothing. */ + notFound?: string; +}; + +/** Progress of an in-flight content-index backfill (user turns). */ +export type ConversationIndexProgress = { + /** User turns indexed and persisted so far. */ + done: number; + /** Total user turns this backfill will index. */ + total: number; + /** Name of the conversation whose turns are currently being indexed. */ + name: string; +}; + +/** + * Host-provided backfill of conversation history into the unified content + * index (see {@link ConversationSearcher}). Indexes the user turns not already + * present so past conversations become searchable. `onProgress` (optional) is + * called as turns are indexed, for a live progress display. Injected by the + * agent-server; undefined for hosts without a unified content index. + */ +export type ConversationIndexer = ( + target: ConversationIndexTarget, + onProgress?: (progress: ConversationIndexProgress) => void, +) => Promise; + // A request-scoped route chosen by the registry-first contextSelector tier // (§11.4) when the topical winner is a neighborhood sibling with no cache // MatchResult. Unlike `collisionOneShotPicks` (durable, cross-turn, explicit @@ -268,6 +352,24 @@ export type CommandHandlerContext = { * without a unified index. */ readonly conversationContentSink?: ConversationContentSink | undefined; + /** + * Host-provided cross-conversation content search (see + * {@link ConversationSearcher}). Injected by the agent-server; undefined + * for hosts without a unified content index. + */ + readonly searchConversations?: ConversationSearcher | undefined; + /** + * Host-provided conversation summarizer (see {@link ConversationSummarizer}). + * Injected by the agent-server; undefined for hosts without stored + * conversations. + */ + readonly summarizeConversation?: ConversationSummarizer | undefined; + /** + * Host-provided backfill of conversation history into the unified content + * index (see {@link ConversationIndexer}). Injected by the agent-server; + * undefined for hosts without a unified content index. + */ + readonly indexConversations?: ConversationIndexer | undefined; // Per activation configs developerMode?: boolean; // When true, each translated request is confirmed via the client @@ -304,6 +406,12 @@ export type CommandHandlerContext = { // is disposed on session close. subagentManager?: SubagentManager | undefined; commandResult?: CommandResult | undefined; + // Monotonic count of non-transient display output sent to the client this + // session. executeAction snapshots it around an agent's executeAction call + // to tell whether the action (or a command it delegated to) already showed + // visible output, so it can skip the redundant "Action ... completed." + // bubble. Transient status (appendDisplay mode "temporary") does not count. + displayCount: number; chatHistory: ChatHistory; constructionProvider?: ConstructionProvider | undefined; displayLog: DisplayLog; @@ -512,6 +620,27 @@ export type DispatcherOptions = DeepPartialUndefined & { * by the agent-server; omitted by standalone hosts. */ conversationContentSink?: ConversationContentSink | undefined; + + /** + * Cross-conversation content search over the host's unified message index + * (see {@link ConversationSearcher}). Injected by the agent-server; + * omitted by standalone hosts without a unified index. + */ + searchConversations?: ConversationSearcher | undefined; + + /** + * Conversation summarizer over the host's stored transcripts (see + * {@link ConversationSummarizer}). Injected by the agent-server; omitted by + * standalone hosts. + */ + summarizeConversation?: ConversationSummarizer | undefined; + + /** + * Backfill of conversation history into the host's unified content index + * (see {@link ConversationIndexer}). Injected by the agent-server; omitted + * by standalone hosts without a unified index. + */ + indexConversations?: ConversationIndexer | undefined; }; async function getSession( @@ -1116,6 +1245,9 @@ export async function initializeCommandHandlerContext( getConversationList: options?.getConversationList, copilotImport: options?.copilotImport, conversationContentSink: options?.conversationContentSink, + searchConversations: options?.searchConversations, + summarizeConversation: options?.summarizeConversation, + indexConversations: options?.indexConversations, // Runtime context commandLock: createLimiter(1), // Make sure we process one command at a time. @@ -1148,6 +1280,7 @@ export async function initializeCommandHandlerContext( promptLogger, devTrace, batchMode: false, + displayCount: 0, pendingChoiceRoutes: new Map(), instanceDirLock, constructionProvider, diff --git a/ts/packages/dispatcher/dispatcher/src/context/dispatcher/handlers/requestCommandHandler.ts b/ts/packages/dispatcher/dispatcher/src/context/dispatcher/handlers/requestCommandHandler.ts index fddbc17417..9480d5765f 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/dispatcher/handlers/requestCommandHandler.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/dispatcher/handlers/requestCommandHandler.ts @@ -433,6 +433,7 @@ function findMatchedGrammarRule( ); return matched ? { rule: matched.text, segments: matched.segments } : {}; } + // Derive example same-meaning rephrasings from a V5 explanation, each broken // into per-category segments (so the client can color them like the phrase): // substitute each non-property sub-phrase's synonyms, and add the explainer's @@ -495,195 +496,6 @@ function buildGeneralizations( return result; } -async function cacheUserAttachments( - systemContext: CommandHandlerContext, - attachments?: string[], -): Promise { - const cachedAttachments: CachedImageWithDetails[] = []; - if (!attachments || systemContext.session.sessionDirPath === undefined) { - return cachedAttachments; - } - for (const attachment of attachments) { - const [attachmentName, tags]: [string, ExifReader.Tags] = - await systemContext.session.storeUserSuppliedFile(attachment); - cachedAttachments.push( - new CachedImageWithDetails(tags, attachmentName, attachment), - ); - } - return cachedAttachments; -} - -function shouldBypassTranslationForReasoning( - request: string, - systemContext: CommandHandlerContext, -): boolean { - if (systemContext.noReasoning) { - return false; - } - const reasoningPrefixes = ["learn:", "dev:", "remember how to ", "record "]; - const lowerRequest = request.trimStart().toLowerCase(); - return ( - process.env.CLAUDE_FORCE_REASONING === "1" || - reasoningPrefixes.some((prefix) => lowerRequest.startsWith(prefix)) - ); -} - -function recordRequestContext( - context: ActionContext, - systemContext: CommandHandlerContext, - request: string, - cachedAttachments: CachedImageWithDetails[], - history: ReturnType, -): void { - context.actionIO.appendDiagnosticData({ - type: "translationContext", - entities: history?.entities ?? [], - activityContext: history?.activityContext, - }); - if (systemContext.session.getConfig().execution.recordUserMessages) { - addUserMessageToHistory(systemContext, request, cachedAttachments); - } - if (systemContext.userRequestKnowledgeExtraction === true) { - addRequestToMemory(systemContext, request); - } -} - -async function interpretRequestWithLogging( - context: ActionContext, - systemContext: CommandHandlerContext, - request: string, - cachedAttachments: CachedImageWithDetails[], - history: ReturnType, -): Promise { - try { - return await interpretRequest( - context, - request, - cachedAttachments, - history, - ); - } catch (e: any) { - if (systemContext.userRequestKnowledgeExtraction === true) { - addResultToMemory( - systemContext, - `Error translating request '${request}': ${e.message}`, - DispatcherName, - ); - } - systemContext?.logger?.logEvent("request:exception", { - request, - message: e.message, - stack: e.stack, - }); - throw e; - } -} - -function canUseInteractiveCollisionClarify( - systemContext: CommandHandlerContext, -): boolean { - return ( - systemContext.session.getConfig().collision.preference.enabled && - systemContext.session.getConfig().collision.preference.remember !== - "never" - ); -} - -function needsReasoningFallback( - requestAction: RequestAction, - systemContext: CommandHandlerContext, -): boolean { - const interactiveCollisionClarify = - canUseInteractiveCollisionClarify(systemContext); - return requestAction.actions.some( - ({ action }) => - isUnknownAction(action) || - (action.schemaName === DispatcherClarifyName && - !( - interactiveCollisionClarify && - action.actionName === "clarifyMultipleAgentMatches" - )), - ); -} - -async function tryReasoningFallback( - systemContext: CommandHandlerContext, - context: ActionContext, - request: string, - requestAction: RequestAction, -): Promise { - if ( - systemContext.noReasoning || - !needsReasoningFallback(requestAction, systemContext) - ) { - return false; - } - try { - await runConfiguredReasoning(request, context); - return true; - } catch (e: any) { - debugRequest( - `Reasoning fallback failed, using default handler: ${e.message}`, - ); - return false; - } -} - -function needsErrorReasoning( - systemContext: CommandHandlerContext, - requestAction: RequestAction, -): boolean { - return requestAction.actions.some(({ action }) => { - try { - return ( - systemContext.agents.getActionConfig(action.schemaName) - .errorReasoning === true - ); - } catch { - return false; - } - }); -} - -async function tryErrorReasoningFallback( - systemContext: CommandHandlerContext, - context: ActionContext, - request: string, - requestAction: RequestAction, - execResult: NonNullable>>, -): Promise { - if ( - systemContext.noReasoning || - !execResult.fallbackToReasoning || - !needsErrorReasoning(systemContext, requestAction) - ) { - return false; - } - - const { error, failedAction } = execResult; - const augmentedRequest = - `[Context: A direct action dispatch failed.\n` + - `Action: ${JSON.stringify(failedAction.action, undefined, 2)}\n` + - `Error: "${error}"\n` + - `Please handle the following request using the available tools.]\n\n` + - request; - try { - displayStatus("Action failed — retrying with reasoning...", context); - await runConfiguredReasoning(augmentedRequest, context, { - fallbackContext: { - failedSchema: failedAction.action.schemaName, - failedAction: failedAction.action.actionName, - error, - }, - }); - return true; - } catch (e: any) { - debugRequest( - `Error-triggered reasoning failed, keeping original error: ${e.message}`, - ); - return false; - } -} async function requestExplain( context: CommandHandlerContext, attachments: CachedImageWithDetails[] | undefined, @@ -831,6 +643,7 @@ export class RequestCommandHandler implements CommandHandler { }, }, } as const; + // code-complexity-allow: helper logic inlined from removed stand-alone helpers; request dispatch is inherently branchy public async run( context: ActionContext, params: ParsedCommandParams, @@ -851,10 +664,26 @@ export class RequestCommandHandler implements CommandHandler { } // store attachments for later reuse - const cachedAttachments = await cacheUserAttachments( - systemContext, - attachments, - ); + const cachedAttachments: CachedImageWithDetails[] = []; + if ( + attachments && + systemContext.session.sessionDirPath !== undefined + ) { + for (let i = 0; i < attachments?.length; i++) { + const [attachmentName, tags]: [string, ExifReader.Tags] = + await systemContext.session.storeUserSuppliedFile( + attachments![i], + ); + + cachedAttachments.push( + new CachedImageWithDetails( + tags, + attachmentName, + attachments![i], + ), + ); + } + } // Make sure we clear any left over streaming context systemContext.streamingActionContext?.closeActionContext(); @@ -864,27 +693,66 @@ export class RequestCommandHandler implements CommandHandler { // Requests with recording/reasoning prefixes bypass translation entirely // and go straight to Claude reasoning. - if (shouldBypassTranslationForReasoning(request, systemContext)) { + const REASONING_PREFIXES = [ + "learn:", + "dev:", + "remember how to ", + "record ", + ]; + const lowerRequest = request.trimStart().toLowerCase(); + const forceReasoningEnv = + process.env.CLAUDE_FORCE_REASONING === "1"; + if ( + !systemContext.noReasoning && + (forceReasoningEnv || + REASONING_PREFIXES.some((p) => lowerRequest.startsWith(p))) + ) { await runConfiguredReasoning(request, context); return; } // Get the history context before adding the request to memory const history = getHistoryContext(systemContext); - recordRequestContext( - context, - systemContext, - request, - cachedAttachments, - history, - ); - const interpretResult = await interpretRequestWithLogging( - context, - systemContext, - request, - cachedAttachments, - history, - ); + context.actionIO.appendDiagnosticData({ + type: "translationContext", + entities: history?.entities ?? [], + activityContext: history?.activityContext, + }); + if ( + systemContext.session.getConfig().execution.recordUserMessages + ) { + addUserMessageToHistory( + systemContext, + request, + cachedAttachments, + ); + } + if (systemContext.userRequestKnowledgeExtraction === true) { + addRequestToMemory(systemContext, request); + } + let interpretResult: InterpretResult; + try { + interpretResult = await interpretRequest( + context, + request, + cachedAttachments, + history, + ); + } catch (e: any) { + if (systemContext.userRequestKnowledgeExtraction === true) { + addResultToMemory( + systemContext, + `Error translating request '${request}': ${e.message}`, + DispatcherName, + ); + } + systemContext?.logger?.logEvent("request:exception", { + request, + message: e.message, + stack: e.stack, + }); + throw e; + } const { requestAction, tokenUsage } = interpretResult; @@ -919,12 +787,31 @@ export class RequestCommandHandler implements CommandHandler { // `preference-clarify` feature is meant to render its own // interactive pick + "remember" card via executeActions, so it // must NOT be diverted to reasoning. - const reasoningHandled = await tryReasoningFallback( - systemContext, - context, - request, - requestAction, + const interactiveCollisionClarify = + systemContext.session.getConfig().collision.preference + .enabled && + systemContext.session.getConfig().collision.preference + .remember !== "never"; + const needsReasoning = requestAction.actions.some( + ({ action }) => + isUnknownAction(action) || + (action.schemaName === DispatcherClarifyName && + !( + interactiveCollisionClarify && + action.actionName === "clarifyMultipleAgentMatches" + )), ); + let reasoningHandled = false; + if (needsReasoning && !systemContext.noReasoning) { + try { + await runConfiguredReasoning(request, context); + reasoningHandled = true; + } catch (e: any) { + debugRequest( + `Reasoning fallback failed, using default handler: ${e.message}`, + ); + } + } if (!reasoningHandled) { const execResult = await executeActions( requestAction.actions, @@ -935,22 +822,62 @@ export class RequestCommandHandler implements CommandHandler { // Error-triggered reasoning: if an action failed and at least one // schema in the request opts in via errorReasoning: true, give Claude // a second chance using the same reasoning loop as UnknownAction. - if (execResult !== undefined) { - const errorReasoningResolved = - await tryErrorReasoningFallback( - systemContext, - context, - request, - requestAction, - execResult, - ); + if ( + !systemContext.noReasoning && + execResult !== undefined && + execResult.fallbackToReasoning + ) { + const needsErrorReasoning = requestAction.actions.some( + ({ action }) => { + try { + return ( + systemContext.agents.getActionConfig( + action.schemaName, + ).errorReasoning === true + ); + } catch { + return false; + } + }, + ); + let errorReasoningResolved = false; + if (needsErrorReasoning) { + const { error, failedAction } = execResult; + const augmentedRequest = + `[Context: A direct action dispatch failed.\n` + + `Action: ${JSON.stringify(failedAction.action, undefined, 2)}\n` + + `Error: "${error}"\n` + + `Please handle the following request using the available tools.]\n\n` + + request; + try { + displayStatus( + "Action failed — retrying with reasoning...", + context, + ); + await runConfiguredReasoning( + augmentedRequest, + context, + { + fallbackContext: { + failedSchema: + failedAction.action.schemaName, + failedAction: + failedAction.action.actionName, + error, + }, + }, + ); + errorReasoningResolved = true; + } catch (e: any) { + debugRequest( + `Error-triggered reasoning failed, keeping original error: ${e.message}`, + ); + } + } // If error-triggered reasoning did not run (schema opted out) // or failed to resolve the failure, surface the original // action error instead of silently reporting success. - if ( - execResult.fallbackToReasoning && - !errorReasoningResolved - ) { + if (!errorReasoningResolved) { displayError(execResult.error, context); } } diff --git a/ts/packages/dispatcher/dispatcher/src/context/memory.ts b/ts/packages/dispatcher/dispatcher/src/context/memory.ts index 5e4dde02f8..3ad7eae7dd 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/memory.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/memory.ts @@ -107,8 +107,13 @@ export function addUserMessageToHistory( context.chatHistory.addUserEntry(request, cachedAttachments); // Mirror the user turn into the host's cross-conversation content index. // Fires regardless of the knowledge-extraction flags (which connected mode - // disables), so the unified index still populates there. - context.conversationContentSink?.(request, "user"); + // disables), so the unified index still populates there. The request id + // keys the turn so a later history backfill won't index it a second time. + context.conversationContentSink?.( + request, + "user", + context.currentRequestId?.requestId, + ); } // Queue the user's turn for knowledge extraction into conversation memory. @@ -152,7 +157,11 @@ export function addResultToMemory( // Mirror the assistant turn into the host's cross-conversation content // index (ungated by knowledge extraction, like the user turn). - context.conversationContentSink?.(message, "assistant"); + context.conversationContentSink?.( + message, + "assistant", + context.currentRequestId?.requestId, + ); if (context.actionResultKnowledgeExtraction) { if (context.conversationManager && entities) { @@ -260,10 +269,61 @@ export async function lookupAndAnswerFromMemory( // Don't display error here; caller decides whether to show error or fall back to reasoning } } + + // The current conversation had no answer. Fall back to the unified + // cross-conversation content index (host-injected in connected mode) so a + // question whose answer lives in another conversation still gets one. + if (!answered) { + const fallback = await lookupAnswerFromOtherConversations( + systemContext, + question, + context, + ); + if (fallback !== undefined) { + // Replace the per-conversation "no answer" reasons with the + // cross-conversation result so the caller reports the answer, not + // the current-conversation miss. + historyText.length = 0; + historyText.push(fallback); + answered = true; + } + } // TODO: how about entities? return { historyText, answered }; } +// Search every conversation's content (the unified index) for the question and +// render the best-matching conversations and their snippets as a single answer. +// Returns undefined when the host has no unified index or nothing matched, so +// the caller can fall through to its normal not-answered handling. +async function lookupAnswerFromOtherConversations( + systemContext: CommandHandlerContext, + question: string, + context: ActionContext, +): Promise { + const search = systemContext.searchConversations; + if (search === undefined) { + return undefined; + } + const matches = await search({ question }, 3); + if (matches.length === 0) { + return undefined; + } + const lines: string[] = [ + "I didn't find that in the current conversation, but found related content in other conversations:", + ]; + for (const match of matches) { + lines.push(""); + lines.push(`**${match.name}**`); + for (const snippet of match.snippets) { + lines.push(`- ${snippet}`); + } + } + const text = lines.join("\n"); + displayResult(text, context); + return text; +} + function ensureMemory(context: ActionContext) { const systemContext = context.sessionContext.agentContext; if (systemContext.session.getConfig().execution.memory.legacy) { diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/action/conversationActionHandler.ts b/ts/packages/dispatcher/dispatcher/src/context/system/action/conversationActionHandler.ts index 6857153344..77bb4d32b4 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/action/conversationActionHandler.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/action/conversationActionHandler.ts @@ -9,16 +9,8 @@ import { ActionContext, TypeAgentAction } from "@typeagent/agent-sdk"; // Quote a conversation name so the command parser keeps it as a single // argument; names often contain spaces (and, rarely, quotes). function quoteName(name: string): string { - if (!name.includes('"')) { - return `"${name}"`; - } - if (!name.includes("'")) { - return `'${name}'`; - } - - // If the name contains both quote types, fall back to escaping for a - // double-quoted token. - return `"${name.replace(/\\/g, "\\\\").replace(/"/g, '\\"')}"`; + const escaped = name.replace(/\\/g, "\\\\").replace(/"/g, '\\"'); + return `"${escaped}"`; } // Each conversation action runs its equivalent `@conversation` command, which @@ -53,6 +45,31 @@ export async function executeConversationAction( case "findConversation": command = `@conversation find ${action.parameters.query}`; break; + case "searchConversation": + command = `@conversation search ${action.parameters.query}`; + break; + case "indexConversation": { + // Grammar-cache hits may drop an empty `parameters`, so read name + // defensively (see newConversation). + const name = action.parameters?.name; + command = + name === undefined + ? "@conversation index" + : name.toLowerCase() === "all" + ? "@conversation index all" + : `@conversation index ${quoteName(name)}`; + break; + } + case "summarizeConversation": { + // Grammar-cache hits may drop an empty `parameters`, so read name + // defensively (see newConversation). + const name = action.parameters?.name; + command = + name === undefined + ? "@conversation summarize" + : `@conversation summarize ${quoteName(name)}`; + break; + } case "showConversationInfo": command = "@conversation info"; break; @@ -79,6 +96,9 @@ export async function executeConversationAction( case "deleteConversation": command = `@conversation delete ${quoteName(action.parameters.name)}`; break; + case "help": + command = "@conversation help"; + break; default: throw new Error( `Invalid action name: ${(action as { actionName: string }).actionName}`, diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/action/describeActionHandler.ts b/ts/packages/dispatcher/dispatcher/src/context/system/action/describeActionHandler.ts deleted file mode 100644 index 15df7d92fd..0000000000 --- a/ts/packages/dispatcher/dispatcher/src/context/system/action/describeActionHandler.ts +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { ActionContext, AppAction } from "@typeagent/agent-sdk"; -import { createActionResultNoDisplay } from "@typeagent/agent-sdk/helpers/action"; -import type { CommandHandlerContext } from "../../commandHandlerContext.js"; -import { - describeAction, - describeAgentOrAction, -} from "../describe/describeCore.js"; -import type { DescribeAction } from "../schema/describeActionSchema.js"; - -// Renders agent/action capability discovery for the NL path. Both entry points -// (this handler and the `@describe` command in describeCommandHandlers.ts) call -// the shared describeCore implementation directly and append the rendered -// markdown themselves. We return a no-display result because the markdown is -// already appended above — returning undefined would make the dispatcher tack on -// a generic "Action completed." message (actionHandlers.ts), which is -// just noise on top of the real output. -export async function executeDescribeAction( - action: AppAction, - context: ActionContext, -) { - const nlAction = action as unknown as DescribeAction; - const systemContext = context.sessionContext.agentContext; - let markdown: string; - let historyText: string; - switch (nlAction.actionName) { - case "describeAgent": { - const { agentName, all } = nlAction.parameters; - markdown = await describeAgentOrAction( - systemContext, - agentName, - all ?? false, - ); - historyText = `Described the "${agentName}" agent.`; - break; - } - case "describeAction": { - const { actionName, agentName } = nlAction.parameters; - markdown = await describeAction( - systemContext, - actionName, - agentName, - ); - historyText = `Described the "${actionName}" action.`; - break; - } - default: - throw new Error( - `Invalid action name: ${(action as { actionName: string }).actionName}`, - ); - } - context.actionIO.appendDisplay({ type: "markdown", content: markdown }); - return createActionResultNoDisplay(historyText); -} diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/action/helpActionHandler.ts b/ts/packages/dispatcher/dispatcher/src/context/system/action/helpActionHandler.ts new file mode 100644 index 0000000000..e87871d3cd --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/src/context/system/action/helpActionHandler.ts @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { ActionContext, ActionResult, AppAction } from "@typeagent/agent-sdk"; +import { createActionResultNoDisplay } from "@typeagent/agent-sdk/helpers/action"; +import { runHelp } from "@typeagent/selfhelp/help"; +import type { CommandHandlerContext } from "../../commandHandlerContext.js"; +import { getAgentSchemas } from "../describe/agentSchemaInfo.js"; +import { + describeAction, + describeAgentOrAction, + resolveAgent, +} from "../describe/describeCore.js"; +import type { HelpAction } from "../schema/helpActionSchema.js"; + +// The built-in help capability (system.help). "Answer a TypeAgent question" +// (command lookup + concept/setup) reuses the merged selfhelp grounding library +// (catalog + docs in one call); describing a specific agent/action uses the live +// describeCore engine so it reflects the current, real agent set. When +// describeAgent names something that isn't an installed agent (a concept like +// "translation"), we fall back to the merged answer instead of dead-ending with +// "No agent named ...". +export async function executeHelpAction( + action: AppAction, + context: ActionContext, +): Promise { + const helpAction = action as unknown as HelpAction; + const systemContext = context.sessionContext.agentContext; + switch (helpAction.actionName) { + case "answerTypeAgentQuestion": + return runHelp(helpAction.parameters.question, context); + case "describeAgent": { + const { agentName, all } = helpAction.parameters; + const schemas = await getAgentSchemas(systemContext, undefined, { + includeSchemaless: true, + }); + if (resolveAgent(schemas, agentName).kind !== "found") { + // Not a real installed agent - answer it as a concept question. + return runHelp(agentName, context); + } + const markdown = await describeAgentOrAction( + systemContext, + agentName, + all ?? false, + ); + context.actionIO.appendDisplay({ + type: "markdown", + content: markdown, + }); + return createActionResultNoDisplay( + `Described the "${agentName}" agent.`, + ); + } + case "describeAction": { + const { actionName, agentName } = helpAction.parameters; + const markdown = await describeAction( + systemContext, + actionName, + agentName, + ); + context.actionIO.appendDisplay({ + type: "markdown", + content: markdown, + }); + return createActionResultNoDisplay( + `Described the "${actionName}" action.`, + ); + } + default: + throw new Error( + `Invalid help action: ${(action as { actionName: string }).actionName}`, + ); + } +} diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/conversationIndexProgress.ts b/ts/packages/dispatcher/dispatcher/src/context/system/conversationIndexProgress.ts new file mode 100644 index 0000000000..ca6e13e47d --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/src/context/system/conversationIndexProgress.ts @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { DisplayContent } from "@typeagent/agent-sdk"; + +const BAR_WIDTH = 20; +const HEADING = "Indexing conversation content"; + +// Progress of an in-flight backfill, for the streamed bar. `done`/`total` +// count user turns; `name` is the conversation currently being indexed. +export type ConversationIndexBar = { + done: number; + total: number; + name?: string | undefined; +}; + +function percent(done: number, total: number): number { + // total is 0 before the plan is computed or when there is nothing to + // index, so show 0% rather than a misleading full bar. + if (total <= 0) { + return 0; + } + return Math.min(100, Math.round((done / total) * 100)); +} + +// Escape a user-controlled string (a conversation name) for safe html interpolation. +function escapeHtml(s: string): string { + return s + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/"/g, """); +} + +// A progress bar rendered for both html hosts (styled div) and text hosts +// (unicode blocks), carried as alternates so each client picks what it +// supports. Streamed in place via appendDisplay(..., "temporary"). +export function renderConversationIndexProgress( + progress: ConversationIndexBar, +): DisplayContent { + const { done, total, name } = progress; + const pct = percent(done, total); + const counts = total > 0 ? `${done}/${total} messages` : ""; + // Bold the name in the html bar (escaped, since it is user-controlled); + // the plain-text alternate keeps it unadorned. + const htmlHeading = name + ? `Indexing "${escapeHtml(name)}"` + : HEADING; + const textHeading = name ? `Indexing "${name}"` : HEADING; + // A short label for the top-rail chip (see ChatPanel's live-bubble rail). + // The name is user-controlled, so escape it for the attribute value. + const liveTitle = name ? `Indexing "${name}"` : "Indexing conversations"; + const html = + `
` + + `
${htmlHeading}${counts ? ` \u2014 ${counts}` : ""}
` + + `
` + + `
` + + `
`; + const filled = Math.round((pct / 100) * BAR_WIDTH); + const bar = "\u25A0".repeat(filled) + "\u25A1".repeat(BAR_WIDTH - filled); + const text = `${textHeading} [${bar}] ${pct}%${counts ? ` (${counts})` : ""}`; + return { + type: "html", + content: html, + alternates: [{ type: "text", content: text }], + }; +} + +// The final summary shown when a backfill finishes, replacing the bar. +export function renderConversationIndexSummary( + indexed: { name: string; newlyIndexed: number; totalMessages: number }[], +): DisplayContent { + if (indexed.length === 0) { + return "No conversations to index."; + } + type Entry = (typeof indexed)[number]; + const statusOf = (c: Entry) => + c.newlyIndexed === 0 + ? "already up to date" + : `indexed ${c.newlyIndexed} new message${ + c.newlyIndexed === 1 ? "" : "s" + }`; + // Bold the conversation name in markdown; the text alternate keeps it plain. + const mdLine = (c: Entry) => + `**${c.name}**: ${statusOf(c)} (${c.totalMessages} total)`; + const textLine = (c: Entry) => + `${c.name}: ${statusOf(c)} (${c.totalMessages} total)`; + + if (indexed.length === 1) { + return { + type: "markdown", + content: mdLine(indexed[0]), + alternates: [{ type: "text", content: textLine(indexed[0]) }], + }; + } + const total = indexed.reduce((n, c) => n + c.newlyIndexed, 0); + const header = `Indexed ${total} new message${ + total === 1 ? "" : "s" + } across ${indexed.length} conversations:`; + return { + type: "markdown", + content: `${header}\n${indexed.map((c) => `- ${mdLine(c)}`).join("\n")}`, + alternates: [ + { + type: "text", + content: `${header}\n${indexed.map(textLine).join("\n")}`, + }, + ], + }; +} diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/describe/agentSchemaInfo.ts b/ts/packages/dispatcher/dispatcher/src/context/system/describe/agentSchemaInfo.ts index 42272f339c..229285bec0 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/describe/agentSchemaInfo.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/describe/agentSchemaInfo.ts @@ -2,7 +2,7 @@ // Licensed under the MIT License. // Shared data source for agent/action capability discovery (`@describe` and -// the `system.describe` NL schema — see describeCore.ts) as well as the +// the system.help describe actions — see describeCore.ts) as well as the // `Dispatcher.getAgentSchemas` RPC surface (dispatcher.ts). Extracted so // handlers can call it directly without going through the RPC interface. @@ -33,9 +33,11 @@ export function extractActions( return actions; } +// code-complexity-allow: iterates over agent configs with several nested steps; each step is necessary for schema discovery export async function getAgentSchemas( context: CommandHandlerContext, agentName?: string, + options?: { includeSchemaless?: boolean }, ): Promise { await context.agents.waitUntilReady(); const configs = context.agents.getActionConfigs(); @@ -95,5 +97,24 @@ export async function getAgentSchemas( subSchemas, }); } + + // Optionally include installed agents that expose no action schema (e.g. a + // greeting/generator agent) as entries with no sub-schemas, so capability + // discovery can still report them ("no callable actions") instead of + // "no agent named". Off by default so the getAgentSchemas RPC is unchanged. + if (options?.includeSchemaless) { + const present = new Set(result.map((a) => a.name)); + for (const name of context.agents.getAppAgentNames()) { + if (agentName !== undefined && name !== agentName) continue; + if (present.has(name)) continue; + result.push({ + name, + emoji: context.agents.getAppAgentEmoji(name), + description: context.agents.getAppAgentDescription(name), + subSchemas: [], + }); + } + } + return result; } diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/describe/describeCore.ts b/ts/packages/dispatcher/dispatcher/src/context/system/describe/describeCore.ts index 0191c52a15..8799cc9454 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/describe/describeCore.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/describe/describeCore.ts @@ -3,7 +3,8 @@ // Shared resolution + rendering core for agent/action capability discovery. // Both entry points call into this module directly: the `@describe` command -// (describeCommandHandlers.ts) and the NL path (describeActionHandler.ts). +// (describeCommandHandlers.ts) and the NL path (the describeAgent/describeAction +// actions of system.help, in action/helpActionHandler.ts). import type { ActionInfo, @@ -693,7 +694,9 @@ export async function describeAction( actionName: string, agentName?: string, ): Promise { - const schemas = await getAgentSchemas(context); + const schemas = await getAgentSchemas(context, undefined, { + includeSchemaless: true, + }); const resolution = resolveAction(schemas, actionName, agentName); switch (resolution.kind) { case "ambiguous": @@ -716,7 +719,9 @@ export async function describeAgentOrAction( name: string, all: boolean, ): Promise { - const schemas = await getAgentSchemas(context); + const schemas = await getAgentSchemas(context, undefined, { + includeSchemaless: true, + }); const agentResolution = resolveAgent(schemas, name); if (agentResolution.kind === "found") { // isSchemaEnabled can throw for an unregistered schema name; treat diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/handlers/conversationCommandHandlers.ts b/ts/packages/dispatcher/dispatcher/src/context/system/handlers/conversationCommandHandlers.ts index d5601b6d78..c0d5e86cde 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/handlers/conversationCommandHandlers.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/handlers/conversationCommandHandlers.ts @@ -4,6 +4,7 @@ import { ActionContext, ParsedCommandParams } from "@typeagent/agent-sdk"; import type { CompletionGroups, + DisplayContent, PartialParsedCommandParams, SessionContext, } from "@typeagent/agent-sdk"; @@ -12,11 +13,24 @@ import { CommandHandlerNoParams, CommandHandlerTable, } from "@typeagent/agent-sdk/helpers/command"; +import { + displayError, + displayStatus, + displayWarn, +} from "@typeagent/agent-sdk/helpers/display"; import { CommandHandlerContext, + ConversationIndexTarget, getRequestId, } from "../../commandHandlerContext.js"; +import { + renderConversationIndexProgress, + renderConversationIndexSummary, +} from "../conversationIndexProgress.js"; import { ManageConversationPayload } from "../manageConversationPayload.js"; +import registerDebug from "debug"; + +const debugIndex = registerDebug("dispatcher:conversation:index"); // Forward the manage-conversation payload to the client, which performs the // actual switch/rename/etc. The equivalent conversation action runs these @@ -244,8 +258,189 @@ class ConversationFindCommandHandler implements CommandHandler { } } +class ConversationSearchCommandHandler implements CommandHandler { + public readonly description = + "Search conversation content (knowPro message index)"; + public readonly action = "searchConversation"; + public readonly parameters = { + args: { + query: { + description: "Text to search for across conversation content", + implicitQuotes: true, + }, + }, + } as const; + public async run( + context: ActionContext, + params: ParsedCommandParams, + ) { + dispatchManageConversation(context, { + subcommand: "search", + query: params.args.query, + }); + } +} + +class ConversationIndexCommandHandler implements CommandHandler { + public readonly description = + "Index conversation history so its content is searchable across conversations"; + public readonly action = "indexConversation"; + public readonly parameters = { + args: { + name: { + description: + "Conversation to index by name, or 'all' for every conversation. Omit to index the current conversation.", + optional: true, + implicitQuotes: true, + }, + }, + } as const; + public async run( + context: ActionContext, + params: ParsedCommandParams, + ): Promise { + const systemContext = context.sessionContext.agentContext; + const indexer = systemContext.indexConversations; + if (indexer === undefined) { + displayWarn( + "Conversation content indexing is not available in this host.", + context, + ); + return; + } + const { name } = params.args; + const target: ConversationIndexTarget = + name === undefined + ? { scope: "current" } + : name.toLowerCase() === "all" + ? { scope: "all" } + : { scope: "named", name }; + + // Non-blocking: create the progress bubble now, then index in the + // background and replace that bubble in place via clientIO.setDisplay + // (keyed by requestId) so the agent stays usable while indexing runs. + const requestId = getRequestId(systemContext); + const asMessage = (content: DisplayContent) => ({ + message: content, + requestId, + source: "system", + actionIndex: 0, + }); + const setBar = (content: DisplayContent) => + systemContext.clientIO.setDisplay(asMessage(content)); + systemContext.clientIO.appendDisplay( + asMessage(renderConversationIndexProgress({ done: 0, total: 0 })), + "block", + ); + debugIndex("started (%s)", name ?? "current"); + void indexer(target, (progress) => { + debugIndex( + "progress %d/%d (%s)", + progress.done, + progress.total, + progress.name, + ); + setBar(renderConversationIndexProgress(progress)); + }) + .then((result) => { + debugIndex("finished: %o", result); + setBar( + result.notFound !== undefined + ? `No conversation named "${result.notFound}".` + : renderConversationIndexSummary(result.indexed), + ); + }) + .catch((e) => { + const message = e instanceof Error ? e.message : String(e); + debugIndex("failed: %s", message); + setBar(`Indexing failed: ${message}`); + }); + } + public async getCompletion( + context: SessionContext, + _params: PartialParsedCommandParams, + names: string[], + ): Promise { + // Offer existing conversation names plus the special "all" target. + const groups = completeConversationName(context, names, "name"); + if (names.includes("name")) { + groups.groups.push({ name: "all", completions: ["all"] }); + } + return groups; + } +} + +class ConversationSummarizeCommandHandler implements CommandHandler { + public readonly description = + "Summarize a conversation from its stored transcript"; + public readonly action = "summarizeConversation"; + public readonly parameters = { + args: { + name: { + description: + "Conversation to summarize by name/topic. Omit to summarize the current conversation.", + optional: true, + implicitQuotes: true, + }, + }, + } as const; + public async run( + context: ActionContext, + params: ParsedCommandParams, + ): Promise { + const systemContext = context.sessionContext.agentContext; + const summarize = systemContext.summarizeConversation; + if (summarize === undefined) { + displayWarn( + "Conversation summarization is not available in this host.", + context, + ); + return; + } + const { name } = params.args; + displayStatus( + name ? `Summarizing "${name}"...` : "Summarizing conversation...", + context, + ); + const result = await summarize(name); + switch (result.kind) { + case "ok": + // The summary is markdown (headings, bullets, bold); render it + // as such so it doesn't show raw `**` and `-` markers. + context.actionIO.appendDisplay({ + type: "markdown", + content: `**Summary of "${result.name}"**\n\n${result.summary}`, + }); + break; + case "not-found": + displayError( + `No conversation found matching "${result.query}".`, + context, + ); + break; + case "empty": + context.actionIO.appendDisplay({ + type: "markdown", + content: `**${result.name}** has no messages to summarize yet.`, + }); + break; + case "unavailable": + displayWarn(result.reason, context); + break; + } + } + public async getCompletion( + context: SessionContext, + _params: PartialParsedCommandParams, + names: string[], + ): Promise { + return completeConversationName(context, names, "name"); + } +} + class ConversationHelpCommandHandler implements CommandHandlerNoParams { public readonly description = "Show conversation command help"; + public readonly action = "help"; public async run(context: ActionContext) { dispatchManageConversation(context, { subcommand: "help" }); } @@ -259,6 +454,9 @@ export function getConversationCommandHandlers(): CommandHandlerTable { new: new ConversationNewCommandHandler(), list: new ConversationListCommandHandler(), find: new ConversationFindCommandHandler(), + search: new ConversationSearchCommandHandler(), + index: new ConversationIndexCommandHandler(), + summarize: new ConversationSummarizeCommandHandler(), info: new ConversationInfoCommandHandler(), switch: new ConversationSwitchCommandHandler(), prev: new ConversationPrevCommandHandler(), diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/handlers/helpCommandHandler.ts b/ts/packages/dispatcher/dispatcher/src/context/system/handlers/helpCommandHandler.ts index 2b0423df70..26c3e212ba 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/handlers/helpCommandHandler.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/handlers/helpCommandHandler.ts @@ -1,7 +1,13 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { ActionContext, ParsedCommandParams } from "@typeagent/agent-sdk"; +import { + ActionContext, + CompletionGroups, + ParsedCommandParams, + PartialParsedCommandParams, + SessionContext, +} from "@typeagent/agent-sdk"; import { CommandHandler } from "@typeagent/agent-sdk/helpers/command"; import { CommandHandlerContext } from "../../commandHandlerContext.js"; import { systemHandlers } from "../systemAgent.js"; @@ -115,4 +121,57 @@ export class HelpCommandHandler implements CommandHandler { printStructuredHandlerTableUsage(result.table, command, context); } + + public async getCompletion( + context: SessionContext, + params: PartialParsedCommandParams, + names: string[], + ): Promise { + if (!names.includes("command")) { + return { groups: [] }; + } + + const systemContext = context.agentContext; + // The `command` argument is itself a command path (an agent name + // and/or a chain of subcommands). Resolve as far as the partial + // text allows, then offer the valid continuations at that level so + // the user can drill into the command they want help for. + const value = params.args?.command ?? ""; + const result = await resolveCommand(value, systemContext); + + const groups: CompletionGroups["groups"] = []; + if (result.table !== undefined) { + groups.push({ + name: "Commands", + completions: Object.keys(result.table.commands), + }); + } + // Agent names are only valid as the first token, before any agent + // has been parsed or subcommand consumed. + if ( + result.parsedAppAgentName === undefined && + result.commands.length === 0 + ) { + groups.push({ + name: "Agent Names", + completions: systemContext.agents + .getAppAgentNames() + .filter((name) => + systemContext.agents.isCommandEnabled(name), + ), + }); + } + + return { + groups, + // How much of the argument text resolution consumed, so the + // outer completion pipeline anchors the menu after the resolved + // prefix (e.g. after "config " when completing "config age"). + matchedPrefixLength: value.length - result.suffix.length, + // Command paths are hierarchical: what is valid changes as the + // user drills in, so the caller must re-fetch rather than treat + // this level as an exhaustive set. + closedSet: false, + }; + } } diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts b/ts/packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts index aeb5f7cc09..6b236b13ee 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/manageConversationPayload.ts @@ -18,11 +18,12 @@ export type ManageConversationPayload = { | "rename" | "delete" | "find" + | "search" | "help"; name?: string; newName?: string; - /** Search term for the `find` subcommand. */ + /** Search term for the `find` (by name) and `search` (by content) subcommands. */ query?: string; - /** Optional cap on `find` results. */ + /** Optional cap on `find` / `search` results. */ maxMatches?: number; }; diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.agr b/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.agr index 5e1574b00a..c0cff77c74 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.agr +++ b/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.agr @@ -28,6 +28,14 @@ = (conversations | chats | sessions | tabs); = ( | ); +// Optional quantifier + article in front of a noun. Matches "", "all", +// "the", "my", "our", and combinations like "all my", "all the", +// "all of the", "all of my". Broad on purpose so phrasings such as +// "list all of the conversations" resolve here as a non-wildcard match +// and win over other agents' wildcard rules (e.g. powershell.listFiles's +// "list ... $(path:wildcard)"), instead of being grabbed as a file path. + = (all)? (of)? (the | my | our)?; + // "create/start/make/open/begin a new conversation called/named X" = (create | start | make | open | begin) (a | an)? new (called | named | titled) $(name:wildcard) -> { actionName: "newConversation", @@ -45,7 +53,9 @@ }; // "list/show (me) (all/my/our/the) conversations" - = (list | show | display) (me | us)? (all | my | our | the)? -> { +// Determiner is broad ("all of the", "all of my", ...) so these anchor +// on the plural noun and beat wildcard rules from other agents. + = (list | show | display) (me | us)? -> { actionName: "listConversation" } | (what | which) (do | are)? (i | we)? have -> { @@ -73,6 +83,13 @@ actionName: "switchConversation", parameters: { name } } + // "switch/go/... to (the) conversation where we talked/discussed about X" + // Captures just the topic X (not the whole phrase) so the content-search + // fallback in manageSwitch matches on the topic. + | (switch | go | change | open | load | resume) to (the)? where (we | i | you)? (talked | talk | discussed | discuss | spoke | chatted | mentioned | said) (about | on | regarding | of)? $(name:wildcard) -> { + actionName: "switchConversation", + parameters: { name } + } // "switch/change (the) conversation to X" | (switch | change) (the)? to $(name:wildcard) -> { actionName: "switchConversation", @@ -145,14 +162,106 @@ parameters: { query } }; +// Content search: search WITHIN conversations (their messages / history), +// distinct from FindConversation which locates a conversation by name. +// Anchored on content-oriented words (through/across/inside/within/in, +// "history", "content of") so these do not collide with the name-search +// patterns above. + = + search (through | across | inside | within | in) (all | my | our | the)? (for | about | mentioning | containing)? $(query:wildcard) -> { + actionName: "searchConversation", + parameters: { query } + } + | search (all | my | our | the)? (chat | conversation | message) history (for | about)? $(query:wildcard) -> { + actionName: "searchConversation", + parameters: { query } + } + | search (the)? content of (all | my | our | the)? (for | about)? $(query:wildcard) -> { + actionName: "searchConversation", + parameters: { query } + }; + +// Index conversation content so it becomes searchable across conversations. +// Anchored on the verb "index"/"reindex" (and "make ... searchable") so these +// do not collide with the search patterns above. + = + // "index/reindex (this|the|current|the current) conversation" -> current + (index | reindex) (this | the current | current | the) -> { + actionName: "indexConversation", + parameters: {} + } + // "index/reindex (all/my/our/the ...) conversations" -> all conversations + | (index | reindex) -> { + actionName: "indexConversation", + parameters: { name: "all" } + } + // "make (all/my/our/the ...) conversations searchable" -> all conversations + | make searchable -> { + actionName: "indexConversation", + parameters: { name: "all" } + } + // "index/reindex (the) conversation (called|named|about|...) X" -> named + | (index | reindex) (the)? (called | named | about | on | regarding | discussing | for) $(name:wildcard) -> { + actionName: "indexConversation", + parameters: { name } + } + // "index/reindex (the|my) X conversation" -> named + | (index | reindex) (the | my)? $(name:wildcard) -> { + actionName: "indexConversation", + parameters: { name } + }; + +// Summarize a conversation from its stored transcript. Anchored on the verb +// "summarize"/"recap"/"sum up" (or "summary/recap/overview/tldr of") so these +// do not collide with the search/find patterns above. + = + // "summarize (this|the|current) conversation" -> current + (summarize | recap | sum up) (this | the current | current | the) -> { + actionName: "summarizeConversation", + parameters: {} + } + // "summarize (the) conversation (called|named|about|...) X" -> named + | (summarize | recap | sum up) (the)? (called | named | about | on | regarding | discussing | for) $(name:wildcard) -> { + actionName: "summarizeConversation", + parameters: { name } + } + // "summarize (the|my) X conversation" -> named + | (summarize | recap | sum up) (the | my)? $(name:wildcard) -> { + actionName: "summarizeConversation", + parameters: { name } + } + // "give me a summary/recap/overview/tldr of (this|the current) conversation" -> current + | (give me | show me | get me)? (a | an)? (summary | recap | overview | tldr) of (this | the current | current | the) -> { + actionName: "summarizeConversation", + parameters: {} + } + // "give me a summary/recap/overview/tldr of (the) conversation X" -> named + | (give me | show me | get me)? (a | an)? (summary | recap | overview | tldr) of (the | my)? (called | named | about | on | regarding | for)? $(name:wildcard) -> { + actionName: "summarizeConversation", + parameters: { name } + }; + +// "conversation help" / "help with conversations" / "help managing conversations" + = + (show | display | get)? help -> { + actionName: "help" + } + | help (with | for | on | managing | about)? -> { + actionName: "help" + }; + = | | | + | + | + | | | | | | | - | ; + | + | ; diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.ts b/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.ts index 66d9970e28..aef616154d 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/schema/conversationActionSchema.ts @@ -5,12 +5,16 @@ export type ConversationAction = | NewConversationAction | ListConversationAction | FindConversationAction + | SearchConversationAction + | IndexConversationAction + | SummarizeConversationAction | ShowConversationInfoAction | SwitchConversationAction | NextConversationAction | PrevConversationAction | RenameConversationAction - | DeleteConversationAction; + | DeleteConversationAction + | HelpConversationAction; // Create a new conversation and optionally give it a name. // Use this when the user wants to create, start, make, or open a brand-new conversation. @@ -49,6 +53,58 @@ export type FindConversationAction = { }; }; +// Search the CONTENT of conversations (what was actually said or discussed +// inside them), not their names. Use this when the user wants to search across +// their conversation history for messages, topics, or details that were +// mentioned. +// Examples: "search my conversations for the docker command we used", +// "search conversation content for what we decided about pricing", +// "search my chat history for the API key rotation steps". +// IMPORTANT: use findConversation instead when the user wants to locate a +// conversation by its name/title rather than search what is inside it. +export type SearchConversationAction = { + actionName: "searchConversation"; + parameters: { + // The text or topic to search for within conversation content + query: string; + }; +}; + +// Index a conversation's history so its content becomes searchable across +// conversations. Use this when the user wants to index, reindex, or make a past +// conversation (or all conversations) searchable - i.e. add older messages that +// aren't in the content-search index yet. +// Examples: "index this conversation", "index all conversations", +// "reindex my conversations", "index the conversation about the Paris trip", +// "make my conversations searchable". +// IMPORTANT: use searchConversation to search existing content; use this only to +// ADD a conversation's history to the index. +export type IndexConversationAction = { + actionName: "indexConversation"; + parameters: { + // Which conversation to index: omit for the current conversation, use + // "all" for every conversation, or give a conversation's name/topic. + name?: string; + }; +}; + +// Summarize a conversation - produce a short written recap of what was +// discussed and done in it. Use this when the user wants a summary, recap, +// overview, or "tl;dr" of a conversation (not to search inside it). +// Examples: "summarize the yes conversation", "summarize this conversation", +// "give me a recap of the Paris trip conversation", "what happened in the +// budget conversation", "tldr the current conversation". +// IMPORTANT: use searchConversation to find content inside conversations; use +// this to get a narrative summary of one conversation. +export type SummarizeConversationAction = { + actionName: "summarizeConversation"; + parameters: { + // Which conversation to summarize: omit for the current conversation, + // or give a conversation's name/topic. + name?: string; + }; +}; + // Show information about the current conversation. // Use this when the user asks about the current conversation info. // Examples: "show conversation info", "what conversation am I in", "current conversation info". @@ -56,17 +112,23 @@ export type ShowConversationInfoAction = { actionName: "showConversationInfo"; }; -// Switch to an existing conversation by name. -// Use this when the user wants to switch to, go to, open, or change to an EXISTING conversation -// identified by name. For "next"/"previous" without a specific name, use NextConversationAction +// Switch to an existing conversation, identified either by its NAME or by what +// was DISCUSSED in it (its content/topic). +// Use this when the user wants to switch to, go to, open, or change to an EXISTING conversation. +// The switch tries an exact name, then a fuzzy name, then a content search over +// the conversations' messages - so "switch to the conversation where we talked +// about spikes" resolves to the conversation whose content is about spikes. +// For "next"/"previous" without a specific target, use NextConversationAction // or PrevConversationAction instead. // Examples: "switch to conversation test", "go to my work conversation", -// "switch to test", "open conversation named work", "change to the test conversation". +// "switch to test", "open conversation named work", "change to the test conversation", +// "switch to the conversation where we talked about spikes". // IMPORTANT: use this only when switching to an already-existing conversation, not creating a new one. export type SwitchConversationAction = { actionName: "switchConversation"; parameters: { - // The name of the conversation to switch to + // The name of the conversation to switch to, or a topic/description of + // what was discussed in it. name: string; }; }; @@ -115,3 +177,13 @@ export type DeleteConversationAction = { name: string; }; }; + +// Show help for conversation management: the available conversation commands +// and what they do. +// Use this when the user asks how to manage conversations or what conversation +// commands are available. +// Examples: "conversation help", "help with conversations", "what conversation +// commands are there", "how do I manage conversations". +export type HelpConversationAction = { + actionName: "help"; +}; diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/schema/describeActionSchema.ts b/ts/packages/dispatcher/dispatcher/src/context/system/schema/describeActionSchema.ts deleted file mode 100644 index 146e44aed5..0000000000 --- a/ts/packages/dispatcher/dispatcher/src/context/system/schema/describeActionSchema.ts +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -export type DescribeAction = DescribeAgentAction | DescribeActionAction; - -// Describe what an agent can do: a natural-language summary plus its actions. -// Works for installed-but-disabled agents too — describing is informational -// and does not require the agent to be enabled. -// Examples: "what can the spotify agent do", "describe spotify", -// "show me all of spotify's actions", "list everything calendar can do". -export type DescribeAgentAction = { - actionName: "describeAgent"; - parameters: { - // the agent to describe - agentName: string; - // true when the user asks for ALL actions, not the default set - all?: boolean; - }; -}; - -// Explain a single action in detail, beyond its one-line schema description. -// Examples: "what does the play action do", "describe spotify's play action", -// "describe the play action from spotify". -export type DescribeActionAction = { - actionName: "describeAction"; - parameters: { - // the action to describe - actionName: string; - // optional owning agent, when the user names one - agentName?: string; - }; -}; diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/schema/helpActionSchema.ts b/ts/packages/dispatcher/dispatcher/src/context/system/schema/helpActionSchema.ts new file mode 100644 index 0000000000..3995dbe26f --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/src/context/system/schema/helpActionSchema.ts @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +export type HelpAction = + | AnswerTypeAgentQuestionAction + | DescribeAgentAction + | DescribeActionAction; + +// Answer any question about TypeAgent ITSELF that isn't about one specific named +// agent: find the command or action for a task ("what's the command for X", "how +// do I X", "can I X in TypeAgent"), OR explain a concept, feature, or setup topic +// ("what is TypeAgent", "how does translation/memory/the cache work", "what keys +// do I need", "how do I install/configure/run it"). Answers with a summary plus +// any matching @-command(s)/action(s). Not for general knowledge, not for +// performing a task in another domain, and not for describing a specific named +// agent (use describeAgent). +export type AnswerTypeAgentQuestionAction = { + actionName: "answerTypeAgentQuestion"; + parameters: { + // The user's question about TypeAgent, verbatim. + question: string; + }; +}; + +// Describe what a SPECIFIC INSTALLED agent can do: a natural-language summary +// plus its actions. Use ONLY when the user names an actual agent (e.g. "what can +// the spotify agent do", "describe the calendar agent", "show me all of +// spotify's actions"). Works for installed-but-disabled agents too. Do NOT use +// this for a TypeAgent concept or feature that is not an installed agent (use +// explainTypeAgent), and do NOT use it to execute an action. +export type DescribeAgentAction = { + actionName: "describeAgent"; + parameters: { + // the agent to describe + agentName: string; + // true when the user asks for ALL actions, not the default set + all?: boolean; + }; +}; + +// Explain a single action in detail, beyond its one-line schema description. +// Examples: "what does the play action do", "describe spotify's play action", +// "describe the play action from spotify". +export type DescribeActionAction = { + actionName: "describeAction"; + parameters: { + // the action to describe + actionName: string; + // optional owning agent, when the user names one + agentName?: string; + }; +}; diff --git a/ts/packages/dispatcher/dispatcher/src/context/system/systemAgent.ts b/ts/packages/dispatcher/dispatcher/src/context/system/systemAgent.ts index d875a16e47..ddaca14893 100644 --- a/ts/packages/dispatcher/dispatcher/src/context/system/systemAgent.ts +++ b/ts/packages/dispatcher/dispatcher/src/context/system/systemAgent.ts @@ -14,7 +14,7 @@ import { } from "@typeagent/agent-sdk/helpers/command"; import { executeConversationAction } from "./action/conversationActionHandler.js"; import { executeConfigAction } from "./action/configActionHandler.js"; -import { executeDescribeAction } from "./action/describeActionHandler.js"; +import { executeHelpAction } from "./action/helpActionHandler.js"; import { type CommandHandlerContext, getRequestId, @@ -34,7 +34,7 @@ import { executeHistoryAction } from "./action/historyActionHandler.js"; import { executeGrammarAction } from "./action/grammarActionHandler.js"; import { executeSettingsAction } from "./action/settingsActionHandler.js"; import { ConfigAction } from "./schema/configActionSchema.js"; -import { DescribeAction } from "./schema/describeActionSchema.js"; +import { HelpAction } from "./schema/helpActionSchema.js"; import { NotificationAction } from "./schema/notificationActionSchema.js"; import { HistoryAction } from "./schema/historyActionSchema.js"; import { ConversationAction } from "./schema/conversationActionSchema.js"; @@ -179,7 +179,7 @@ function executeSystemAction( | TypeAgentAction | TypeAgentAction | TypeAgentAction - | TypeAgentAction, + | TypeAgentAction, context: ActionContext, ) { switch (action.schemaName) { @@ -195,8 +195,8 @@ function executeSystemAction( return executeGrammarAction(action, context); case "system.settings": return executeSettingsAction(action, context); - case "system.describe": - return executeDescribeAction(action, context); + case "system.help": + return executeHelpAction(action, context); default: throw new Error( `Invalid system sub-translator: ${(action as TypeAgentAction).schemaName}`, @@ -224,12 +224,17 @@ export const systemManifest: AppAgentManifest = { "Use this agent when the user wants to: " + "CREATE a new conversation (e.g. 'create a new conversation', 'start a new conversation called test', 'new conversation named work', 'open a new conversation test'), " + "LIST conversations (e.g. 'list our conversations', 'list my conversations', 'show all conversations', 'what conversations do I have'), " + + "FIND a conversation by name (e.g. 'find the conversation about the workout playlist', 'which conversation was about taxes'), " + + "SEARCH the CONTENT of conversations (e.g. 'search my conversations for the docker command we used', 'search my chat history for the API key steps'), " + + "INDEX a conversation's history so its content becomes searchable (e.g. 'index this conversation', 'index all conversations', 'index the conversation about taxes'), " + + "SUMMARIZE a conversation from its transcript (e.g. 'summarize this conversation', 'summarize the yes conversation', 'give me a recap of the Paris trip conversation'), " + "SWITCH to an existing conversation by name (e.g. 'switch to conversation test', 'go to my work conversation', 'switch to test'), " + "advance to the NEXT conversation (e.g. 'switch to next conversation', 'next conversation', 'go to the next conversation'), " + "go to the PREVIOUS conversation (e.g. 'switch to previous conversation', 'previous conversation'), " + "DELETE a conversation (e.g. 'delete conversation test', 'remove the work conversation'), " + "RENAME the current conversation, " + - "or SHOW info about the current conversation. " + + "SHOW info about the current conversation, " + + "or get HELP with conversation commands (e.g. 'conversation help', 'help with conversations'). " + "Use this for TypeAgent shell conversations only — NOT for media playlists, songs, files, or browser tabs.", schemaFile: "./src/context/system/schema/conversationActionSchema.ts", @@ -280,19 +285,18 @@ export const systemManifest: AppAgentManifest = { schemaType: "UserSettingsAction", }, }, - describe: { + help: { schema: { description: - "Describe what an agent or action can do — capability discovery, not execution. " + - "Use this when the user wants to know WHAT an agent or action does, e.g. " + - "'what can the spotify agent do', 'describe the calendar agent', " + - "'show me all of spotify's actions', 'what does the play action do', " + - "'describe spotify's play action'. This works even for installed-but-disabled " + - "agents. Do NOT use this to execute an action or to list all agents " + - "(that's a config command).", - schemaFile: - "./src/context/system/schema/describeActionSchema.ts", - schemaType: "DescribeAction", + "Answer questions about TypeAgent itself - capability discovery and help, not execution. " + + "Use this when the user wants to: " + + "FIND the command or action for a task ('what's the command for X', 'how do I X', 'can I X in TypeAgent'); " + + "EXPLAIN TypeAgent or one of its concepts/features ('what is TypeAgent', 'what can it do', 'how does translation/memory/the cache work', 'how do I set it up', 'give me more details about TypeAgent X'); " + + "or DESCRIBE a specific installed agent or action ('what can the spotify agent do', 'describe the calendar agent', 'what does the play action do'). " + + "Describing works even for installed-but-disabled agents. " + + "Do NOT use this to actually perform a task in another domain (playing music, sending email, editing code, controlling a browser), for general-knowledge questions, or to list all agents (that's the config command).", + schemaFile: "./src/context/system/schema/helpActionSchema.ts", + schemaType: "HelpAction", }, }, }, diff --git a/ts/packages/dispatcher/dispatcher/src/execute/actionContext.ts b/ts/packages/dispatcher/dispatcher/src/execute/actionContext.ts index cae5663da0..e368a4b028 100644 --- a/ts/packages/dispatcher/dispatcher/src/execute/actionContext.ts +++ b/ts/packages/dispatcher/dispatcher/src/execute/actionContext.ts @@ -36,6 +36,7 @@ export function getActionContext( ); const actionIO: ActionIO = { setDisplay(content: DisplayContent): void { + context.displayCount++; context.clientIO.setDisplay( makeClientIOMessage( context, @@ -50,6 +51,12 @@ export function getActionContext( content: DisplayContent, mode: DisplayAppendMode = "inline", ): void { + // Transient status ("temporary") is not real output - don't count + // it, so an action that only shows a spinner still gets the + // synthesized "completed" acknowledgment. + if (mode !== "temporary") { + context.displayCount++; + } context.clientIO.appendDisplay( makeClientIOMessage( context, diff --git a/ts/packages/dispatcher/dispatcher/src/execute/actionHandlers.ts b/ts/packages/dispatcher/dispatcher/src/execute/actionHandlers.ts index a5378c6963..720a360ff2 100644 --- a/ts/packages/dispatcher/dispatcher/src/execute/actionHandlers.ts +++ b/ts/packages/dispatcher/dispatcher/src/execute/actionHandlers.ts @@ -24,6 +24,7 @@ import { } from "@typeagent/agent-sdk"; import { createActionResult, + createActionResultNoDisplay, actionResultToString, createActionResultFromError, serializeError, @@ -251,11 +252,29 @@ export async function executeAction( if (setupResult !== undefined) { result = setupResult; } else { - result = - (await appAgent.executeAction(action, actionContext)) ?? - createActionResult( - `Action ${getFullActionName(executableAction)} completed.`, - ); + const displayCountBefore = systemContext.displayCount; + const handlerResult = await appAgent.executeAction( + action, + actionContext, + ); + if (handlerResult !== undefined) { + result = handlerResult; + } else { + // The agent returned no ActionResult. Synthesize a + // completion using the same history/memory text as before. + // If the action already emitted visible output - either + // directly via actionIO or through a command it delegated + // to with processCommandNoLock - suppress the redundant + // "completed" bubble by returning a no-display result; + // otherwise show it so silent actions still acknowledge. + const completedText = `Action ${getFullActionName( + executableAction, + )} completed.`; + result = + systemContext.displayCount !== displayCountBefore + ? createActionResultNoDisplay(completedText) + : createActionResult(completedText); + } } } } catch (e: any) { diff --git a/ts/packages/dispatcher/dispatcher/src/index.ts b/ts/packages/dispatcher/dispatcher/src/index.ts index ed5ebb0d1a..611f7952c3 100644 --- a/ts/packages/dispatcher/dispatcher/src/index.ts +++ b/ts/packages/dispatcher/dispatcher/src/index.ts @@ -3,7 +3,13 @@ export { createDispatcher } from "./dispatcher.js"; export { IndexManager } from "./context/indexManager.js"; -export type { DispatcherOptions } from "./context/commandHandlerContext.js"; +export type { + DispatcherOptions, + ConversationIndexTarget, + ConversationIndexResult, + ConversationIndexProgress, + ConversationSummaryResult, +} from "./context/commandHandlerContext.js"; export { PortRegistrar, SYSTEM_SESSION_CONTEXT_ID, diff --git a/ts/packages/dispatcher/dispatcher/src/reasoning/claude.ts b/ts/packages/dispatcher/dispatcher/src/reasoning/claude.ts index c2d6184543..14a1315bad 100644 --- a/ts/packages/dispatcher/dispatcher/src/reasoning/claude.ts +++ b/ts/packages/dispatcher/dispatcher/src/reasoning/claude.ts @@ -51,7 +51,8 @@ import { getActionSchemaTypeName } from "../translation/agentTranslators.js"; import { formatParams as sharedFormatParams, formatThinkingDisplay as sharedFormatThinkingDisplay, - formatToolResultDisplay as sharedFormatToolResultDisplay, + formatToolResult, + formatToolRun, buildReasoningActionResult, estimateReasoningTokens, reasoningTokenUsage, @@ -318,7 +319,15 @@ function formatToolCallDisplay(toolName: string, input: any): string { return `**Tool:** ${toolName}${params}`; } -const formatToolResultDisplay = sharedFormatToolResultDisplay; +// Render a Claude tool call as a click-to-expand block (matching the copilot +// engine). A call and its result render together in one bubble, so this is +// combined with formatToolResult when the tool finishes. +function renderToolCallBlock(toolName: string, input: unknown): string { + return formatToolRun(formatToolCallDisplay(toolName, input), [ + { tool: toolName, args: input }, + ]); +} + const formatThinkingDisplay = sharedFormatThinkingDisplay; const mcpExecuteActionTool = `mcp__${mcpServerName}__execute_action`; @@ -661,11 +670,12 @@ function getClaudeOptions( }, }; - // TODO (deferred): cross-conversation browsing. get_conversation_info / - // read_conversation are scoped to the CURRENT conversation only. To help a - // user who is unsure which conversation they were in, add - // list_conversations / read_conversation(conversationId) backed by the - // agent-server ConversationManager (getConversationList). Not implemented yet. + // get_conversation_info / read_conversation are scoped to the CURRENT + // conversation. Cross-conversation browsing is provided by + // list_conversations (id + name) and search_conversations (content search + // with snippets), both backed by the agent-server ConversationManager. + // TODO (deferred): read_conversation(conversationId) to page another + // conversation's full transcript, not just its search snippets. const conversationInfoSchema = {}; const getConversationInfoTool: SdkMcpToolDefinition< typeof conversationInfoSchema @@ -747,6 +757,96 @@ function getClaudeOptions( }, }; + const listConversationsSchema = {}; + const listConversationsTool: SdkMcpToolDefinition< + typeof listConversationsSchema + > = { + name: "list_conversations", + description: [ + "List ALL of the user's conversations (id + name), across the whole session store — not just the current one.", + "Use this to resolve a conversation the user names (e.g. 'the CLI conversation') to its id before reading or searching it.", + ].join("\n"), + inputSchema: listConversationsSchema, + handler: async () => { + const list = systemContext.getConversationList?.() ?? []; + if (list.length === 0) { + return { + content: [ + { + type: "text", + text: "No other conversations are available in this host.", + }, + ], + }; + } + return { + content: [ + { type: "text", text: JSON.stringify(list, null, 2) }, + ], + }; + }, + }; + + const searchConversationsSchema = { + question: z.string().optional(), + terms: z.array(z.string()).optional(), + maxMatches: z.number().optional(), + }; + const searchConversationsTool: SdkMcpToolDefinition< + typeof searchConversationsSchema + > = { + name: "search_conversations", + description: [ + "Search the CONTENT of ALL the user's conversations (not just the current one) and return the best-matching conversations with representative snippets.", + "Use this to answer questions like 'what did we discuss in the CLI conversation' or to find where a topic was talked about across conversations.", + "Provide a natural-language `question` and/or a list of keyword `terms` - they are blended (NL/semantic + literal message-text match), so put distinctive keywords (e.g. proper nouns) in `terms` to catch literal mentions.", + "This reads matching content back to you - unlike the conversation find/search *actions*, which only render in the UI.", + ].join("\n"), + inputSchema: searchConversationsSchema, + handler: async (args) => { + const search = systemContext.searchConversations; + if (search === undefined) { + return { + content: [ + { + type: "text", + text: "Cross-conversation content search is not available in this host.", + }, + ], + }; + } + const question = args.question; + const terms = args.terms; + if (!question && (terms === undefined || terms.length === 0)) { + return { + content: [ + { + type: "text", + text: "Provide a `question` and/or `terms` to search for.", + }, + ], + }; + } + const matches = await search({ question, terms }, args.maxMatches); + if (matches.length === 0) { + const what = question ?? (terms ?? []).join(", "); + return { + content: [ + { + type: "text", + text: `No conversations with content matching "${what}" found.`, + }, + ], + }; + } + return { + content: [ + { type: "text", text: JSON.stringify(matches, null, 2) }, + ], + }; + }, + }; + const userContextSchema = {}; const getUserContextTool: SdkMcpToolDefinition = { name: "get_user_context", @@ -1016,6 +1116,8 @@ function getClaudeOptions( "- `remember`: Durably save a new memory so it can be recalled later", "- `get_conversation_info`: Get transcript metadata (message count, contributing agents)", "- `read_conversation`: Page through the raw conversation transcript (offset/limit)", + "- `list_conversations`: List ALL conversations (id + name) across the session store — use to resolve a conversation the user names", + "- `search_conversations`: Search the CONTENT of ALL conversations and read back matching snippets (use for 'what did we discuss in X')", "- `get_user_context`: Fresh coarse snapshot of the user's editor (active file, language, cursor/selection ranges, workspace, open editors, the active file's diagnostic messages) and the user's selected text (bounded) when present; use the code agent's read actions for full file contents", "- `find_installable_agent`: List agents that are not installed yet but can be installed on demand. Call it when no active agent can fulfill the request; if a candidate matches, tell the user the exact `@package install` command (never install it yourself)", "- `ask_user`: Ask the user ONE multiple-choice question and block for their answer - only when genuinely blocked on a decision only they can make (see Autonomous Execution Policy)", @@ -1429,6 +1531,8 @@ function getClaudeOptions( rememberTool, getConversationInfoTool, readConversationTool, + listConversationsTool, + searchConversationsTool, getUserContextTool, ...subagentTools, findInstallableAgentTool, @@ -1507,6 +1611,10 @@ async function executeReasoningWithoutPlanning( let toolUseCount = 0; let reasoningStepCount = 0; const toolUseIdToName = new Map(); + // Buffer each tool call until its result arrives so the call and its result + // render together in one bubble. Keyed by tool-use id so parallel calls pair + // with the correct result. + const pendingToolCalls = new Map(); const pendingExecuteActions = new Map(); const executedActions: TypeAgentAction[] = []; // LLM token usage reported by the final result message (captured below). @@ -1581,17 +1689,12 @@ async function executeReasoningWithoutPlanning( parameters: content.input, timestamp: new Date().toISOString(), }); - context.actionIO.appendDisplay( - { - type: "markdown", - content: formatToolCallDisplay( - content.name, - content.input, - ), - kind: "info", - }, - displayMode, - ); + // Buffer the call; it renders together with its result when + // the tool finishes (see the tool_result handler below). + pendingToolCalls.set(content.id, { + tool: content.name, + args: content.input, + }); } else if ((content as any).type === "thinking") { const thinkingContent = (content as any).thinking; if (thinkingContent) { @@ -1650,13 +1753,20 @@ async function executeReasoningWithoutPlanning( result: content, timestamp: new Date().toISOString(), }); + // Emit the buffered call and its result together in one + // bubble so the output sits with the call that produced + // it. + const call = pendingToolCalls.get(block.tool_use_id); + pendingToolCalls.delete(block.tool_use_id); + const callBlock = call + ? renderToolCallBlock(call.tool, call.args) + : ""; context.actionIO.appendDisplay( { type: "markdown", - content: formatToolResultDisplay( - content, - isError, - ), + content: + callBlock + + formatToolResult(content, isError), kind: isError ? "warning" : "info", }, displayMode, @@ -1782,6 +1892,13 @@ async function executeReasoningWithTracing( let toolUseCount = 0; let reasoningStepCount = 0; const toolUseIdToName = new Map(); + // Buffer each tool call until its result arrives so the call and its + // result render together in one bubble. Keyed by tool-use id so parallel + // calls pair with the correct result. + const pendingToolCalls = new Map< + string, + { tool: string; args: unknown } + >(); const pendingExecuteActions = new Map(); const executedActions: TypeAgentAction[] = []; // LLM token usage reported by the final result message (captured below). @@ -1867,17 +1984,12 @@ async function executeReasoningWithTracing( timestamp: new Date().toISOString(), }); - context.actionIO.appendDisplay( - { - type: "markdown", - content: formatToolCallDisplay( - content.name, - content.input, - ), - kind: "info", - }, - displayMode, - ); + // Buffer the call; it renders together with its result + // when the tool finishes (see the tool_result handler). + pendingToolCalls.set(content.id, { + tool: content.name, + args: content.input, + }); } else if ((content as any).type === "thinking") { const thinkingContent = (content as any).thinking; if (thinkingContent) { @@ -1950,13 +2062,22 @@ async function executeReasoningWithTracing( timestamp: new Date().toISOString(), }); + // Emit the buffered call and its result together in + // one bubble so the output sits with the call that + // produced it. + const call = pendingToolCalls.get( + block.tool_use_id, + ); + pendingToolCalls.delete(block.tool_use_id); + const callBlock = call + ? renderToolCallBlock(call.tool, call.args) + : ""; context.actionIO.appendDisplay( { type: "markdown", - content: formatToolResultDisplay( - content, - isError, - ), + content: + callBlock + + formatToolResult(content, isError), kind: isError ? "warning" : "info", }, displayMode, diff --git a/ts/packages/dispatcher/dispatcher/src/reasoning/copilot.ts b/ts/packages/dispatcher/dispatcher/src/reasoning/copilot.ts index d620a7851b..771207d445 100644 --- a/ts/packages/dispatcher/dispatcher/src/reasoning/copilot.ts +++ b/ts/packages/dispatcher/dispatcher/src/reasoning/copilot.ts @@ -567,6 +567,31 @@ function formatToolCallDisplay(toolName: string, input: unknown): string { return `**Tool:** \`${toolName}\``; } +// Extract the UI display text and error state from a Copilot +// `tool.execution_complete` event. The SDK reports the full result meant for +// display in result.detailedContent (falling back to the model-facing, possibly +// truncated result.content), and failures in error.message. +function copilotToolResultDisplay(event: { + data?: { + success?: boolean; + error?: { message?: string }; + result?: { detailedContent?: string; content?: string }; + }; +}): { + content: string; + isError: boolean; +} { + const data = event?.data ?? {}; + const isError = data.success === false; + const content = isError + ? (data.error?.message ?? + data.result?.detailedContent ?? + data.result?.content ?? + "") + : (data.result?.detailedContent ?? data.result?.content ?? ""); + return { content: String(content ?? ""), isError }; +} + /** * Generate a unique request ID for tracing */ @@ -897,11 +922,12 @@ function getCopilotSessionConfig( }, }); - // TODO (deferred): cross-conversation browsing. get_conversation_info / - // read_conversation are scoped to the CURRENT conversation only. To help a - // user who is unsure which conversation they were in, add - // list_conversations / read_conversation(conversationId) backed by the - // agent-server ConversationManager (getConversationList). Not implemented yet. + // get_conversation_info / read_conversation are scoped to the CURRENT + // conversation. Cross-conversation browsing is provided by + // list_conversations (id + name) and search_conversations (content search + // with snippets), both backed by the agent-server ConversationManager. + // TODO (deferred): read_conversation(conversationId) to page another + // conversation's full transcript, not just its search snippets. const getConversationInfoTool = defineTool("get_conversation_info", { description: [ "Get metadata about the current conversation transcript: total message count and which agents have responded.", @@ -984,6 +1010,101 @@ function getCopilotSessionConfig( }, }); + const listConversationsTool = defineTool("list_conversations", { + description: [ + "List ALL of the user's conversations (id + name), across the whole session store — not just the current one.", + "Use this to resolve a conversation the user names (e.g. 'the CLI conversation') to its id before reading or searching it.", + ].join("\n"), + parameters: { + type: "object", + properties: {}, + required: [], + }, + handler: async () => { + const list = systemContext.getConversationList?.() ?? []; + if (list.length === 0) { + return { + textResultForLlm: + "No other conversations are available in this host.", + resultType: "success" as const, + }; + } + return { + textResultForLlm: JSON.stringify(list, null, 2), + resultType: "success" as const, + }; + }, + }); + + const searchConversationsTool = defineTool("search_conversations", { + description: [ + "Search the CONTENT of ALL the user's conversations (not just the current one) and return the best-matching conversations with representative snippets.", + "Use this to answer questions like 'what did we discuss in the CLI conversation' or to find where a topic was talked about across conversations.", + "Provide a natural-language `question` and/or a list of keyword `terms` - they are blended (NL/semantic + literal message-text match), so put distinctive keywords (e.g. proper nouns) in `terms` to catch literal mentions.", + "This reads matching content back to you - unlike the conversation find/search *actions*, which only render in the UI.", + ].join("\n"), + parameters: { + type: "object", + properties: { + question: { + type: "string", + description: + "A natural-language question to match against conversation content", + }, + terms: { + type: "array", + items: { type: "string" }, + description: + "Keyword/phrase terms to match literally against message text (names, distinctive words)", + }, + maxMatches: { + type: "number", + description: + "Maximum number of conversations to return (default 10)", + }, + }, + required: [], + }, + handler: async (args: Record) => { + const search = systemContext.searchConversations; + if (search === undefined) { + return { + textResultForLlm: + "Cross-conversation content search is not available in this host.", + resultType: "success" as const, + }; + } + const question = + typeof args?.question === "string" ? args.question : undefined; + const terms = Array.isArray(args?.terms) + ? args.terms.map((t: unknown) => String(t)) + : undefined; + if (!question && (terms === undefined || terms.length === 0)) { + return { + textResultForLlm: + "Provide a `question` and/or `terms` to search for.", + resultType: "success" as const, + }; + } + const maxMatches = + typeof args?.maxMatches === "number" + ? args.maxMatches + : undefined; + const matches = await search({ question, terms }, maxMatches); + if (matches.length === 0) { + const what = question ?? (terms ?? []).join(", "); + return { + textResultForLlm: `No conversations with content matching "${what}" found.`, + resultType: "success" as const, + }; + } + return { + textResultForLlm: JSON.stringify(matches, null, 2), + resultType: "success" as const, + }; + }, + }); + const getUserContextTool = defineTool("get_user_context", { description: [ "Get a fresh, coarse snapshot of the user's current editor context:", @@ -1285,6 +1406,8 @@ function getCopilotSessionConfig( rememberTool, getConversationInfoTool, readConversationTool, + listConversationsTool, + searchConversationsTool, getUserContextTool, ...subagentTools, findInstallableAgentTool, @@ -1298,6 +1421,8 @@ function getCopilotSessionConfig( "remember", "get_conversation_info", "read_conversation", + "list_conversations", + "search_conversations", "get_user_context", ...(subagentsEnabled ? [ @@ -1341,6 +1466,8 @@ function getCopilotSessionConfig( "- `remember`: Durably save a new memory so it can be recalled later", "- `get_conversation_info`: Get transcript metadata (message count, contributing agents)", "- `read_conversation`: Page through the raw conversation transcript (offset/limit)", + "- `list_conversations`: List ALL conversations (id + name) across the session store — use to resolve a conversation the user names", + "- `search_conversations`: Search the CONTENT of ALL conversations and read back matching snippets (use for 'what did we discuss in X')", "", "## Editor Context Tools", "- `get_user_context`: Fresh coarse snapshot of the user's editor (active file path, language, cursor/selection ranges, workspace, diagnostic counts). Contains NO file or selection text.", @@ -1447,11 +1574,18 @@ async function executeReasoningWithoutPlanning( debug(`Executing reasoning request: ${originalRequest}`); context.actionIO.appendDisplay("Thinking...", "temporary"); const displayMode = resolveReasoningDisplayMode(context); - // Fold runs of identical, back-to-back tool-call lines into one "xN" line. + // A tool call and its result share one reasoning-step bubble: the call is + // buffered at execution_start and emitted with its result at + // execution_complete (toolFolder.result). A failed result is styled as a + // warning bubble. const toolFolder = new ToolRunFolder( - (content) => + (content, isError) => context.actionIO.appendDisplay( - { type: "markdown", content, kind: "info" }, + { + type: "markdown", + content, + kind: isError ? "warning" : "info", + }, displayMode, ), formatToolCallDisplay, @@ -1619,6 +1753,11 @@ async function executeReasoningWithoutPlanning( event.name || "unknown"; debug(`Tool execution completed: ${toolName}`); + // Emit the buffered call and its result together in one bubble so + // the output the model acted on sits with the call that produced it + // (and can be opened in a viewer). + const { content, isError } = copilotToolResultDisplay(event); + toolFolder.result(content, isError); }, ); @@ -1778,11 +1917,18 @@ async function executeReasoningWithTracing( debug(`Executing reasoning with tracing: ${originalRequest}`); context.actionIO.appendDisplay("Thinking...", "temporary"); const displayMode = resolveReasoningDisplayMode(context); - // Fold runs of identical, back-to-back tool-call lines into one "xN" line. + // A tool call and its result share one reasoning-step bubble: the call + // is buffered at execution_start and emitted with its result at + // execution_complete (toolFolder.result). A failed result is styled as a + // warning bubble. const toolFolder = new ToolRunFolder( - (content) => + (content, isError) => context.actionIO.appendDisplay( - { type: "markdown", content, kind: "info" }, + { + type: "markdown", + content, + kind: isError ? "warning" : "info", + }, displayMode, ), formatToolCallDisplay, @@ -1960,6 +2106,14 @@ async function executeReasoningWithTracing( event.name || "unknown"; debug(`Tool execution completed: ${toolName}`); + const { content, isError } = copilotToolResultDisplay(event); + tracer.recordToolResult( + toolName, + content, + isError ? content : undefined, + ); + // Emit the buffered call and its result together in one bubble. + toolFolder.result(content, isError); }, ); diff --git a/ts/packages/dispatcher/dispatcher/src/reasoning/reasoningLoopBase.ts b/ts/packages/dispatcher/dispatcher/src/reasoning/reasoningLoopBase.ts index 9191ba642f..e7f220bf29 100644 --- a/ts/packages/dispatcher/dispatcher/src/reasoning/reasoningLoopBase.ts +++ b/ts/packages/dispatcher/dispatcher/src/reasoning/reasoningLoopBase.ts @@ -155,17 +155,50 @@ export function formatToolCallDisplay( return `**Tool:** ${toolName}${params}`; } -export function formatToolResultDisplay( - content: string, - isError: boolean, -): string { +// Collapse a tool result to a short single-line preview for a summary/one-liner: +// trim, flatten newlines, and cap at MAX_LEN with an ellipsis. Empty results +// render as "(empty)" so the line is never blank. +function toolResultPreview(content: string): string { const MAX_LEN = 120; let preview = content.trim().replace(/\n+/g, " "); if (preview.length > MAX_LEN) { preview = preview.slice(0, MAX_LEN) + "…"; } + return preview || "(empty)"; +} + +export function formatToolResultDisplay( + content: string, + isError: boolean, +): string { const label = isError ? "**Error:**" : "**↳**"; - return `${label} \`${preview || "(empty)"}\``; + return `${label} \`${toolResultPreview(content)}\``; +} + +/** + * Render a tool result as a native
block that mirrors the tool-call + * block (formatToolRun): the shows a one-line preview (with an error + * marker when the tool failed) and expanding it reveals the full result text. + * The full text lives inline in the
 so chat-ui can both show it in place
+ * and hand it to the "open in viewer" affordance. Self-contained HTML starting
+ * with "<", so splitActionContent leaves it intact rather than hoisting it into
+ * the enclosing action's JSON view. The preview and body text are HTML-escaped
+ * (arbitrary tool output), so markup in a result can never break out.
+ */
+export function formatToolResult(content: string, isError: boolean): string {
+    const label = isError ? "Error:" : "↳";
+    const cls = isError
+        ? "reasoning-tool-result reasoning-tool-result-error"
+        : "reasoning-tool-result";
+    const body = content.trim() || "(empty)";
+    return [
+        `
`, + `${label} ${escapeHtmlText( + toolResultPreview(content), + )}`, + `
${escapeHtmlText(body)}
`, + `
`, + ].join(""); } // Escape the three HTML-significant characters so text renders literally inside @@ -271,25 +304,30 @@ export function formatToolRun( * Tool lines are buffered instead of emitted right away, because the count is * not known until the run ends. Callers must: * - route every tool-call line through tool() - * - call flush() before emitting any non-tool display - * - call flush() once more after the reasoning stream completes + * - call result() when the tool finishes, to emit the call and its result + * together in one bubble + * - call flush() before emitting any non-tool display, and once more after + * the reasoning stream completes, to emit a call that has no result yet * * Every run - single or folded - is emitted as its own click-to-expand block * (see formatToolRun): the summary is the display line ("xN" only when folded) - * and the hidden body is that run's own JSON. + * and the hidden body is that run's own JSON. result() appends the result's own + * block after it. */ export class ToolRunFolder { private pending: string | undefined; private count = 0; private details: ToolCallDetail[] = []; - // `format` turns a raw tool call into its display line; it also serves as - // the folding key (identical display = same run). Injected rather than - // imported because each reasoning engine formats tool calls differently and - // its formatter lives in the engine module (copilot.ts), which depends on - // this file, not the other way around. + // `emit` receives a rendered block and whether it represents a failed tool + // result, so the caller can style it (e.g. a warning bubble); a call-only + // flush always passes false. `format` turns a raw tool call into its display + // line and doubles as the folding key (identical display = same run). + // Injected rather than imported because each reasoning engine formats tool + // calls differently and its formatter lives in the engine module + // (copilot.ts), which depends on this file, not the other way around. constructor( - private readonly emit: (content: string) => void, + private readonly emit: (content: string, isError: boolean) => void, private readonly format: (toolName: string, args: unknown) => string, ) {} @@ -309,12 +347,13 @@ export class ToolRunFolder { this.details = [{ tool: toolName, args }]; } - // Emit the buffered run (if any) as a click-to-expand block and reset. A run - // of two or more identical calls gets an "xN" summary; a single call shows - // its line unchanged. Both reveal their own JSON on click. - flush(): void { + // Render the buffered run (if any) as a click-to-expand block and reset, + // returning the HTML (empty string when nothing is buffered). A run of two + // or more identical calls gets an "xN" summary; a single call shows its line + // unchanged. Shared by flush() and result(). + private takePending(): string { if (this.pending === undefined) { - return; + return ""; } const line = this.count > 1 ? `${this.pending} x${this.count}` : this.pending; @@ -322,7 +361,29 @@ export class ToolRunFolder { this.pending = undefined; this.count = 0; this.details = []; - this.emit(formatToolRun(line, details)); + return formatToolRun(line, details); + } + + // Emit the buffered run (if any) on its own - used before a non-tool display + // interrupts a run, or after the stream completes with a call that has no + // result to pair with. + flush(): void { + const block = this.takePending(); + if (block !== "") { + this.emit(block, false); + } + } + + // Emit the buffered tool call together with its result as a single block, so + // the call and the output it produced share one bubble: the call's + // click-to-expand block followed by the result's (an error result marks the + // whole emission as an error). + result(resultContent: string, isError: boolean): void { + const callBlock = this.takePending(); + this.emit( + callBlock + formatToolResult(resultContent, isError), + isError, + ); } } diff --git a/ts/packages/dispatcher/dispatcher/test/actionContext.spec.ts b/ts/packages/dispatcher/dispatcher/test/actionContext.spec.ts new file mode 100644 index 0000000000..c0c1aa73c4 --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/test/actionContext.spec.ts @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { getActionContext } from "../src/execute/actionContext.js"; + +// Builds the minimal CommandHandlerContext surface that getActionContext and +// makeClientIOMessage touch for non-error display content. +function makeContext() { + const calls: { type: string; mode?: string }[] = []; + const context = { + displayCount: 0, + reasoningSourceIcon: undefined, + collectCommandResult: false, + metricsManager: undefined, + agents: { + getSessionContext: () => ({}) as any, + isAppAgentName: () => false, + getAppAgentEmoji: () => undefined, + }, + clientIO: { + setDisplayInfo: () => {}, + setDisplay: () => calls.push({ type: "set" }), + appendDisplay: (_msg: any, mode: string) => + calls.push({ type: "append", mode }), + }, + } as any; + return { context, calls }; +} + +describe("getActionContext displayCount tracking", () => { + const requestId = { requestId: "r1" } as any; + const content = { type: "text" as const, content: "hi" }; + + it("setDisplay increments displayCount", () => { + const { context } = makeContext(); + const { actionContext } = getActionContext( + "agent", + context, + requestId, + 0, + ); + actionContext.actionIO.setDisplay(content); + expect(context.displayCount).toBe(1); + }); + + it("appendDisplay in block/inline mode increments displayCount", () => { + const { context } = makeContext(); + const { actionContext } = getActionContext( + "agent", + context, + requestId, + 0, + ); + actionContext.actionIO.appendDisplay(content, "block"); + actionContext.actionIO.appendDisplay(content, "inline"); + expect(context.displayCount).toBe(2); + }); + + it("appendDisplay defaults to a counted mode", () => { + const { context } = makeContext(); + const { actionContext } = getActionContext( + "agent", + context, + requestId, + 0, + ); + actionContext.actionIO.appendDisplay(content); + expect(context.displayCount).toBe(1); + }); + + it("transient status (temporary mode) does not increment displayCount", () => { + const { context } = makeContext(); + const { actionContext } = getActionContext( + "agent", + context, + requestId, + 0, + ); + actionContext.actionIO.appendDisplay(content, "temporary"); + expect(context.displayCount).toBe(0); + }); +}); diff --git a/ts/packages/dispatcher/dispatcher/test/completion.spec.ts b/ts/packages/dispatcher/dispatcher/test/completion.spec.ts index e0d8da07d7..56d89e195d 100644 --- a/ts/packages/dispatcher/dispatcher/test/completion.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/completion.spec.ts @@ -2236,4 +2236,103 @@ describe("Command Completion - startIndex", () => { } }); }); + + // ── @help completes its `command` argument with command paths ──────── + + describe("help command argument completion", () => { + it("offers command names, agent names, and flags for '@help '", async () => { + const result = await getCommandCompletion( + "@help ", + "forward", + context, + ); + expect(result).toBeDefined(); + // startIndex anchors at the argument boundary (after "@help "). + expect(result!.startIndex).toBe(6); + + const commands = result!.completions.find( + (g) => g.name === "Commands", + ); + expect(commands).toBeDefined(); + // System subcommands are valid arguments to @help. + expect(commands!.completions).toContain("config"); + + const agentNames = result!.completions.find( + (g) => g.name === "Agent Names", + ); + expect(agentNames).toBeDefined(); + expect(agentNames!.completions).toContain("comptest"); + + // Built-in flags are still offered. + const flags = result!.completions.find( + (g) => g.name === "Command Flags", + ); + expect(flags).toBeDefined(); + expect(flags!.completions).toContain("--all"); + expect(flags!.completions).toContain("-a"); + }); + + it("offers command names alongside flags for '@help' (no trailing space)", async () => { + // Regression guard: a matched command like @help must still + // complete its `command` argument on forward typing, not just + // the flags. + const result = await getCommandCompletion( + "@help", + "forward", + context, + ); + expect(result).toBeDefined(); + const commands = result!.completions.find( + (g) => g.name === "Commands", + ); + expect(commands).toBeDefined(); + expect(commands!.completions).toContain("config"); + const agentNames = result!.completions.find( + (g) => g.name === "Agent Names", + ); + expect(agentNames).toBeDefined(); + expect(agentNames!.completions).toContain("comptest"); + }); + + it("anchors partial argument for trie filtering '@help con'", async () => { + const result = await getCommandCompletion( + "@help con", + "forward", + context, + ); + expect(result).toBeDefined(); + // "@help con" (9 chars) → argument "con" starts at index 6. + // matchedPrefixLength is 0 (nothing resolved), so the anchor + // stays at the value start and the caller's trie filters + // "con" against the full command/agent set. + expect(result!.startIndex).toBe(6); + const agentNames = result!.completions.find( + (g) => g.name === "Agent Names", + ); + expect(agentNames).toBeDefined(); + expect(agentNames!.completions).toContain("comptest"); + }); + + it("drills into subcommands for a nested path '@help config '", async () => { + const result = await getCommandCompletion( + "@help config ", + "forward", + context, + ); + expect(result).toBeDefined(); + // "@help config " (13 chars): resolution consumes "config " + // so the anchor advances past it to offer config's subcommands. + expect(result!.startIndex).toBe(13); + const commands = result!.completions.find( + (g) => g.name === "Commands", + ); + expect(commands).toBeDefined(); + expect(commands!.completions.length).toBeGreaterThan(0); + // An agent/subcommand was consumed → agent names no longer apply. + const agentNames = result!.completions.find( + (g) => g.name === "Agent Names", + ); + expect(agentNames).toBeUndefined(); + }); + }); }); diff --git a/ts/packages/dispatcher/dispatcher/test/conversationActionHandler.spec.ts b/ts/packages/dispatcher/dispatcher/test/conversationActionHandler.spec.ts index 9a35d5d72f..2a6d697699 100644 --- a/ts/packages/dispatcher/dispatcher/test/conversationActionHandler.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/conversationActionHandler.spec.ts @@ -70,20 +70,12 @@ describe("executeConversationAction delegates to @conversation commands", () => expectCommand('@conversation new "my work project"'); }); - it("uses single-quoted tokens when names contain double quotes", async () => { + it("escapes embedded quotes in conversation names", async () => { await run({ actionName: "newConversation", parameters: { name: 'fix "bug"' }, }); - expectCommand(`@conversation new 'fix "bug"'`); - }); - - it("escapes when names contain both quote types", async () => { - await run({ - actionName: "newConversation", - parameters: { name: `Sam's "playlist"` }, - }); - expectCommand(`@conversation new "Sam's \\"playlist\\""`); + expectCommand('@conversation new "fix \\"bug\\""'); }); it("listConversation runs list", async () => { @@ -145,4 +137,59 @@ describe("executeConversationAction delegates to @conversation commands", () => }); expectCommand('@conversation delete "old-project"'); }); + + it("findConversation runs find with the query", async () => { + await run({ + actionName: "findConversation", + parameters: { query: "the workout playlist" }, + }); + expectCommand("@conversation find the workout playlist"); + }); + + it("searchConversation runs search with the query", async () => { + await run({ + actionName: "searchConversation", + parameters: { query: "the docker command" }, + }); + expectCommand("@conversation search the docker command"); + }); + + it("indexConversation (current) runs a bare index command", async () => { + await run({ actionName: "indexConversation", parameters: {} }); + expectCommand("@conversation index"); + }); + + it("indexConversation with 'all' runs index all (unquoted)", async () => { + await run({ + actionName: "indexConversation", + parameters: { name: "all" }, + }); + expectCommand("@conversation index all"); + }); + + it("indexConversation with a name runs a quoted index", async () => { + await run({ + actionName: "indexConversation", + parameters: { name: "my work project" }, + }); + expectCommand('@conversation index "my work project"'); + }); + + it("summarizeConversation (current) runs a bare summarize command", async () => { + await run({ actionName: "summarizeConversation", parameters: {} }); + expectCommand("@conversation summarize"); + }); + + it("summarizeConversation with a name runs a quoted summarize", async () => { + await run({ + actionName: "summarizeConversation", + parameters: { name: "Paris trip" }, + }); + expectCommand('@conversation summarize "Paris trip"'); + }); + + it("help runs help", async () => { + await run({ actionName: "help" }); + expectCommand("@conversation help"); + }); }); diff --git a/ts/packages/dispatcher/dispatcher/test/conversationCommandHandlers.spec.ts b/ts/packages/dispatcher/dispatcher/test/conversationCommandHandlers.spec.ts index f4a76d93ad..6d30a56706 100644 --- a/ts/packages/dispatcher/dispatcher/test/conversationCommandHandlers.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/conversationCommandHandlers.spec.ts @@ -113,6 +113,11 @@ describe("@conversation command handlers build manage-conversation payloads", () expectPayload({ subcommand: "delete", name: "old-project" }); }); + it("search", async () => { + await runCommand("search", { args: { query: "docker command" } }); + expectPayload({ subcommand: "search", query: "docker command" }); + }); + it("help", async () => { await runCommand("help", undefined); expectPayload({ subcommand: "help" }); diff --git a/ts/packages/dispatcher/dispatcher/test/conversationGrammar.spec.ts b/ts/packages/dispatcher/dispatcher/test/conversationGrammar.spec.ts index cd4e3d78c8..1ecb0b4c28 100644 --- a/ts/packages/dispatcher/dispatcher/test/conversationGrammar.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/conversationGrammar.spec.ts @@ -62,6 +62,14 @@ describe("system.conversation grammar", () => { "which chats do i have", "please list conversations", "can you show my conversations", + // "all of the / all of my / all my" determiner variants must + // resolve here rather than being grabbed as a file path by + // powershell.listFiles's wildcard rule. + "list all of the conversations", + "list all of my conversations", + "list all my conversations", + "show me all of the conversations", + "show all of my chats", ])("matches %p", (input) => { const r = match(input); expect(r).toBeDefined(); @@ -105,6 +113,24 @@ describe("system.conversation grammar", () => { expect(r.parameters.name).toBe("gym music"); }); + it("matches 'switch to the conversation where we talked about X'", () => { + const r = match( + "switch to the conversation where we talked about spikes", + ); + expect(r).toBeDefined(); + expect(r.actionName).toBe("switchConversation"); + expect(r.parameters.name).toBe("spikes"); + }); + + it("matches 'go to the conversation where we discussed X'", () => { + const r = match( + "go to the conversation where we discussed the budget", + ); + expect(r).toBeDefined(); + expect(r.actionName).toBe("switchConversation"); + expect(r.parameters.name).toBe("the budget"); + }); + it("does NOT match bare 'switch to X' (no conversation anchor)", () => { // This avoids stealing matches from agents like browser/player that // legitimately use 'switch to X' for their own domain (e.g. @@ -227,4 +253,98 @@ describe("system.conversation grammar", () => { expect(r?.actionName).toBe("showConversationInfo"); }); }); + + describe("searchConversation", () => { + it.each([ + [ + "search inside my conversations for the docker command", + "the docker command", + ], + ["search across conversations for pricing", "pricing"], + ["search within my conversations for the api key", "the api key"], + ["search my chat history for taxes", "taxes"], + ["search the content of my conversations for budget", "budget"], + ])("matches %j", (input, query) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("searchConversation"); + expect(r.parameters.query).toBe(query); + }); + + it("does NOT hijack name-search 'search my conversations for taxes'", () => { + const r = match("search my conversations for taxes"); + expect(r?.actionName).toBe("findConversation"); + }); + }); + + describe("indexConversation", () => { + it.each([ + "index this conversation", + "index the current conversation", + "reindex this conversation", + ])("matches current-conversation %j", (input) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("indexConversation"); + expect(r.parameters?.name).toBeUndefined(); + }); + + it.each([ + ["index all conversations", "all"], + ["reindex my conversations", "all"], + ["index all of my conversations", "all"], + ["make my conversations searchable", "all"], + ["index the conversation about taxes", "taxes"], + ["index the design conversation", "design"], + ])("matches %j with name %j", (input, name) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("indexConversation"); + expect(r.parameters.name).toBe(name); + }); + + it("does NOT hijack content-search 'search my conversations for x'", () => { + const r = match("search my conversations for indexing"); + expect(r?.actionName).not.toBe("indexConversation"); + }); + }); + + describe("summarizeConversation", () => { + it.each([ + "summarize this conversation", + "summarize the current conversation", + "recap this conversation", + "give me a summary of this conversation", + ])("matches current-conversation %j", (input) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("summarizeConversation"); + expect(r.parameters?.name).toBeUndefined(); + }); + + it.each([ + ["summarize the conversation about taxes", "taxes"], + ["summarize the design conversation", "design"], + ["summarize the yes conversation", "yes"], + ["give me a summary of the conversation about taxes", "taxes"], + ])("matches %j with name %j", (input, name) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("summarizeConversation"); + expect(r.parameters.name).toBe(name); + }); + }); + + describe("help", () => { + it.each([ + "conversation help", + "chat help", + "help with conversations", + "help managing conversations", + ])("matches %j", (input) => { + const r = match(input); + expect(r).toBeDefined(); + expect(r.actionName).toBe("help"); + }); + }); }); diff --git a/ts/packages/dispatcher/dispatcher/test/conversationIndexProgress.spec.ts b/ts/packages/dispatcher/dispatcher/test/conversationIndexProgress.spec.ts new file mode 100644 index 0000000000..8a4f2f7492 --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/test/conversationIndexProgress.spec.ts @@ -0,0 +1,117 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { describe, it, expect } from "@jest/globals"; +import type { DisplayContent } from "@typeagent/agent-sdk"; +import { + renderConversationIndexProgress, + renderConversationIndexSummary, +} from "../src/context/system/conversationIndexProgress.js"; + +// DisplayContent is either a bare string or a typed object (which may carry a +// plain-text alternate). Pull whichever text a text-only host would render. +function textOf(content: DisplayContent): string { + if (typeof content === "string") { + return content; + } + const typed = content as { + content: unknown; + alternates?: { type: string; content: unknown }[]; + }; + const alt = typed.alternates?.find((a) => a.type === "text"); + return String(alt?.content ?? typed.content); +} + +// The primary (html / markdown) content a rich host renders. +function primaryOf(content: DisplayContent): string { + if (typeof content === "string") { + return content; + } + return String((content as { content: unknown }).content); +} + +describe("conversation index progress rendering", () => { + it("renders a bar with the (bold) conversation name, percent, and counts", () => { + const content = renderConversationIndexProgress({ + done: 5, + total: 20, + name: "CLI notes", + }); + const text = textOf(content); + expect(text).toContain("CLI notes"); + expect(text).toContain("25%"); + expect(text).toContain("5/20"); + // The name is bold in the html bar. + expect(primaryOf(content)).toContain("CLI notes"); + }); + + it("carries the live-bubble rail marker (title + percent) in the html bar", () => { + // ChatPanel's top rail reads these data-* attributes off the progress + // bubble to build its chip; the name is escaped in the attribute value. + const html = primaryOf( + renderConversationIndexProgress({ + done: 5, + total: 20, + name: "CLI notes", + }), + ); + expect(html).toContain('data-live-percent="25"'); + expect(html).toContain( + 'data-live-title="Indexing "CLI notes""', + ); + // Without a name it falls back to a generic, static title. + expect( + primaryOf(renderConversationIndexProgress({ done: 1, total: 2 })), + ).toContain('data-live-title="Indexing conversations"'); + }); + + it("shows 0% before the total is known (no misleading full bar)", () => { + expect( + textOf(renderConversationIndexProgress({ done: 0, total: 0 })), + ).toContain("0%"); + }); + + it("falls back to a generic heading without a name", () => { + expect( + textOf(renderConversationIndexProgress({ done: 1, total: 2 })), + ).toContain("Indexing conversation content"); + }); + + it("summarizes a single indexed conversation with a bold name", () => { + const content = renderConversationIndexSummary([ + { name: "CLI notes", newlyIndexed: 3, totalMessages: 3 }, + ]); + expect(textOf(content)).toContain("indexed 3 new messages"); + expect(textOf(content)).toContain("3 total"); + expect(primaryOf(content)).toContain("**CLI notes**"); + }); + + it("summarizes an already-up-to-date conversation", () => { + const text = textOf( + renderConversationIndexSummary([ + { name: "CLI notes", newlyIndexed: 0, totalMessages: 5 }, + ]), + ); + expect(text).toContain("already up to date"); + }); + + it("summarizes multiple conversations with a total header and bold names", () => { + const content = renderConversationIndexSummary([ + { name: "A", newlyIndexed: 2, totalMessages: 2 }, + { name: "B", newlyIndexed: 3, totalMessages: 3 }, + ]); + expect(textOf(content)).toContain( + "Indexed 5 new messages across 2 conversations", + ); + expect(textOf(content)).toContain("A:"); + expect(textOf(content)).toContain("B:"); + expect(primaryOf(content)).toContain("**A**"); + expect(primaryOf(content)).toContain("**B**"); + }); + + it("reports nothing to index for an empty result", () => { + expect(textOf(renderConversationIndexSummary([]))).toContain( + "No conversations to index", + ); + }); +}); diff --git a/ts/packages/dispatcher/dispatcher/test/describeCore.spec.ts b/ts/packages/dispatcher/dispatcher/test/describeCore.spec.ts index 9973291b79..b7eb812bc9 100644 --- a/ts/packages/dispatcher/dispatcher/test/describeCore.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/describeCore.spec.ts @@ -18,6 +18,8 @@ import { isCapabilityDiscoveryAlias, renderCapabilitiesDiscoveryFallback, } from "../src/context/system/describe/describeCore.js"; +import { getAgentSchemas } from "../src/context/system/describe/agentSchemaInfo.js"; +import type { CommandHandlerContext } from "../src/context/commandHandlerContext.js"; function makeAction(name: string, description: string) { return { name, description }; @@ -544,3 +546,42 @@ describe("describeCore LLM fallback (no model configured)", () => { expect(result).toBe(deterministic); }); }); + +describe("getAgentSchemas includeSchemaless", () => { + // Minimal context: one registered agent ("greeting") with no action schema. + function makeRosterContext(): CommandHandlerContext { + return { + agents: { + waitUntilReady: async () => {}, + getActionConfigs: () => [], + getAppAgentNames: () => ["greeting"], + getAppAgentEmoji: () => "🖐️", + getAppAgentDescription: () => + "Agent to generate greeting messages", + }, + } as unknown as CommandHandlerContext; + } + + it("omits schema-less agents by default (RPC surface unchanged)", async () => { + expect(await getAgentSchemas(makeRosterContext())).toEqual([]); + }); + + it("includes a schema-less agent as an empty entry when requested", async () => { + const schemas = await getAgentSchemas(makeRosterContext(), undefined, { + includeSchemaless: true, + }); + expect(schemas).toHaveLength(1); + expect(schemas[0]).toMatchObject({ + name: "greeting", + emoji: "🖐️", + description: "Agent to generate greeting messages", + subSchemas: [], + }); + // The describe engine can now resolve and render it, instead of + // reporting "no agent named". + expect(resolveAgent(schemas, "GREETING").kind).toBe("found"); + expect(renderAgentView(schemas[0], false, () => false)).toContain( + "no callable actions", + ); + }); +}); diff --git a/ts/packages/dispatcher/dispatcher/test/systemSchemaParse.spec.ts b/ts/packages/dispatcher/dispatcher/test/systemSchemaParse.spec.ts new file mode 100644 index 0000000000..23519bb437 --- /dev/null +++ b/ts/packages/dispatcher/dispatcher/test/systemSchemaParse.spec.ts @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +// Guards against a system sub-schema that compiles (tsc) but fails the runtime +// strict parse the dispatcher runs when a schema is enabled for translation - +// e.g. a doc comment on the entry type, which the action-schema parser rejects. +// Regular tests miss this because schema parsing is lazy (only on enable/use). +// +// The schema files are globbed (not imported) to avoid the systemAgent import +// cycle; ENTRY_TYPES must name every one, so a newly added schema fails here +// until it is covered. + +import * as fs from "node:fs"; +import * as path from "node:path"; +import { fileURLToPath } from "node:url"; +import { parseActionSchemaSource } from "@typeagent/action-schema"; + +// __dirname is dist/test/, so go up two levels to the package root, then src. +const schemaDir = path.resolve( + path.dirname(fileURLToPath(import.meta.url)), + "..", + "..", + "src", + "context", + "system", + "schema", +); + +// schema file name -> its exported entry (action) type, matching the +// subActionManifests registration in systemAgent.ts. +const ENTRY_TYPES: Record = { + "configActionSchema.ts": "ConfigAction", + "conversationActionSchema.ts": "ConversationAction", + "grammarActionSchema.ts": "GrammarAction", + "helpActionSchema.ts": "HelpAction", + "historyActionSchema.ts": "HistoryAction", + "notificationActionSchema.ts": "NotificationAction", + "settingsActionSchema.ts": "UserSettingsAction", +}; + +const schemaFiles = fs + .readdirSync(schemaDir) + .filter((f) => f.endsWith("ActionSchema.ts")); + +describe("system sub-schemas parse in strict mode", () => { + test("every schema file has a known entry type", () => { + const missing = schemaFiles.filter((f) => !(f in ENTRY_TYPES)); + expect(missing).toEqual([]); + }); + + test.each(schemaFiles)("%s parses strictly", (file) => { + const schemaType = ENTRY_TYPES[file]; + expect(schemaType).toBeDefined(); + const source = fs.readFileSync(path.join(schemaDir, file), "utf-8"); + // strict=true mirrors the runtime schema-enable path. + const parsed = parseActionSchemaSource( + source, + `system.${file}`, + schemaType, + file, + undefined, + true, + ); + expect(parsed.actionSchemas.size).toBeGreaterThan(0); + }); +}); diff --git a/ts/packages/dispatcher/dispatcher/test/toolRunFolder.spec.ts b/ts/packages/dispatcher/dispatcher/test/toolRunFolder.spec.ts index 3acc845ce1..99a283dab3 100644 --- a/ts/packages/dispatcher/dispatcher/test/toolRunFolder.spec.ts +++ b/ts/packages/dispatcher/dispatcher/test/toolRunFolder.spec.ts @@ -4,6 +4,7 @@ import { ToolRunFolder, formatToolRun, + formatToolResult, } from "../src/reasoning/reasoningLoopBase.js"; // Collect the strings the folder emits so each test can assert on the exact @@ -12,13 +13,14 @@ import { // arguments vary independently (as real folded calls do). function makeFolder( format: (tool: string, args: unknown) => string = (t) => t, -): { folder: ToolRunFolder; emitted: string[] } { +): { folder: ToolRunFolder; emitted: string[]; errors: boolean[] } { const emitted: string[] = []; - const folder = new ToolRunFolder( - (content) => emitted.push(content), - format, - ); - return { folder, emitted }; + const errors: boolean[] = []; + const folder = new ToolRunFolder((content, isError) => { + emitted.push(content); + errors.push(isError); + }, format); + return { folder, emitted, errors }; } // Every tool call (single or folded) renders as a native @@ -170,6 +172,48 @@ describe("ToolRunFolder", () => { expectRun(emitted[0], "A x2", ["A", "A"]); expectRun(emitted[1], "A", ["A"]); // second run is a single call }); + + it("result() emits the buffered call and its result together in one block", () => { + const { folder, emitted, errors } = makeFolder(); + folder.tool("search", { q: "fruit" }); + expect(emitted).toEqual([]); // buffered until the result arrives + folder.result("Found 3 matches", false); + expect(emitted).toHaveLength(1); + // One emission carries both the call block and the result block. + expect(emitted[0]).toContain('
'); + expect(emitted[0]).toContain('
'); + expect(emitted[0]).toContain("Found 3 matches"); + expect(errors[0]).toBe(false); + }); + + it("result() marks a failed tool as an error emission", () => { + const { folder, emitted, errors } = makeFolder(); + folder.tool("shell", { cmd: "boom" }); + folder.result("nonzero exit", true); + expect(emitted).toHaveLength(1); + expect(emitted[0]).toContain("reasoning-tool-result-error"); + expect(errors[0]).toBe(true); + }); + + it("result() with no buffered call emits just the result", () => { + const { folder, emitted } = makeFolder(); + folder.result("orphan result", false); + expect(emitted).toHaveLength(1); + expect(emitted[0]).not.toContain("reasoning-tool-call"); + expect(emitted[0]).toContain('
'); + }); + + it("keeps the call and result separate when flush() splits them", () => { + const { folder, emitted } = makeFolder(); + folder.tool("A", {}); + folder.flush(); // e.g. a thinking block interrupts before the result + folder.result("late", false); + expect(emitted).toHaveLength(2); + expect(emitted[0]).toContain("reasoning-tool-call"); + expect(emitted[0]).not.toContain("reasoning-tool-result"); + expect(emitted[1]).toContain("reasoning-tool-result"); + expect(emitted[1]).not.toContain("reasoning-tool-call"); + }); }); describe("formatToolRun", () => { @@ -214,3 +258,64 @@ describe("formatToolRun", () => { expect(html).toContain("<script>"); }); }); + +describe("formatToolResult", () => { + // Pull the summary line and the full body text out of a rendered result + // block for assertions. + function parseResult(html: string): { summary: string; body: string } { + const summary = + html.match( + /reasoning-tool-result-summary">([\s\S]*?)<\/summary>/, + )?.[1] ?? ""; + const body = + html.match(/reasoning-tool-result-body">([\s\S]*?)<\/pre>/)?.[1] ?? + ""; + return { summary, body }; + } + + it("renders a success result as a collapsed block with a one-line preview and full body", () => { + const html = formatToolResult("Found 3 matches:\nalpha\nbeta", false); + expect(html).toContain('
'); + expect(html).not.toContain("reasoning-tool-result-error"); + expect(html).toContain( + '\u21B3', + ); + const { summary, body } = parseResult(html); + // The preview flattens newlines into a single line. + expect(summary).toContain("Found 3 matches: alpha beta"); + // The body preserves the full text (newlines intact). + expect(body).toBe("Found 3 matches:\nalpha\nbeta"); + }); + + it("marks a failed result with the error class and label", () => { + const html = formatToolResult("boom", true); + expect(html).toContain( + '
', + ); + expect(html).toContain("Error:"); + expect(parseResult(html).body).toBe("boom"); + }); + + it("truncates the summary preview but keeps the full body for the viewer", () => { + const long = "x".repeat(300); + const html = formatToolResult(long, false); + const { summary, body } = parseResult(html); + // Preview is capped (…) so the summary line stays short... + expect(summary).toContain("\u2026"); + expect(summary.length).toBeLessThan(long.length); + // ...but the full text is still available in the body. + expect(body).toBe(long); + }); + + it("HTML-escapes result content so markup cannot break out", () => { + const html = formatToolResult("", false); + expect(html).not.toContain(""); + expect(html).toContain("<script>"); + }); + + it("shows (empty) for a blank result", () => { + const html = formatToolResult(" ", false); + expect(html).toContain("(empty)"); + expect(parseResult(html).body).toBe("(empty)"); + }); +}); diff --git a/ts/packages/memory/conversation/src/conversationMemory.ts b/ts/packages/memory/conversation/src/conversationMemory.ts index fc472cad0d..6d2d21aaa9 100644 --- a/ts/packages/memory/conversation/src/conversationMemory.ts +++ b/ts/packages/memory/conversation/src/conversationMemory.ts @@ -233,7 +233,17 @@ export class ConversationMemory } public async waitForPendingTasks(): Promise { + // async's queue.drain() promise only resolves on the NEXT drain event; + // when the queue is already idle no such event ever fires and awaiting + // it would hang forever. idle() short-circuits that. It is checked + // synchronously right before drain(), so no task can settle in the gap. + if (this.updatesTaskQueue.idle()) { + debugLogger("waitForPendingTasks: queue idle, nothing to drain"); + return; + } + debugLogger("waitForPendingTasks: draining queue"); await this.updatesTaskQueue.drain(); + debugLogger("waitForPendingTasks: drained"); } public async serialize(): Promise { diff --git a/ts/packages/memory/conversation/src/memory.ts b/ts/packages/memory/conversation/src/memory.ts index ba0428c9c8..36a4d128a5 100644 --- a/ts/packages/memory/conversation/src/memory.ts +++ b/ts/packages/memory/conversation/src/memory.ts @@ -278,6 +278,29 @@ export abstract class Memory< ); } + /** + * Search this memory's messages by similarity to `queryText`, using the + * message-text embedding index. Unlike {@link searchWithLanguage} / + * {@link searchKnowledge}, this matches raw message text and does NOT + * depend on knowledge extraction having run - so literal / near-literal + * mentions are found even before (or without) extraction. + * @param queryText text to match message content against + * @param when optional scope filter + * @param options search options + */ + public async searchByTextSimilarity( + queryText: string, + when?: kp.WhenFilter, + options?: kp.SearchOptions, + ): Promise { + return kp.searchConversationByTextSimilarity( + this.conversation, + queryText, + when, + options, + ); + } + /** * Search knowledge extracted from this conversation * @param selectExpr diff --git a/ts/packages/shell/src/renderer/src/chatPanelBridge.ts b/ts/packages/shell/src/renderer/src/chatPanelBridge.ts index 05a6adeb19..320bba4b34 100644 --- a/ts/packages/shell/src/renderer/src/chatPanelBridge.ts +++ b/ts/packages/shell/src/renderer/src/chatPanelBridge.ts @@ -686,6 +686,23 @@ export function createChatPanelClient( // permanent=false is a recoverable soft delete (trash). void dispatcher?.recordUserHide(requestId, true, target, permanent); }, + // Live-updating displays (an agent's ActionResult.dynamicDisplayId, + // e.g. the player's now-playing "status" card). ChatPanel arms a + // refresh timer on setDynamicDisplay and calls this each tick to pull + // fresh content; it also only registers the bubble with the top rail + // once a refresh returns. Without this callback setDynamicDisplay is a + // no-op, so the card never updates and never pins. Read the dispatcher + // closure per call so it stays reconnect-safe; "html" because the shell + // renders HTML display content. + getDynamicDisplay: async (source, displayId) => { + const d = dispatcher; + if (d === undefined) { + throw new Error( + "Dispatcher not ready for dynamic display refresh", + ); + } + return d.getDynamicDisplay(source, "html", displayId); + }, speechProvider, ttsProvider, imageCaptureProvider, @@ -866,13 +883,23 @@ export function createChatPanelClient( }); }, setDynamicDisplay: ( - _requestId, + requestId, source, _actionIndex, displayId, nextRefreshMs, ) => { - chatPanel.setDynamicDisplay(source, displayId, nextRefreshMs); + afterReplay(() => { + if (isCancelledRequest(ridStr(requestId))) return; + // Pass the requestId so chat-ui refreshes the action's own + // bubble in place instead of a separate globe-icon card. + chatPanel.setDynamicDisplay( + source, + displayId, + nextRefreshMs, + ridStr(requestId), + ); + }); }, question: async (requestId, message, choices, defaultId) => { if (requestId === undefined) { diff --git a/ts/packages/typeagent/src/vector/embeddings.ts b/ts/packages/typeagent/src/vector/embeddings.ts index ae887af33a..77741f723e 100644 --- a/ts/packages/typeagent/src/vector/embeddings.ts +++ b/ts/packages/typeagent/src/vector/embeddings.ts @@ -99,6 +99,12 @@ export function indexesOfNearest( type: SimilarityType, minScore: number = 0, ): ScoredItem[] { + // A zero/negative cap has no valid ranking to build: TopNCollection(0) + // has no heap top, so the first push would dereference an undefined top. + // Asking for 0 nearest yields nothing. + if (maxMatches <= 0) { + return []; + } const matches = new TopNCollection(maxMatches, -1); if (type === SimilarityType.Dot) { for (let i = 0; i < list.length; ++i) { diff --git a/ts/packages/vscode-shell/src/agentServerBridge.ts b/ts/packages/vscode-shell/src/agentServerBridge.ts index 5dcf3e7d6d..9a1967410a 100644 --- a/ts/packages/vscode-shell/src/agentServerBridge.ts +++ b/ts/packages/vscode-shell/src/agentServerBridge.ts @@ -2131,8 +2131,6 @@ export class AgentServerBridge { } } }, - handleShellAction: (requestId, data) => - this.handleShellAction(requestId, data), handleManageConversation: (requestId, data) => this.handleManageConversation(requestId, data), }); @@ -2153,7 +2151,7 @@ export class AgentServerBridge { kind?: "info" | "warning" | "error" | "success"; } | ReturnType, - source: string = "code.code-vscode-shell", + source: string = "conversation", ): void { this.broadcastToWebviews({ type: "setDisplay", @@ -2183,222 +2181,6 @@ export class AgentServerBridge { }); } - /** - * Handle a "vscode-shell-action" routed from the code agent. Targeted - * to the originating client by the agent server's takeAction routing, - * so only this bridge (the originator's bridge) receives it. - */ - private async handleShellAction(requestId: any, data: any): Promise { - if (!data || typeof data !== "object") return; - const actionName = data.actionName as string | undefined; - const params = (data.parameters ?? {}) as { - name?: string; - newName?: string; - }; - - switch (actionName) { - case "newConversation": - await this.newConversationFromAgent(requestId, params.name); - break; - case "renameConversation": - if (params.newName) { - await this.renameCurrentConversationFromAgent( - params.newName, - ); - } - break; - case "switchConversation": - await this.switchConversationFromAgent(params.name); - break; - case "deleteConversation": - await this.deleteConversationFromAgent(requestId, params.name); - break; - } - } - - /** - * Create a new conversation programmatically (from a chat-issued - * action). If `name` is omitted, falls back to the interactive prompt. - */ - private async newConversationFromAgent( - requestId: any, - name?: string, - ): Promise { - if (!this.connection) { - vscode.window.showWarningMessage("Not connected to agent server."); - return; - } - if (!name || !name.trim()) { - await this.newSession(); - return; - } - - const trimmed = name.trim(); - const sessions = await this.connection.listSessions(); - const existing = sessions.find( - (s) => s.name.toLowerCase() === trimmed.toLowerCase(), - ); - if (existing) { - vscode.window.showWarningMessage( - `A conversation named "${trimmed}" already exists; switching to it.`, - ); - this.overwriteActionBubble( - requestId, - `A conversation named "${trimmed}" already exists. Switching to it instead of creating a new one.`, - ); - await this.joinSpecificSession(existing.sessionId, existing.name); - return; - } - - const info = await this.connection.createSession(trimmed); - await this.joinSpecificSession(info.sessionId, trimmed); - vscode.window.showInformationMessage( - `Created and switched to conversation "${trimmed}"`, - ); - } - - /** - * Rename the current conversation programmatically (from chat). - */ - private async renameCurrentConversationFromAgent( - newName: string, - ): Promise { - if (!this.connection || !this.session) { - vscode.window.showWarningMessage("No active conversation."); - return; - } - const trimmed = newName.trim(); - if (!trimmed) return; - - const sessions = await this.connection.listSessions(); - const collision = sessions.find( - (s) => - s.sessionId !== this.session!.sessionId && - s.name.toLowerCase() === trimmed.toLowerCase(), - ); - if (collision) { - vscode.window.showErrorMessage( - `A conversation named "${trimmed}" already exists.`, - ); - return; - } - - await this.connection.renameSession(this.session.sessionId, trimmed); - this.nameOverride = trimmed; - this.broadcastToWebviews({ - type: "status", - connected: true, - sessionId: this.session.sessionId, - sessionName: this.getDisplayName(), - }); - this.onStatusChanged?.(); - vscode.window.showInformationMessage( - `Renamed conversation to "${trimmed}"`, - ); - } - - /** - * Switch to a conversation by display name (from chat). Falls back to - * the interactive picker if no name was provided. If a name is given - * but no conversation matches, creates a new conversation with that - * name and switches to it. - */ - private async switchConversationFromAgent(name?: string): Promise { - if (!this.connection) { - vscode.window.showWarningMessage("Not connected to agent server."); - return; - } - if (!name || !name.trim()) { - await this.switchSession(); - return; - } - - const trimmed = name.trim(); - const sessions = await this.connection.listSessions(); - const match = sessions.find( - (s) => s.name.toLowerCase() === trimmed.toLowerCase(), - ); - if (!match) { - // Create-on-switch: user asked to switch to a conversation - // that doesn't exist yet, so create it and switch to it. - const info = await this.connection.createSession(trimmed); - await this.joinSpecificSession(info.sessionId, trimmed); - vscode.window.showInformationMessage( - `Created and switched to new conversation "${trimmed}".`, - ); - return; - } - if (match.sessionId === this.session?.sessionId) { - return; - } - await this.joinSpecificSession(match.sessionId, match.name); - } - - /** - * Delete a conversation by display name (from chat). Prompts the user - * for confirmation before deleting. Falls back to the interactive - * picker if no name was provided. Refuses to delete the currently - * active conversation. - */ - private async deleteConversationFromAgent( - requestId: any, - name?: string, - ): Promise { - if (!this.connection) { - vscode.window.showWarningMessage("Not connected to agent server."); - return; - } - if (!name || !name.trim()) { - await this.deleteSession(); - return; - } - - const trimmed = name.trim(); - const sessions = await this.connection.listSessions(); - const match = sessions.find( - (s) => s.name.toLowerCase() === trimmed.toLowerCase(), - ); - if (!match) { - vscode.window.showWarningMessage( - `No conversation named "${trimmed}" found.`, - ); - this.overwriteActionBubble( - requestId, - `No conversation named "${trimmed}" found to delete.`, - ); - return; - } - if (match.sessionId === this.session?.sessionId) { - vscode.window.showWarningMessage( - `Cannot delete the currently active conversation "${trimmed}".`, - ); - this.overwriteActionBubble( - requestId, - `Cannot delete the currently active conversation "${match.name}". Switch to a different conversation first.`, - ); - return; - } - - const confirm = await vscode.window.showWarningMessage( - `Delete conversation "${match.name}"? This cannot be undone.`, - { modal: true }, - "Delete", - ); - if (confirm !== "Delete") { - this.overwriteActionBubble( - requestId, - `Delete of conversation "${match.name}" was cancelled.`, - ); - return; - } - - await this.connection.deleteSession(match.sessionId); - vscode.window.showInformationMessage( - `Deleted conversation "${match.name}".`, - ); - this.onStatusChanged?.(); - } - // manage-conversation handler — routed from NL and `@conversation` slash // commands. See ts/docs/architecture/agents/agentServerConversations.md. private async handleManageConversation( diff --git a/ts/packages/vscode-shell/src/bridge/clientIO.ts b/ts/packages/vscode-shell/src/bridge/clientIO.ts index a7d1a823e7..410bc2ceb5 100644 --- a/ts/packages/vscode-shell/src/bridge/clientIO.ts +++ b/ts/packages/vscode-shell/src/bridge/clientIO.ts @@ -73,8 +73,6 @@ export interface BridgeClientIOContext { * the only generic completion signal we have). */ sweepRequestIds?(liveServerIds: Set): void; - /** Handle a "vscode-shell-action" routed from the code agent. */ - handleShellAction(requestId: RequestId, data: unknown): Promise; /** * Handle a "manage-conversation" client action emitted by the system * agent (for both `@conversation` slash commands and natural-language @@ -324,13 +322,7 @@ export function createBridgeClientIO(ctx: BridgeClientIOContext): ClientIO { ctx.broadcast({ type: "interactionCancelled", interactionId }); }, takeAction: (requestId, action, data) => { - if (action === "vscode-shell-action") { - ctx.handleShellAction(requestId, data).catch((e: any) => { - vscode.window.showErrorMessage( - `Shell action failed: ${e?.message ?? String(e)}`, - ); - }); - } else if (action === "manage-conversation") { + if (action === "manage-conversation") { ctx.handleManageConversation(requestId, data).catch( (e: any) => { vscode.window.showErrorMessage( diff --git a/ts/pnpm-lock.yaml b/ts/pnpm-lock.yaml index 8ba83ea33d..918a6cff53 100644 --- a/ts/pnpm-lock.yaml +++ b/ts/pnpm-lock.yaml @@ -24,22 +24,22 @@ importers: devDependencies: '@fluidframework/build-tools': specifier: ^0.57.0 - version: 0.57.0(@types/node@22.15.18)(supports-color@8.1.1) + version: 0.57.0(@types/node@22.20.1)(supports-color@8.1.1) '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 eslint: specifier: ^10.6.0 - version: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + version: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) eslint-plugin-sonarjs: specifier: ^4.1.0 - version: 4.1.0(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1)) + version: 4.2.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1)) jscpd: specifier: ^4.2.5 version: 4.2.5 knip: specifier: ^6.24.0 - version: 6.24.0 + version: 6.29.0 madge: specifier: ^8.0.0 version: 8.0.0(supports-color@8.1.1)(typescript@5.9.3) @@ -54,10 +54,10 @@ importers: version: 0.4.0 tsx: specifier: ^4.21.0 - version: 4.21.0 + version: 4.23.1 typescript-eslint: specifier: ^8.62.1 - version: 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) examples/agentExamples/echo: dependencies: @@ -73,7 +73,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -101,7 +101,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -149,20 +149,20 @@ importers: version: link:../../packages/defaultAgentProvider dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 express: specifier: ^4.22.0 - version: 4.22.1 + version: 4.22.2 find-config: specifier: ^1.0.0 version: 1.0.0 devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -174,16 +174,16 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0(postcss@8.5.21)) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4(postcss@8.5.22)) typescript: specifier: ~5.4.5 version: 5.4.5 @@ -237,13 +237,13 @@ importers: version: link:../../packages/codeProcessor dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 examples-lib: specifier: workspace:* version: link:../examplesLib exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 interactive-app: specifier: workspace:* version: link:../../packages/interactiveApp @@ -271,7 +271,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/classify: dependencies: @@ -289,14 +289,14 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -335,10 +335,10 @@ importers: version: link:../../packages/codeProcessor dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 interactive-app: specifier: workspace:* version: link:../../packages/interactiveApp @@ -347,7 +347,7 @@ importers: version: link:../memoryProviders mongodb: specifier: ^6.15.0 - version: 6.16.0(socks@2.8.7) + version: 6.21.0(socks@2.8.9) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -360,7 +360,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/debugDocGenerator: dependencies: @@ -406,10 +406,10 @@ importers: version: 1.0.0-rc.12 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 fast-xml-parser: specifier: '>=5.5.7 <6.0.0' version: 5.10.1 @@ -431,7 +431,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/proper-lockfile': specifier: ^4.1.4 version: 4.1.4 @@ -443,7 +443,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/examplesLib: dependencies: @@ -461,7 +461,7 @@ importers: version: 5.6.2 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 interactive-app: specifier: workspace:* version: link:../../packages/interactiveApp @@ -477,7 +477,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -486,7 +486,7 @@ importers: dependencies: '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(supports-color@8.1.1)(zod@4.1.13) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/agent-runtime': specifier: workspace:* version: link:../../packages/typeagent @@ -501,7 +501,7 @@ importers: version: link:../../packages/knowPro dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 examples-lib: specifier: workspace:* version: link:../examplesLib @@ -510,7 +510,7 @@ importers: version: link:../../packages/interactiveApp zod: specifier: ^4.1.13 - version: 4.1.13 + version: 4.4.3 devDependencies: copyfiles: specifier: ^2.4.1 @@ -529,7 +529,7 @@ importers: dependencies: '@elastic/elasticsearch': specifier: ^9.3.4 - version: 9.3.4(supports-color@8.1.1) + version: 9.4.2(supports-color@8.1.1) '@typeagent/agent-runtime': specifier: workspace:* version: link:../../packages/typeagent @@ -547,7 +547,7 @@ importers: version: 12.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -557,7 +557,7 @@ importers: version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -566,16 +566,16 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -584,16 +584,16 @@ importers: dependencies: '@oclif/core': specifier: ^4.2.10 - version: 4.5.2 + version: 4.13.0 '@oclif/plugin-help': specifier: ^6 - version: 6.2.26 + version: 6.2.53 fs-extra: specifier: ^11.3.0 - version: 11.3.0 + version: 11.3.6 puppeteer: specifier: ^24.15.0 - version: 24.37.5(typescript@5.4.5) + version: 24.43.1(typescript@5.4.5) ts-node: specifier: ^10.9.1 version: 10.9.2(@types/node@22.20.1)(typescript@5.4.5) @@ -612,7 +612,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -624,7 +624,7 @@ importers: version: link:../../packages/security/mcpValidation tsx: specifier: ^4.21.0 - version: 4.21.0 + version: 4.23.1 examples/playground: dependencies: @@ -645,7 +645,7 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 interactive-app: specifier: workspace:* version: link:../../packages/interactiveApp @@ -658,7 +658,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/remoteClient: dependencies: @@ -671,7 +671,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -701,13 +701,13 @@ importers: version: link:../../packages/dispatcher/dispatcher debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) default-agent-provider: specifier: workspace:* version: link:../../packages/defaultAgentProvider dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 @@ -726,7 +726,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -735,7 +735,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/searchActionTest: dependencies: @@ -756,7 +756,7 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 interactive-app: specifier: workspace:* version: link:../../packages/interactiveApp @@ -769,7 +769,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/snipsBench: dependencies: @@ -782,7 +782,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -797,41 +797,41 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 copy-webpack-plugin: specifier: ^12.0.1 - version: 12.0.2(webpack@5.105.0) + version: 12.0.2(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) examples/vscodeSchemaGen: dependencies: @@ -858,10 +858,10 @@ importers: version: 2.4.1 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 fastest-levenshtein: specifier: ^1.0.16 version: 1.0.16 @@ -871,7 +871,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -880,10 +880,10 @@ importers: dependencies: '@azure/ai-projects': specifier: ^2.2.0 - version: 2.2.0(ws@8.21.1)(zod@3.25.76) + version: 2.3.1(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76) '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@typeagent/agent-runtime': specifier: workspace:* version: link:../../packages/typeagent @@ -907,16 +907,16 @@ importers: version: link:../../packages/codeProcessor debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 fs-extra: specifier: ^11.3.0 - version: 11.3.0 + version: 11.3.6 puppeteer: specifier: ^24.15.0 - version: 24.37.5(typescript@5.4.5) + version: 24.43.1(typescript@5.4.5) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -932,7 +932,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 examples/whisperClient: dependencies: @@ -941,41 +941,41 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 copy-webpack-plugin: specifier: ^12.0.1 - version: 12.0.2(webpack@5.105.0) + version: 12.0.2(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) examples/workflow/adapter: dependencies: @@ -1000,16 +1000,16 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1037,13 +1037,13 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1068,16 +1068,16 @@ importers: version: 29.5.14 '@types/node': specifier: ^22.10.5 - version: 22.15.18 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1093,13 +1093,13 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1114,7 +1114,7 @@ importers: version: link:../../../packages/aiclient ajv: specifier: ^8.17.1 - version: 8.18.0 + version: 8.20.0 debug: specifier: ^4.3.4 version: 4.4.3(supports-color@8.1.1) @@ -1124,19 +1124,19 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1155,16 +1155,16 @@ importers: version: 29.5.14 '@types/node': specifier: ^22.10.5 - version: 22.15.18 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1192,21 +1192,21 @@ importers: version: 29.5.14 '@types/node': specifier: ^22.10.5 - version: 22.19.19 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 vscode-languageserver-protocol: - specifier: ^3.17.5 + specifier: 3.17.5 version: 3.17.5 examples/workflow/model: @@ -1219,13 +1219,13 @@ importers: version: 7.0.15 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1244,10 +1244,10 @@ importers: version: 10.0.10 '@types/node': specifier: ^22.10.5 - version: 22.19.19 + version: 22.20.1 '@types/vscode': specifier: ^1.90.0 - version: 1.100.0 + version: 1.125.0 '@vscode/test-electron': specifier: ^2.4.1 version: 2.5.2 @@ -1268,7 +1268,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1277,7 +1277,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 workflow-compiler: specifier: workspace:* version: link:../compiler @@ -1302,13 +1302,13 @@ importers: devDependencies: '@types/vscode': specifier: ^1.90.0 - version: 1.100.0 + version: 1.125.0 grammar-tools-ui: specifier: workspace:* version: link:../../packages/grammarTools/ui lit: specifier: ^3.1.0 - version: 3.3.2 + version: 3.3.3 rimraf: specifier: ^5.0.0 version: 5.0.10 @@ -1317,13 +1317,13 @@ importers: version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@26.1.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@24.13.3)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/actionGrammar: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/action-schema': specifier: workspace:* version: link:../actionSchema @@ -1335,20 +1335,20 @@ importers: version: link:../config debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.4.5 - version: 16.5.0 + version: 16.6.1 regexp.escape: specifier: ^2.0.1 version: 2.0.1 devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -1360,13 +1360,13 @@ importers: version: 5.6.2 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1375,10 +1375,10 @@ importers: dependencies: '@oclif/core': specifier: ^4.2.10 - version: 4.5.2 + version: 4.13.0 '@oclif/plugin-help': specifier: ^6 - version: 6.2.26 + version: 6.2.53 '@typeagent/action-grammar': specifier: workspace:* version: link:../actionGrammar @@ -1388,7 +1388,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1397,39 +1397,39 @@ importers: dependencies: debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) typescript: specifier: ~5.4.5 version: 5.4.5 devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/actionSchemaCompiler: dependencies: '@oclif/core': specifier: ^4.2.10 - version: 4.5.2 + version: 4.13.0 '@oclif/plugin-help': specifier: ^6 - version: 6.2.26 + version: 6.2.53 '@typeagent/action-schema': specifier: workspace:* version: link:../actionSchema devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1448,10 +1448,10 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/agentRpc: dependencies: @@ -1463,23 +1463,23 @@ importers: version: link:../utils/commonUtils debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1491,26 +1491,26 @@ importers: version: link:../utils/commonUtils debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) type-fest: specifier: ^4.39.1 version: 4.41.0 devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1519,13 +1519,13 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.3.6))(@modelcontextprotocol/sdk@1.26.0(zod@4.3.6))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@anthropic-ai/sdk': specifier: ^0.93.0 - version: 0.93.0(zod@4.3.6) + version: 0.93.0(zod@4.4.3) '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(zod@4.3.6) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/action-grammar': specifier: workspace:* version: link:../actionGrammar @@ -1546,7 +1546,7 @@ importers: version: link:../coderWrapper dotenv: specifier: ^16.4.5 - version: 16.5.0 + version: 16.6.1 form-data: specifier: ^4.0.6 version: 4.0.6 @@ -1558,14 +1558,14 @@ importers: version: 1.43.1(supports-color@8.1.1) openai: specifier: ^4.73.0 - version: 4.103.0(encoding@0.1.13)(ws@8.21.1)(zod@4.3.6) + version: 4.104.0(ws@8.21.1)(zod@4.4.3) zod: specifier: ^4.1.13 - version: 4.3.6 + version: 4.4.3 devDependencies: '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 prettier: specifier: ^3.2.5 version: 3.5.3 @@ -1605,7 +1605,7 @@ importers: version: link:../../utils/webSocketChannelServer '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -1614,13 +1614,13 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1648,7 +1648,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1657,7 +1657,7 @@ importers: dependencies: '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@typeagent/agent-rpc': specifier: workspace:* version: link:../../agentRpc @@ -1691,6 +1691,9 @@ importers: '@typeagent/dispatcher-types': specifier: workspace:* version: link:../../dispatcher/types + '@typeagent/typechat-utils': + specifier: workspace:* + version: link:../../utils/typechatUtils '@typeagent/websocket-channel-server': specifier: workspace:* version: link:../../utils/webSocketChannelServer @@ -1711,7 +1714,7 @@ importers: version: link:../../dispatcher/nodeProviders dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 ws: specifier: ^8.21.1 version: 8.21.1 @@ -1724,7 +1727,7 @@ importers: version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -1733,13 +1736,13 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1748,19 +1751,19 @@ importers: dependencies: '@azure/identity': specifier: ^4.9.1 - version: 4.10.0 + version: 4.13.1 '@azure/identity-broker': specifier: ^1.4.0 version: 1.4.0 '@azure/identity-cache-persistence': specifier: ^1.1.1 - version: 1.2.0 + version: 1.3.0 '@azure/logger': specifier: ^1.1.0 - version: 1.2.0 + version: 1.4.0 '@microsoft/microsoft-graph-client': specifier: ^3.0.7 - version: 3.0.7(@azure/identity@4.10.0) + version: 3.0.7(@azure/identity@4.13.1) '@typeagent/agent-runtime': specifier: workspace:* version: link:../../../typeagent @@ -1778,22 +1781,22 @@ importers: version: 5.6.2 date-fns: specifier: ^4.1.0 - version: 4.1.0 + version: 4.4.0 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 googleapis: specifier: ^144.0.0 - version: 144.0.0(encoding@0.1.13) + version: 144.0.0 open: specifier: ^10.1.0 - version: 10.1.2 + version: 10.2.0 proper-lockfile: specifier: ^4.1.2 version: 4.1.2 @@ -1803,10 +1806,10 @@ importers: devDependencies: '@microsoft/microsoft-graph-types': specifier: ^2.40.0 - version: 2.40.0 + version: 2.43.1 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -1821,13 +1824,13 @@ importers: version: 2.4.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1843,7 +1846,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -1852,10 +1855,10 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.3.6))(@modelcontextprotocol/sdk@1.26.0(zod@4.3.6))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(zod@4.3.6) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/action-schema': specifier: workspace:* version: link:../../actionSchema @@ -1930,19 +1933,19 @@ importers: version: 5.6.2 cheerio: specifier: ^1.1.0 - version: 1.1.0 + version: 1.2.0 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dompurify: specifier: ^3.4.12 version: 3.4.12 express: specifier: ^4.22.0 - version: 4.22.1 + version: 4.22.2 express-rate-limit: specifier: ^7.5.0 - version: 7.5.1(express@4.22.1) + version: 7.5.1(express@4.22.2) graphology: specifier: ^0.25.4 version: 0.25.4(graphology-types@0.24.8) @@ -1972,28 +1975,28 @@ importers: version: 1.3.0 pdfjs-dist: specifier: ^5.3.31 - version: 5.3.31 + version: 5.7.284 puppeteer: specifier: ^24.15.0 - version: 24.37.5(typescript@5.4.5) + version: 24.43.1(typescript@5.4.5) puppeteer-extra: specifier: ^3.3.6 - version: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + version: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) puppeteer-extra-plugin-adblocker: specifier: ^2.13.6 - version: 2.13.6(encoding@0.1.13)(puppeteer-core@24.37.5)(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + version: 2.13.6(puppeteer-core@24.43.1)(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) puppeteer-extra-plugin-stealth: specifier: ^2.11.2 - version: 2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + version: 2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) readline: specifier: ^1.3.0 version: 1.3.0 sanitize-filename: specifier: ^1.6.3 - version: 1.6.3 + version: 1.6.4 typechat: specifier: ^0.1.1 - version: 0.1.1(typescript@5.4.5)(zod@4.3.6) + version: 0.1.1(typescript@5.4.5)(zod@4.4.3) typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2005,14 +2008,14 @@ importers: version: 1.0.15 yaml: specifier: ^2.8.3 - version: 2.8.3 + version: 2.9.0 zod: specifier: ^4.1.13 - version: 4.3.6 + version: 4.4.3 devDependencies: '@fluidframework/build-tools': specifier: ^0.57.0 - version: 0.57.0(@types/node@22.15.18)(supports-color@8.1.1) + version: 0.57.0(@types/node@22.20.1)(supports-color@8.1.1) '@typeagent/action-grammar-compiler': specifier: workspace:* version: link:../../actionGrammarCompiler @@ -2021,10 +2024,10 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.21 - version: 4.17.21 + version: 4.17.25 '@types/html-to-text': specifier: ^9.0.4 version: 9.0.4 @@ -2033,34 +2036,34 @@ importers: version: 29.5.14 '@types/jquery': specifier: ^3.5.14 - version: 3.5.32 + version: 3.5.34 '@types/jsdom': specifier: ^28.0.0 - version: 28.0.0 + version: 28.0.3 '@types/jsonpath': specifier: 0.2.4 version: 0.2.4 '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 '@types/ws': specifier: ^8.5.10 version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0(supports-color@8.1.1) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-jest: specifier: ^29.3.2 - version: 29.3.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5) vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@22.15.18)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.8.3) + version: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/agents/browserControlRpc: dependencies: @@ -2076,7 +2079,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2115,13 +2118,13 @@ importers: version: link:../../dispatcher/types bootstrap: specifier: ^5.3.3 - version: 5.3.6(@popperjs/core@2.11.8) + version: 5.3.8(@popperjs/core@2.11.8) cytoscape: specifier: ^3.32.0 - version: 3.33.3 + version: 3.34.0 cytoscape-dagre: specifier: ^2.5.0 - version: 2.5.0(cytoscape@3.33.3) + version: 2.5.0(cytoscape@3.34.0) dagre: specifier: ^0.8.5 version: 0.8.5 @@ -2136,7 +2139,7 @@ importers: version: 9.0.5 markdown-it: specifier: ^14.2.0 - version: 14.2.0 + version: 14.3.0 prismjs: specifier: ^1.30.0 version: 1.30.0 @@ -2146,7 +2149,7 @@ importers: version: 0.2.3(esbuild@0.28.1) '@fluidframework/build-tools': specifier: ^0.57.0 - version: 0.57.0(@types/node@22.20.1) + version: 0.57.0(@types/node@22.20.1)(supports-color@8.1.1) '@typeagent/action-grammar-compiler': specifier: workspace:* version: link:../../actionGrammarCompiler @@ -2155,13 +2158,13 @@ importers: version: 0.0.256 '@types/cytoscape': specifier: ^3.21.9 - version: 3.21.9 + version: 3.31.0 '@types/cytoscape-dagre': specifier: ^2.3.3 - version: 2.3.3 + version: 2.3.4 '@types/dagre': specifier: ^0.7.52 - version: 0.7.52 + version: 0.7.54 '@types/debug': specifier: ^4.1.12 version: 4.1.13 @@ -2173,7 +2176,7 @@ importers: version: 29.5.14 '@types/jsdom': specifier: ^28.0.0 - version: 28.0.0 + version: 28.0.3 '@types/markdown-it': specifier: ^14.1.2 version: 14.1.2 @@ -2182,7 +2185,7 @@ importers: version: 22.20.1 '@types/prismjs': specifier: ^1.26.3 - version: 1.26.5 + version: 1.26.6 archiver: specifier: ^7.0.1 version: 7.0.1 @@ -2200,7 +2203,7 @@ importers: version: 7.0.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) jest-chrome: specifier: ^0.8.0 version: 0.8.0(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5))) @@ -2215,16 +2218,16 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-jest: specifier: ^29.3.2 - version: 29.4.9(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5) typescript: specifier: ~5.4.5 version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/agents/calendar: dependencies: @@ -2242,10 +2245,10 @@ importers: version: 5.6.2 date-fns: specifier: ^4.1.0 - version: 4.1.0 + version: 4.4.0 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@typeagent/action-grammar-compiler': specifier: workspace:* @@ -2255,22 +2258,22 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2307,7 +2310,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2334,7 +2337,7 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) ws: specifier: ^8.21.1 version: 8.21.1 @@ -2350,7 +2353,7 @@ importers: version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -2359,16 +2362,16 @@ importers: version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2398,13 +2401,13 @@ importers: version: 5.6.2 cors: specifier: ^2.8.5 - version: 2.8.5 + version: 2.8.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 @@ -2429,13 +2432,13 @@ importers: version: 1.19.5 '@types/cors': specifier: ^2.8.17 - version: 2.8.18 + version: 2.8.19 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -2447,19 +2450,19 @@ importers: version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 copyfiles: specifier: ^2.4.1 version: 2.4.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2481,10 +2484,10 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2493,7 +2496,7 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/agent-runtime': specifier: workspace:* version: link:../../typeagent @@ -2514,23 +2517,23 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@typeagent/action-schema-compiler': specifier: workspace:* version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2552,13 +2555,13 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2591,14 +2594,14 @@ importers: version: link:../../dispatcher/dispatcher debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 copyfiles: specifier: ^2.4.1 version: 2.4.1 @@ -2607,7 +2610,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2632,13 +2635,13 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2660,13 +2663,13 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2688,16 +2691,16 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -2706,28 +2709,28 @@ importers: dependencies: '@milkdown/core': specifier: ^7.3.6 - version: 7.13.1(supports-color@8.1.1) + version: 7.21.3(supports-color@8.1.1) '@milkdown/crepe': specifier: ^7.3.6 - version: 7.13.1(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(typescript@5.4.5) + version: 7.21.3(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(typescript@5.4.5) '@milkdown/plugin-collab': specifier: ^7.3.6 - version: 7.13.1(y-prosemirror@1.3.5(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 7.21.3(y-prosemirror@1.3.7(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31))(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31) '@milkdown/plugin-history': specifier: ^7.3.6 - version: 7.13.1 + version: 7.21.3 '@milkdown/preset-commonmark': specifier: ^7.3.6 - version: 7.13.1 + version: 7.21.3 '@milkdown/preset-gfm': specifier: ^7.3.6 - version: 7.13.1 + version: 7.21.3 '@milkdown/theme-nord': specifier: ^7.3.6 - version: 7.13.1 + version: 7.21.3 '@milkdown/utils': specifier: ^7.3.6 - version: 7.13.1 + version: 7.21.3 '@typeagent/agent-sdk': specifier: workspace:* version: link:../../agentSdk @@ -2742,43 +2745,43 @@ importers: version: link:../../utils/webSocketUtils debug: specifier: ^4.3.4 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dompurify: specifier: ^3.4.12 version: 3.4.12 express: specifier: ^4.22.0 - version: 4.22.1 + version: 4.22.2 express-rate-limit: specifier: ^7.5.0 - version: 7.5.1(express@4.22.1) + version: 7.5.1(express@4.22.2) katex: specifier: ^0.16.21 - version: 0.16.22 + version: 0.16.47 lib0: specifier: ^0.2.52 - version: 0.2.108 + version: 0.2.117 markdown-it: specifier: ^14.2.0 - version: 14.2.0 + version: 14.3.0 markdown-it-texmath: specifier: ^1.0.0 version: 1.0.0 mermaid: specifier: ^11.15.0 - version: 11.15.0 + version: 11.16.0 prosemirror-inputrules: specifier: ^1.2.0 - version: 1.5.0 + version: 1.5.1 prosemirror-model: specifier: ^1.19.0 - version: 1.25.1 + version: 1.25.11 prosemirror-state: specifier: ^1.4.2 - version: 1.4.3 + version: 1.4.4 prosemirror-view: specifier: ^1.31.0 - version: 1.40.0 + version: 1.42.1 typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -2790,32 +2793,32 @@ importers: version: 8.21.1 y-prosemirror: specifier: ^1.2.3 - version: 1.3.5(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) + version: 1.3.7(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31) y-protocols: specifier: ^1.0.5 - version: 1.0.6(yjs@13.6.27) + version: 1.0.7(yjs@13.6.31) y-websocket: specifier: ^3.0.0 - version: 3.0.0(yjs@13.6.27) + version: 3.0.0(yjs@13.6.31) yjs: specifier: ^13.6.8 - version: 13.6.27 + version: 13.6.31 devDependencies: '@milkdown/ctx': - specifier: ~7.13.0 - version: 7.13.1 + specifier: ^7.3.6 + version: 7.21.3 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/katex': specifier: ^0.16.7 - version: 0.16.7 + version: 0.16.8 '@types/markdown-it': specifier: ^14.1.2 version: 14.1.2 @@ -2824,28 +2827,28 @@ importers: version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 copyfiles: specifier: ^2.4.1 version: 2.4.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 sanitize-filename: specifier: ^1.6.3 - version: 1.6.3 + version: 1.6.4 typescript: specifier: ~5.4.5 version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@26.1.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@24.13.3)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/agents/montage: dependencies: @@ -2881,19 +2884,19 @@ importers: version: 7.9.0 d3-cloud: specifier: ^1.2.7 - version: 1.2.7 + version: 1.2.9 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) express: specifier: ^4.22.0 - version: 4.22.1 + version: 4.22.2 express-rate-limit: specifier: ^7.5.0 - version: 7.5.1(express@4.22.1) + version: 7.5.1(express@4.22.2) koffi: specifier: ^2.10.1 - version: 2.11.0 + version: 2.16.3 sharp: specifier: ^0.33.5 version: 0.33.5 @@ -2909,10 +2912,10 @@ importers: version: 1.19.5 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -2921,10 +2924,10 @@ importers: version: 1.2.36 copy-webpack-plugin: specifier: ^12.0.1 - version: 12.0.2(webpack@5.105.0) + version: 12.0.2(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.2.5 version: 3.5.3 @@ -2933,19 +2936,19 @@ importers: version: 5.0.10 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) packages/agents/onboarding: dependencies: @@ -2985,16 +2988,16 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/node': specifier: ^22.0.0 - version: 22.19.19 + version: 22.20.1 '@types/ws': specifier: ^8.5.10 version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 copyfiles: specifier: ^2.4.1 version: 2.4.1 @@ -3003,10 +3006,10 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 tsx: specifier: ^4.21.0 - version: 4.21.0 + version: 4.23.1 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3034,22 +3037,22 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3065,13 +3068,13 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3095,16 +3098,16 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 express: specifier: ^4.22.0 - version: 4.22.1 + version: 4.22.2 open: specifier: ^10.1.0 - version: 10.1.2 + version: 10.2.0 typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -3117,10 +3120,10 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -3129,13 +3132,13 @@ importers: version: 0.0.25 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3166,22 +3169,22 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/node': specifier: ^22.13.1 - version: 22.15.18 + version: 22.20.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3190,7 +3193,7 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/agent-flows': specifier: workspace:* version: link:../../agent-flows @@ -3209,16 +3212,16 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3246,22 +3249,22 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3284,9 +3287,6 @@ importers: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: - '@typeagent/action-schema-compiler': - specifier: workspace:* - version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 version: 4.1.13 @@ -3295,16 +3295,16 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3344,7 +3344,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 copyfiles: specifier: ^2.4.1 version: 2.4.1 @@ -3353,7 +3353,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3387,28 +3387,28 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/node': specifier: ^22.0.0 - version: 22.19.19 + version: 22.20.1 '@types/ws': specifier: ^8.5.10 version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3417,7 +3417,7 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/agent-flows': specifier: workspace:* version: link:../../agent-flows @@ -3433,13 +3433,13 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/agents/test: dependencies: @@ -3452,7 +3452,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3471,13 +3471,13 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3492,50 +3492,50 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@typeagent/action-schema-compiler': specifier: workspace:* version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 copy-webpack-plugin: specifier: ^12.0.1 - version: 12.0.2(webpack@5.105.0) + version: 12.0.2(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) packages/agents/utility: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/agent-sdk': specifier: workspace:* version: link:../../agentSdk @@ -3550,13 +3550,13 @@ importers: version: 9.0.5 puppeteer: specifier: ^24.15.0 - version: 24.37.5(typescript@5.4.5) + version: 24.43.1(typescript@5.4.5) puppeteer-extra: specifier: ^3.3.6 - version: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + version: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) puppeteer-extra-plugin-stealth: specifier: ^2.11.2 - version: 2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) + version: 2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) devDependencies: '@jest/globals': specifier: ^29.7.0 @@ -3572,16 +3572,16 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3600,13 +3600,13 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3631,13 +3631,13 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3665,16 +3665,16 @@ importers: version: link:../../actionSchemaCompiler '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/ws': specifier: ^8.5.10 version: 8.18.1 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3702,13 +3702,13 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@26.1.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@24.13.3)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/agents/weather: dependencies: @@ -3727,16 +3727,16 @@ importers: version: 29.5.14 concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3755,10 +3755,10 @@ importers: version: link:../../actionSchemaCompiler concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3767,7 +3767,7 @@ importers: dependencies: '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@github/copilot-sdk': specifier: 1.0.5 version: 1.0.5 @@ -3782,29 +3782,29 @@ importers: version: 3.2.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3817,16 +3817,16 @@ importers: dependencies: '@aws-sdk/client-s3': specifier: ^3.726.0 - version: 3.1004.0 + version: 3.1093.0 '@aws-sdk/lib-storage': specifier: ^3.726.0 - version: 3.1004.0(@aws-sdk/client-s3@3.1004.0) + version: 3.1093.0(@aws-sdk/client-s3@3.1093.0) '@azure/identity': specifier: ^4.9.1 - version: 4.10.0 + version: 4.13.1 '@azure/storage-blob': specifier: ^12.26.0 - version: 12.27.0 + version: 12.33.0 '@typeagent/agent-cache': specifier: workspace:* version: link:../cache @@ -3862,7 +3862,7 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) default-agent-provider: specifier: workspace:* version: link:../defaultAgentProvider @@ -3871,7 +3871,7 @@ importers: version: link:../dispatcher/nodeProviders dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 @@ -3881,7 +3881,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -3893,13 +3893,13 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -3908,10 +3908,10 @@ importers: dependencies: '@azure/ai-projects': specifier: ^2.2.0 - version: 2.2.0(ws@8.21.1)(zod@3.25.76) + version: 2.3.1(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76) '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@typeagent/agent-runtime': specifier: workspace:* version: link:../typeagent @@ -3932,20 +3932,20 @@ importers: version: 3.2.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) openai: specifier: ^6.16.0 - version: 6.41.0(ws@8.21.1)(zod@3.25.76) + version: 6.48.0(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -3954,13 +3954,13 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4019,7 +4019,7 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) regexp.escape: specifier: ^2.0.1 version: 2.0.1 @@ -4029,10 +4029,10 @@ importers: devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -4041,13 +4041,13 @@ importers: version: 2.0.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 test-lib: specifier: workspace:* version: link:../testLib @@ -4068,41 +4068,41 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 html-webpack-plugin: specifier: ^5.6.0 - version: 5.6.3(webpack@5.105.0) + version: 5.6.7(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) packages/chat-ui: dependencies: @@ -4117,13 +4117,13 @@ importers: version: link:../dispatcher/types ansi_up: specifier: ^6.0.2 - version: 6.0.5 + version: 6.0.6 dompurify: specifier: ^3.4.12 version: 3.4.12 markdown-it: specifier: ^14.2.0 - version: 14.2.0 + version: 14.3.0 devDependencies: '@jest/globals': specifier: ^29.7.0 @@ -4133,13 +4133,13 @@ importers: version: 14.1.2 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0(supports-color@8.1.1) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4148,10 +4148,10 @@ importers: dependencies: '@oclif/core': specifier: ^4.8.0 - version: 4.8.0 + version: 4.13.0 '@oclif/plugin-help': specifier: ^6 - version: 6.2.26 + version: 6.2.53 '@typeagent/action-grammar': specifier: workspace:* version: link:../actionGrammar @@ -4193,13 +4193,13 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) default-agent-provider: specifier: workspace:* version: link:../defaultAgentProvider dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 html-to-text: specifier: ^9.0.5 version: 9.0.5 @@ -4214,7 +4214,7 @@ importers: version: 7.3.0(marked@15.0.12) open: specifier: ^10.1.0 - version: 10.1.2 + version: 10.2.0 ts-node: specifier: ^10.9.1 version: 10.9.2(@types/node@22.20.1)(typescript@5.4.5) @@ -4224,7 +4224,7 @@ importers: version: 29.7.0 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/html-to-text': specifier: ^9.0.4 version: 9.0.4 @@ -4233,16 +4233,16 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-jest: specifier: ^29.4.9 - version: 29.4.9(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5) typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4263,13 +4263,13 @@ importers: version: 5.6.2 cors: specifier: ^2.8.5 - version: 2.8.5 + version: 2.8.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 ws: specifier: ^8.21.1 version: 8.21.1 @@ -4279,19 +4279,19 @@ importers: version: 1.19.5 '@types/cors': specifier: ^2.8.17 - version: 2.8.18 + version: 2.8.19 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/express': specifier: ^4.17.17 - version: 4.17.21 + version: 4.17.25 '@types/mocha': specifier: ^10.0.6 version: 10.0.10 '@types/vscode': specifier: ^1.88.0 - version: 1.100.0 + version: 1.125.0 '@types/ws': specifier: ^8.5.10 version: 8.18.1 @@ -4303,7 +4303,7 @@ importers: version: 2.5.2 '@vscode/vsce': specifier: ^3.2.1 - version: 3.4.0(supports-color@8.1.1) + version: 3.9.2(supports-color@8.1.1) esbuild: specifier: ^0.28.1 version: 0.28.1 @@ -4315,7 +4315,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/codeProcessor: dependencies: @@ -4343,13 +4343,13 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/coderWrapper: dependencies: '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(zod@4.3.6) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/agent-server-client': specifier: workspace:* version: link:../agentServer/client @@ -4377,7 +4377,7 @@ importers: dependencies: '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(supports-color@8.1.1)(zod@4.1.13) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/agent-sdk': specifier: workspace:* version: link:../agentSdk @@ -4395,7 +4395,7 @@ importers: version: link:../agents/weather dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 html-to-text: specifier: ^9.0.5 version: 9.0.5 @@ -4404,7 +4404,7 @@ importers: version: 5.0.0(ws@8.21.1) zod: specifier: ^4.1.13 - version: 4.1.13 + version: 4.4.3 devDependencies: '@jest/globals': specifier: ^29.7.0 @@ -4417,7 +4417,7 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.2.5 version: 3.5.3 @@ -4426,7 +4426,7 @@ importers: version: 5.0.10 ts-jest: specifier: ^29.1.2 - version: 29.3.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)))(typescript@5.4.5) typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4441,7 +4441,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4450,7 +4450,7 @@ importers: dependencies: '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@azure/keyvault-secrets': specifier: ^4.9.0 version: 4.11.2 @@ -4459,7 +4459,7 @@ importers: version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 js-yaml: specifier: ^4.3.0 version: 4.3.0 @@ -4469,7 +4469,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -4478,10 +4478,10 @@ importers: version: 4.0.9 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4512,7 +4512,7 @@ importers: version: 9.0.4 '@types/node': specifier: ^20.10.0 - version: 20.19.40 + version: 20.19.43 esbuild: specifier: ^0.28.1 version: 0.28.1 @@ -4521,7 +4521,7 @@ importers: version: 1.0.0-alpha.6 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4530,10 +4530,10 @@ importers: dependencies: '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(supports-color@8.1.1)(zod@4.1.13) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@modelcontextprotocol/server-filesystem': specifier: 2026.1.14 - version: 2026.1.14(zod@4.1.13) + version: 2026.1.14(zod@4.4.3) '@typeagent/action-grammar': specifier: workspace:* version: link:../actionGrammar @@ -4624,9 +4624,6 @@ importers: '@typeagent/screencapture-agent': specifier: workspace:* version: link:../agents/screencapture - '@typeagent/selfhelp-agent': - specifier: workspace:* - version: link:../agents/selfhelp '@typeagent/studio-agent': specifier: workspace:* version: link:../agents/studio @@ -4662,13 +4659,13 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dispatcher-node-providers: specifier: workspace:* version: link:../dispatcher/nodeProviders exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 file-size: specifier: ^1.0.0 version: 1.0.0 @@ -4686,7 +4683,7 @@ importers: version: 4.1.2 semver: specifier: ^7.7.2 - version: 7.8.4 + version: 7.8.5 settings-agent: specifier: workspace:* version: link:../agents/settings @@ -4695,7 +4692,7 @@ importers: version: 7.2.0 typechat: specifier: ^0.1.1 - version: 0.1.1(typescript@5.4.5)(zod@4.1.13) + version: 0.1.1(typescript@5.4.5)(zod@4.4.3) windowsclock-agent: specifier: workspace:* version: link:../agents/windowsClock @@ -4707,11 +4704,11 @@ importers: version: 8.21.1 zod: specifier: ^4.1.13 - version: 4.1.13 + version: 4.4.3 devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/file-size': specifier: ^1.0.3 version: 1.0.3 @@ -4729,16 +4726,16 @@ importers: version: 8.18.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4747,25 +4744,25 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.1.13))(@modelcontextprotocol/sdk@1.26.0(zod@4.1.13))(zod@4.1.13) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@azure/core-client': specifier: ^1.10.0 - version: 1.10.1 + version: 1.11.0 '@azure/core-rest-pipeline': specifier: ^1.22.0 - version: 1.22.2 + version: 1.25.0 '@azure/cosmos': specifier: ^4.2.1 - version: 4.9.1(@azure/core-client@1.10.1) + version: 4.10.0 '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@github/copilot-sdk': specifier: 1.0.5 version: 1.0.5 '@modelcontextprotocol/sdk': specifier: 1.26.0 - version: 1.26.0(supports-color@8.1.1)(zod@4.1.13) + version: 1.26.0(supports-color@8.1.1)(zod@4.4.3) '@typeagent/action-grammar': specifier: workspace:* version: link:../../actionGrammar @@ -4811,6 +4808,9 @@ importers: '@typeagent/knowpro': specifier: workspace:* version: link:../../knowPro + '@typeagent/selfhelp': + specifier: workspace:* + version: link:../../agents/selfhelp '@typeagent/taskflow-typeagent': specifier: workspace:* version: link:../../agents/taskflow @@ -4831,7 +4831,7 @@ importers: version: 4.4.3(supports-color@8.1.1) exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 file-size: specifier: ^1.0.0 version: 1.0.0 @@ -4846,7 +4846,7 @@ importers: version: 9.0.5 open: specifier: ^10.1.0 - version: 10.1.2 + version: 10.2.0 proper-lockfile: specifier: ^4.1.2 version: 4.1.2 @@ -4855,17 +4855,17 @@ importers: version: 7.2.0 typechat: specifier: ^0.1.1 - version: 0.1.1(typescript@5.4.5)(zod@4.1.13) + version: 0.1.1(typescript@5.4.5)(zod@4.4.3) zod: specifier: ^4.1.13 - version: 4.1.13 + version: 4.4.3 devDependencies: '@jest/globals': specifier: ^29.7.0 version: 29.7.0 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/file-size': specifier: ^1.0.3 version: 1.0.3 @@ -4883,16 +4883,16 @@ importers: version: 8.18.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4901,7 +4901,7 @@ importers: dependencies: '@azure/msal-node-extensions': specifier: ^1.5.0 - version: 1.5.13 + version: 1.5.32 '@typeagent/agent-rpc': specifier: workspace:* version: link:../../agentRpc @@ -4923,19 +4923,19 @@ importers: version: link:../types '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4957,16 +4957,16 @@ importers: version: 29.5.14 '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -4982,7 +4982,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5001,10 +5001,10 @@ importers: version: 29.5.14 '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) rimraf: specifier: ^5.0.5 version: 5.0.10 @@ -5023,7 +5023,7 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^5.0.5 version: 5.0.10 @@ -5038,7 +5038,7 @@ importers: version: link:../core lit: specifier: ^3.1.0 - version: 3.3.2 + version: 3.3.3 devDependencies: '@open-wc/testing': specifier: ^4.0.0 @@ -5057,7 +5057,7 @@ importers: version: 0.11.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) rimraf: specifier: ^5.0.5 version: 5.0.10 @@ -5066,7 +5066,7 @@ importers: version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@26.1.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@24.13.3)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/interactiveApp: dependencies: @@ -5076,7 +5076,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5097,7 +5097,7 @@ importers: version: 3.2.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) fast-levenshtein: specifier: ^3.0.0 version: 3.0.0 @@ -5107,10 +5107,10 @@ importers: devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/fast-levenshtein': specifier: 0.0.4 version: 0.0.4 @@ -5122,16 +5122,16 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 test-lib: specifier: workspace:* version: link:../testLib @@ -5168,13 +5168,13 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5198,10 +5198,10 @@ importers: version: link:../utils/typechatUtils debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 sharp: specifier: ^0.33.5 version: 0.33.5 @@ -5211,7 +5211,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -5220,16 +5220,16 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5247,50 +5247,50 @@ importers: version: 7.9.0 d3-cloud: specifier: ^1.2.7 - version: 1.2.7 + version: 1.2.9 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 copy-webpack-plugin: specifier: ^12.0.1 - version: 12.0.2(webpack@5.105.0) + version: 12.0.2(webpack@5.108.4) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 ts-loader: specifier: ^9.5.1 - version: 9.5.2(typescript@5.4.5)(webpack@5.105.0) + version: 9.6.2(typescript@5.4.5)(webpack@5.108.4) typescript: specifier: ~5.4.5 version: 5.4.5 webpack: specifier: ^5.104.1 - version: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + version: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-cli: specifier: ^5.1.4 - version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + version: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) webpack-dev-server: specifier: ^5.2.6 - version: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + version: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) packages/kp: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@typeagent/aiclient': specifier: workspace:* version: link:../aiclient @@ -5309,16 +5309,16 @@ importers: devDependencies: '@types/better-sqlite3': specifier: ^7.6.8 - version: 7.6.11 + version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5327,10 +5327,10 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.3.6))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) '@anthropic-ai/sdk': specifier: ^0.93.0 - version: 0.93.0(zod@4.3.6) + version: 0.93.0(zod@4.4.3) '@typeagent/aiclient': specifier: workspace:* version: link:../../aiclient @@ -5339,17 +5339,17 @@ importers: version: link:../../config dotenv: specifier: ^16.4.5 - version: 16.5.0 + version: 16.6.1 microsoft-cognitiveservices-speech-sdk: specifier: ^1.40.0 version: 1.43.1(supports-color@8.1.1) devDependencies: '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5379,7 +5379,7 @@ importers: version: 3.2.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) mailparser: specifier: 3.9.6 version: 3.9.6 @@ -5392,10 +5392,10 @@ importers: devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -5410,16 +5410,16 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 test-lib: specifier: workspace:* version: link:../../testLib @@ -5458,7 +5458,7 @@ importers: version: 12.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) get-folder-size: specifier: ^5.0.0 version: 5.0.0 @@ -5471,7 +5471,7 @@ importers: version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -5480,16 +5480,16 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5516,14 +5516,14 @@ importers: version: 12.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) devDependencies: '@types/better-sqlite3': specifier: 7.6.13 version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -5532,10 +5532,10 @@ importers: version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.2.5 version: 3.5.3 @@ -5580,10 +5580,10 @@ importers: version: 12.6.2 cheerio: specifier: ^1.0.0 - version: 1.1.0 + version: 1.2.0 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dompurify: specifier: ^3.4.12 version: 3.4.12 @@ -5614,28 +5614,28 @@ importers: version: 7.6.13 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/jsdom': specifier: ^28.0.0 - version: 28.0.0 + version: 28.0.3 copyfiles: specifier: ^2.4.1 version: 2.4.1 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 test-lib: specifier: workspace:* version: link:../../testLib @@ -5663,7 +5663,7 @@ importers: version: 2.4.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5685,16 +5685,16 @@ importers: devDependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@3.25.76))(@modelcontextprotocol/sdk@1.26.0(zod@3.25.76))(zod@3.25.76) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@3.25.76))(@modelcontextprotocol/sdk@1.26.0(zod@3.25.76))(zod@3.25.76) '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 tsx: specifier: ^4.21.0 - version: 4.21.0 + version: 4.23.1 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5703,14 +5703,14 @@ importers: dependencies: '@anthropic-ai/claude-agent-sdk': specifier: ^0.3.150 - version: 0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6) + version: 0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3) devDependencies: '@types/node': specifier: ^22.0.0 - version: 22.15.18 + version: 22.20.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5719,10 +5719,10 @@ importers: dependencies: '@azure/identity': specifier: ^4.10.0 - version: 4.10.0 + version: 4.13.1 '@azure/msal-node-extensions': specifier: ^1.5.0 - version: 1.5.13 + version: 1.5.32 '@electron-toolkit/preload': specifier: ^3.0.2 version: 3.0.2(electron@40.8.5(supports-color@8.1.1)) @@ -5779,19 +5779,19 @@ importers: version: link:../dispatcher/dispatcher ansi_up: specifier: ^6.0.2 - version: 6.0.5 + version: 6.0.6 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dompurify: specifier: ^3.4.12 version: 3.4.12 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 electron-updater: specifier: ^6.6.2 - version: 6.6.2(supports-color@8.1.1) + version: 6.8.9(supports-color@8.1.1) jose: specifier: ^5.9.6 version: 5.10.0 @@ -5800,7 +5800,7 @@ importers: version: 4.3.0 markdown-it: specifier: ^14.2.0 - version: 14.2.0 + version: 14.3.0 microsoft-cognitiveservices-speech-sdk: specifier: ^1.38.0 version: 1.43.1(supports-color@8.1.1) @@ -5816,13 +5816,13 @@ importers: version: 1.0.1(@types/node@22.20.1) '@fontsource/lato': specifier: ^5.2.5 - version: 5.2.5 + version: 5.3.0 '@jest/globals': specifier: ^29.7.0 version: 29.7.0 '@playwright/test': specifier: ^1.55.0 - version: 1.57.0 + version: 1.61.1 '@typeagent/browser': specifier: workspace:* version: link:../agents/browser @@ -5831,7 +5831,7 @@ importers: version: link:../agents/browserExtension '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -5843,7 +5843,7 @@ importers: version: link:../agentServer/server concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 cross-env: specifier: ^7.0.3 version: 7.0.3 @@ -5864,16 +5864,16 @@ importers: version: 26.8.1(dmg-builder@26.8.1)(supports-color@8.1.1) electron-vite: specifier: ^4.0.1 - version: 4.0.1(vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0)) + version: 4.0.1(vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0)) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) less: specifier: ^4.2.0 - version: 4.3.0 + version: 4.8.0 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 run-script-os: specifier: ^1.1.6 version: 1.1.6 @@ -5885,7 +5885,7 @@ importers: version: 5.4.5 vite: specifier: ^6.4.3 - version: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + version: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) packages/studio-service: dependencies: @@ -5910,25 +5910,25 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/node': specifier: ^22.0.0 - version: 22.19.19 + version: 22.20.1 '@types/ws': specifier: ^8.5.10 version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5943,20 +5943,20 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 mongodb: specifier: ^6.15.0 - version: 6.16.0(socks@2.8.7) + version: 6.21.0(socks@2.8.9) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -5965,13 +5965,13 @@ importers: version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -5990,22 +5990,22 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6027,7 +6027,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6048,7 +6048,7 @@ importers: version: 1.0.0-rc.12 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) @@ -6058,25 +6058,25 @@ importers: devDependencies: '@types/async': specifier: ^3.2.24 - version: 3.2.24 + version: 3.2.25 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 packages/typeagent-core: dependencies: @@ -6122,7 +6122,7 @@ importers: version: link:../cache '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -6134,13 +6134,13 @@ importers: version: link:../grammarTools/core jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6171,10 +6171,10 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.0 - version: 4.1.12 + version: 4.1.13 '@types/vscode': specifier: ^1.90.0 - version: 1.100.0 + version: 1.125.0 '@types/ws': specifier: ^8.5.10 version: 8.18.1 @@ -6183,7 +6183,7 @@ importers: version: 0.0.42 '@vscode/vsce': specifier: ^3.2.1 - version: 3.4.0(supports-color@8.1.1) + version: 3.9.2(supports-color@8.1.1) esbuild: specifier: ^0.28.1 version: 0.28.1 @@ -6192,10 +6192,10 @@ importers: version: 3.0.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 tsx: specifier: ^4.21.0 - version: 4.21.0 + version: 4.23.1 packages/uriHandler: dependencies: @@ -6208,7 +6208,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -6217,13 +6217,13 @@ importers: version: 0.28.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6239,19 +6239,19 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6275,32 +6275,32 @@ importers: version: 5.6.2 date-fns: specifier: ^4.1.0 - version: 4.1.0 + version: 4.4.0 debug: specifier: ^4.4.0 version: 4.4.3(supports-color@8.1.1) exifreader: specifier: ^4.39.0 - version: 4.40.3 + version: 4.41.3 typechat: specifier: ^0.1.1 version: 0.1.1(typescript@5.4.5)(zod@3.25.76) devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6328,7 +6328,7 @@ importers: version: 29.7.0 '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 @@ -6337,13 +6337,13 @@ importers: version: 8.18.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + version: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) prettier: specifier: ^3.5.3 version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6361,7 +6361,7 @@ importers: version: 4.4.3(supports-color@8.1.1) dotenv: specifier: ^16.3.1 - version: 16.5.0 + version: 16.6.1 find-config: specifier: ^1.0.0 version: 1.0.0 @@ -6374,7 +6374,7 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/find-config': specifier: 1.0.4 version: 1.0.4 @@ -6386,7 +6386,7 @@ importers: version: 3.5.3 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6414,16 +6414,16 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.0 - version: 4.1.12 + version: 4.1.13 '@types/vscode': specifier: ^1.95.0 - version: 1.100.0 + version: 1.125.0 '@vscode/vsce': specifier: ^3.2.1 - version: 3.4.0(supports-color@8.1.1) + version: 3.9.2(supports-color@8.1.1) concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 esbuild: specifier: ^0.28.1 version: 0.28.1 @@ -6432,7 +6432,7 @@ importers: version: 3.0.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6486,7 +6486,7 @@ importers: version: 5.0.0(ws@8.21.1) markdown-it: specifier: ^14.2.0 - version: 14.2.0 + version: 14.3.0 microsoft-cognitiveservices-speech-sdk: specifier: 1.43.1 version: 1.43.1(supports-color@8.1.1) @@ -6496,13 +6496,13 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.0 - version: 4.1.12 + version: 4.1.13 '@types/markdown-it': specifier: ^14.1.2 version: 14.1.2 '@types/vscode': specifier: ^1.90.0 - version: 1.100.0 + version: 1.125.0 '@types/ws': specifier: ^8.5.0 version: 8.18.1 @@ -6511,10 +6511,10 @@ importers: version: 0.0.42 '@vscode/vsce': specifier: ^3.2.1 - version: 3.4.0(supports-color@8.1.1) + version: 3.9.2(supports-color@8.1.1) concurrently: specifier: ^9.1.2 - version: 9.1.2 + version: 9.2.4 copyfiles: specifier: ^2.4.1 version: 2.4.1 @@ -6526,7 +6526,7 @@ importers: version: 3.0.1 rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6538,7 +6538,7 @@ importers: version: 9.0.0 '@azure/identity': specifier: ^4.9.1 - version: 4.10.0 + version: 4.13.1 '@azure/keyvault-certificates': specifier: ^4.9.0 version: 4.10.3 @@ -6556,7 +6556,7 @@ importers: version: 5.6.2 debug: specifier: ^4.4.0 - version: 4.4.1(supports-color@8.1.1) + version: 4.4.3(supports-color@8.1.1) js-yaml: specifier: ^4.3.0 version: 4.3.0 @@ -6565,26 +6565,26 @@ importers: version: 4.18.1 semver: specifier: ^7.7.2 - version: 7.7.4 + version: 7.8.5 sort-package-json: specifier: ^3.0.0 - version: 3.2.1 + version: 3.7.1 validate-npm-package-name: specifier: ^6.0.0 - version: 6.0.0 + version: 6.0.2 devDependencies: dotenv: specifier: ^16.5.0 - version: 16.5.0 + version: 16.6.1 eslint: specifier: ^10.6.0 - version: 10.6.0(jiti@2.7.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-sonarjs: specifier: ^4.1.0 - version: 4.1.0(eslint@10.6.0(jiti@2.7.0)) + version: 4.2.0(eslint@10.7.0(jiti@2.7.0)) typescript-eslint: specifier: ^8.62.1 - version: 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) tools/actionBrowser: dependencies: @@ -6606,7 +6606,7 @@ importers: devDependencies: rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6634,19 +6634,19 @@ importers: devDependencies: '@types/debug': specifier: ^4.1.12 - version: 4.1.12 + version: 4.1.13 '@types/jest': specifier: ^29.5.7 version: 29.5.14 '@types/node': specifier: ^22.10.5 - version: 22.15.18 + version: 22.20.1 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) rimraf: specifier: ^6.0.1 - version: 6.0.1 + version: 6.1.3 typescript: specifier: ~5.4.5 version: 5.4.5 @@ -6654,64 +6654,64 @@ importers: packages: 7zip-bin@5.2.0: - resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==} + resolution: {integrity: sha1-egMxRoTdZXK336ieaM4x1gKGhU0=} '@acemir/cssom@0.9.31': - resolution: {integrity: sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==} + resolution: {integrity: sha1-vVM30pD7i+KsGDkfNzhrxTd4sLw=} '@alcalzone/ansi-tokenize@0.1.3': - resolution: {integrity: sha512-3yWxPTq3UQ/FY9p1ErPxIyfT64elWaMvM9lIHnaqpyft63tkxodF5aUElYHrdisWve5cETkh1+KBw1yJuW0aRw==} + resolution: {integrity: sha1-n4mDlWEyWo6aDDI2C40X5ISJmT8=} engines: {node: '>=14.13.1'} '@antfu/install-pkg@1.1.0': - resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} + resolution: {integrity: sha1-ePoDa+GmCBtad6XPWfUMd1K2uiY=} - '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.162': - resolution: {integrity: sha512-hafbfEtDeYko1rYCgIBAQbYnFXzd/hHf3IcoaD8mmlCQOAQhKA8gT/RPdLuuzQHdOjEgqDGTNOU+IjwL+msYcw==} + '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.218': + resolution: {integrity: sha1-sECB5DFjGoxUOLqaZdP4Gu/990w=} cpu: [arm64] os: [darwin] - '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.162': - resolution: {integrity: sha512-BNg2Mh/4zc2Jsgpq7Mj8+UH8iJ9xzHS/0CmusBMik0H2Bn7Hra5R/f+csAfZOzSflQl4CNQdGOB2bir7d2n8Ww==} + '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.218': + resolution: {integrity: sha1-VNvAyB+1W8y7Y88hk1tbL+dlYdA=} cpu: [x64] os: [darwin] - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.162': - resolution: {integrity: sha512-Jr4cyfqzb5V2+p/1PynIfGROOI0JNtV3vBMAgckAdtDzpIFk4mV2T8936tsZzgZr04y40YH1HlQpnJDr92I+Fw==} + '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.218': + resolution: {integrity: sha1-FD1O58T6UkmVeEBsfUNJKxSZqJM=} cpu: [arm64] os: [linux] libc: [musl] - '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.162': - resolution: {integrity: sha512-zCXYSimaXWQKZASfDJkoKXQr//toYDGIi16wKDh02Rqcr4mqFi9f5SBw/UCyimkGyYkNx3e+bmC+o/tFrLSTWw==} + '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.218': + resolution: {integrity: sha1-Hdx8/71kmIdEC9EyKAz3SHW7DMk=} cpu: [arm64] os: [linux] libc: [glibc] - '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.162': - resolution: {integrity: sha512-gW9Gpk7W3w3zGFHBDyY8uer/PE6T0pB+emN1aafZAomfseIH1ixJ6ya5Fw2cIS/K0/4oR2pvu4AprlbRBtr45Q==} + '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.218': + resolution: {integrity: sha1-jD1HV9TBxshSb0PPNeKOwmQOF4Y=} cpu: [x64] os: [linux] libc: [musl] - '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.162': - resolution: {integrity: sha512-FO2+zDuSTsZ/5MqxIwExLxG0c2auA5wO6iICwZdUOWtboC6yU2AEgp4mzF0jbe1UOP0J27uODFpvz7uRpWipkg==} + '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.218': + resolution: {integrity: sha1-yK/6Q/S/lIaxexeBNs77xDostrQ=} cpu: [x64] os: [linux] libc: [glibc] - '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.162': - resolution: {integrity: sha512-TZQifFDBdhzt1u6wbbpQ2AZcRkhNVYx1iZVfydAbs3L7ZMK264LjRPytBK4n4S413Is1XyLHbGMvEUNA3N+Tng==} + '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.218': + resolution: {integrity: sha1-ByZE9n0Lk2oitciSHNe73WfyMxA=} cpu: [arm64] os: [win32] - '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.162': - resolution: {integrity: sha512-8ZYDgNxkGp47xwpcEZ6/qUXd4BByA8hTnNf4fJD6+P1wWi7Ofxc/d5jwXSYwajYvBvbbktQDthmGzjtoK3lXUw==} + '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.218': + resolution: {integrity: sha1-HAQaVdllW8kjhCBa+ulEHmdMdQI=} cpu: [x64] os: [win32] - '@anthropic-ai/claude-agent-sdk@0.3.162': - resolution: {integrity: sha512-piAlpc1h6FUMCNU+bnYNNLX1lOgMlFnqZmIhn6Myv48MaNRaecFaZEuVLY+UxV0kjGiQFYHBLR4fk/rRwi2SAA==} + '@anthropic-ai/claude-agent-sdk@0.3.218': + resolution: {integrity: sha1-3+E0FmJz09K943oh829aaqsGDMk=} engines: {node: '>=18.0.0'} peerDependencies: '@anthropic-ai/sdk': '>=0.93.0' @@ -6719,7 +6719,7 @@ packages: zod: ^4.0.0 '@anthropic-ai/sdk@0.93.0': - resolution: {integrity: sha512-q9vaSZQVFx6B/gPxetGYfLXSJD5v0sOmh0OpZDq7yCrTSA+Rscvrtyol7JJTW40wEpQB4U1B4JXzxQitbQ3CAA==} + resolution: {integrity: sha1-zdbinqllLswW/88ENOje6Iuce3c=} hasBin: true peerDependencies: zod: ^3.25.0 || ^4.0.0 @@ -6727,771 +6727,588 @@ packages: zod: optional: true - '@asamuzakjp/css-color@5.0.1': - resolution: {integrity: sha512-2SZFvqMyvboVV1d15lMf7XiI3m7SDqXUuKaTymJYLN6dSGadqp+fVojqJlVoMlbZnlTmu3S0TLwLTJpvBMO1Aw==} + '@asamuzakjp/css-color@5.1.11': + resolution: {integrity: sha1-KKCqyCIKTMGQRaw72agT1AYL03U=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} '@asamuzakjp/dom-selector@6.8.1': - resolution: {integrity: sha512-MvRz1nCqW0fsy8Qz4dnLIvhOlMzqDVBabZx6lH+YywFDdjXhMY37SmpV1XFX3JzG5GWHn63j6HX6QPr3lZXHvQ==} - - '@asamuzakjp/nwsapi@2.3.9': - resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==} - - '@aws-crypto/crc32@5.2.0': - resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} - engines: {node: '>=16.0.0'} - - '@aws-crypto/crc32c@5.2.0': - resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==} - - '@aws-crypto/sha1-browser@5.2.0': - resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==} + resolution: {integrity: sha1-ObIJk2crEG982aOppGUhLofgv9E=} - '@aws-crypto/sha256-browser@5.2.0': - resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==} - - '@aws-crypto/sha256-js@5.2.0': - resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==} - engines: {node: '>=16.0.0'} - - '@aws-crypto/supports-web-crypto@5.2.0': - resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==} + '@asamuzakjp/generational-cache@1.0.1': + resolution: {integrity: sha1-PQv2vk/AWYUTkKcHByDGAHr3k+w=} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} - '@aws-crypto/util@5.2.0': - resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} + '@asamuzakjp/nwsapi@2.3.9': + resolution: {integrity: sha1-rVVJMi3+nRU9S03W9/8q4jSwbiQ=} - '@aws-sdk/client-s3@3.1004.0': - resolution: {integrity: sha512-m0zNfpsona9jQdX1cHtHArOiuvSGZPsgp/KRZS2YjJhKah96G2UN3UNGZQ6aVjXIQjCY6UanCJo0uW9Xf2U41w==} + '@aws-sdk/checksums@3.1000.19': + resolution: {integrity: sha1-kdKbX9V2pCVHxtpYdUF1mltJgdM=} engines: {node: '>=20.0.0'} - '@aws-sdk/core@3.973.18': - resolution: {integrity: sha512-GUIlegfcK2LO1J2Y98sCJy63rQSiLiDOgVw7HiHPRqfI2vb3XozTVqemwO0VSGXp54ngCnAQz0Lf0YPCBINNxA==} + '@aws-sdk/client-s3@3.1093.0': + resolution: {integrity: sha1-NWARfIlD5XG8DoEMz7WhHzGZpcY=} engines: {node: '>=20.0.0'} - '@aws-sdk/crc64-nvme@3.972.4': - resolution: {integrity: sha512-HKZIZLbRyvzo/bXZU7Zmk6XqU+1C9DjI56xd02vwuDIxedxBEqP17t9ExhbP9QFeNq/a3l9GOcyirFXxmbDhmw==} + '@aws-sdk/core@3.976.0': + resolution: {integrity: sha1-ww0IC0suqOIsB9nVM4wDMQUPkto=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-env@3.972.16': - resolution: {integrity: sha512-HrdtnadvTGAQUr18sPzGlE5El3ICphnH6SU7UQOMOWFgRKbTRNN8msTxM4emzguUso9CzaHU2xy5ctSrmK5YNA==} + '@aws-sdk/credential-provider-env@3.972.60': + resolution: {integrity: sha1-hPw7bJUINMy7hLS1CKTnkCdJX0Y=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-http@3.972.18': - resolution: {integrity: sha512-NyB6smuZAixND5jZumkpkunQ0voc4Mwgkd+SZ6cvAzIB7gK8HV8Zd4rS8Kn5MmoGgusyNfVGG+RLoYc4yFiw+A==} + '@aws-sdk/credential-provider-http@3.972.62': + resolution: {integrity: sha1-IQRyTU97oIOK7Qvoahmivckq7kc=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-ini@3.972.17': - resolution: {integrity: sha512-dFqh7nfX43B8dO1aPQHOcjC0SnCJ83H3F+1LoCh3X1P7E7N09I+0/taID0asU6GCddfDExqnEvQtDdkuMe5tKQ==} + '@aws-sdk/credential-provider-ini@3.973.5': + resolution: {integrity: sha1-g7qzYzSR5bVNCOSeJC+DGgeqMIA=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-login@3.972.17': - resolution: {integrity: sha512-gf2E5b7LpKb+JX2oQsRIDxdRZjBFZt2olCGlWCdb3vBERbXIPgm2t1R5mEnwd4j0UEO/Tbg5zN2KJbHXttJqwA==} + '@aws-sdk/credential-provider-login@3.972.67': + resolution: {integrity: sha1-fQz2mMafUTCkxsWttEUPUtgeFak=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-node@3.972.18': - resolution: {integrity: sha512-ZDJa2gd1xiPg/nBDGhUlat02O8obaDEnICBAVS8qieZ0+nDfaB0Z3ec6gjZj27OqFTjnB/Q5a0GwQwb7rMVViw==} + '@aws-sdk/credential-provider-node@3.972.71': + resolution: {integrity: sha1-2H/m2gAVdYReYzKtEY+Pch3+v1I=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-process@3.972.16': - resolution: {integrity: sha512-n89ibATwnLEg0ZdZmUds5bq8AfBAdoYEDpqP3uzPLaRuGelsKlIvCYSNNvfgGLi8NaHPNNhs1HjJZYbqkW9b+g==} + '@aws-sdk/credential-provider-process@3.972.60': + resolution: {integrity: sha1-Uox1L7MQFlaPuBt8BbNF1BxhHTE=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-sso@3.972.17': - resolution: {integrity: sha512-wGtte+48xnhnhHMl/MsxzacBPs5A+7JJedjiP452IkHY7vsbYKcvQBqFye8LwdTJVeHtBHv+JFeTscnwepoWGg==} + '@aws-sdk/credential-provider-sso@3.973.4': + resolution: {integrity: sha1-5uPNtofkrP16sijHMQLAXgj7mI0=} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-web-identity@3.972.17': - resolution: {integrity: sha512-8aiVJh6fTdl8gcyL+sVNcNwTtWpmoFa1Sh7xlj6Z7L/cZ/tYMEBHq44wTYG8Kt0z/PpGNopD89nbj3FHl9QmTA==} + '@aws-sdk/credential-provider-web-identity@3.972.66': + resolution: {integrity: sha1-MdDIsGHtxah6pvYk26rC60eaZjk=} engines: {node: '>=20.0.0'} - '@aws-sdk/lib-storage@3.1004.0': - resolution: {integrity: sha512-4W6UkeLVd/1FyXFvD9PHMw5FSOY7tsf6+I52jmgdZwDZ9gJcJBx6wF9IhaVp1AXhScZGY9HqHiqYt0qlrSHrGw==} + '@aws-sdk/lib-storage@3.1093.0': + resolution: {integrity: sha1-2aZYVEggSI7lPEmUc7CrlFSTD0M=} engines: {node: '>=20.0.0'} peerDependencies: - '@aws-sdk/client-s3': ^3.1004.0 - - '@aws-sdk/middleware-bucket-endpoint@3.972.7': - resolution: {integrity: sha512-goX+axlJ6PQlRnzE2bQisZ8wVrlm6dXJfBzMJhd8LhAIBan/w1Kl73fJnalM/S+18VnpzIHumyV6DtgmvqG5IA==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-expect-continue@3.972.7': - resolution: {integrity: sha512-mvWqvm61bmZUKmmrtl2uWbokqpenY3Mc3Jf4nXB/Hse6gWxLPaCQThmhPBDzsPSV8/Odn8V6ovWt3pZ7vy4BFQ==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-flexible-checksums@3.973.4': - resolution: {integrity: sha512-7CH2jcGmkvkHc5Buz9IGbdjq1729AAlgYJiAvGq7qhCHqYleCsriWdSnmsqWTwdAfXHMT+pkxX3w6v5tJNcSug==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-host-header@3.972.7': - resolution: {integrity: sha512-aHQZgztBFEpDU1BB00VWCIIm85JjGjQW1OG9+98BdmaOpguJvzmXBGbnAiYcciCd+IS4e9BEq664lhzGnWJHgQ==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-location-constraint@3.972.7': - resolution: {integrity: sha512-vdK1LJfffBp87Lj0Bw3WdK1rJk9OLDYdQpqoKgmpIZPe+4+HawZ6THTbvjhJt4C4MNnRrHTKHQjkwBiIpDBoig==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-logger@3.972.7': - resolution: {integrity: sha512-LXhiWlWb26txCU1vcI9PneESSeRp/RYY/McuM4SpdrimQR5NgwaPb4VJCadVeuGWgh6QmqZ6rAKSoL1ob16W6w==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-recursion-detection@3.972.7': - resolution: {integrity: sha512-l2VQdcBcYLzIzykCHtXlbpiVCZ94/xniLIkAj0jpnpjY4xlgZx7f56Ypn+uV1y3gG0tNVytJqo3K9bfMFee7SQ==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-sdk-s3@3.972.18': - resolution: {integrity: sha512-5E3XxaElrdyk6ZJ0TjH7Qm6ios4b/qQCiLr6oQ8NK7e4Kn6JBTJCaYioQCQ65BpZ1+l1mK5wTAac2+pEz0Smpw==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-ssec@3.972.7': - resolution: {integrity: sha512-G9clGVuAml7d8DYzY6DnRi7TIIDRvZ3YpqJPz/8wnWS5fYx/FNWNmkO6iJVlVkQg9BfeMzd+bVPtPJOvC4B+nQ==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/middleware-user-agent@3.972.19': - resolution: {integrity: sha512-Km90fcXt3W/iqujHzuM6IaDkYCj73gsYufcuWXApWdzoTy6KGk8fnchAjePMARU0xegIR3K4N3yIo1vy7OVe8A==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/nested-clients@3.996.7': - resolution: {integrity: sha512-MlGWA8uPaOs5AiTZ5JLM4uuWDm9EEAnm9cqwvqQIc6kEgel/8s1BaOWm9QgUcfc9K8qd7KkC3n43yDbeXOA2tg==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/region-config-resolver@3.972.7': - resolution: {integrity: sha512-/Ev/6AI8bvt4HAAptzSjThGUMjcWaX3GX8oERkB0F0F9x2dLSBdgFDiyrRz3i0u0ZFZFQ1b28is4QhyqXTUsVA==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/signature-v4-multi-region@3.996.6': - resolution: {integrity: sha512-NnsOQsVmJXy4+IdPFUjRCWPn9qNH1TzS/f7MiWgXeoHs903tJpAWQWQtoFvLccyPoBgomKP9L89RRr2YsT/L0g==} - engines: {node: '>=20.0.0'} - - '@aws-sdk/token-providers@3.1004.0': - resolution: {integrity: sha512-j9BwZZId9sFp+4GPhf6KrwO8Tben2sXibZA8D1vv2I1zBdvkUHcBA2g4pkqIpTRalMTLC0NPkBPX0gERxfy/iA==} - engines: {node: '>=20.0.0'} + '@aws-sdk/client-s3': ^3.1093.0 - '@aws-sdk/types@3.973.5': - resolution: {integrity: sha512-hl7BGwDCWsjH8NkZfx+HgS7H2LyM2lTMAI7ba9c8O0KqdBLTdNJivsHpqjg9rNlAlPyREb6DeDRXUl0s8uFdmQ==} + '@aws-sdk/middleware-sdk-s3@3.972.65': + resolution: {integrity: sha1-m0nfXeto3uXV2k1jCmzjZ2QI3l4=} engines: {node: '>=20.0.0'} - '@aws-sdk/util-arn-parser@3.972.3': - resolution: {integrity: sha512-HzSD8PMFrvgi2Kserxuff5VitNq2sgf3w9qxmskKDiDTThWfVteJxuCS9JXiPIPtmCrp+7N9asfIaVhBFORllA==} + '@aws-sdk/nested-clients@3.997.34': + resolution: {integrity: sha1-vTcatU+XttJNRkdD5N64JAPWuJA=} engines: {node: '>=20.0.0'} - '@aws-sdk/util-endpoints@3.996.4': - resolution: {integrity: sha512-Hek90FBmd4joCFj+Vc98KLJh73Zqj3s2W56gjAcTkrNLMDI5nIFkG9YpfcJiVI1YlE2Ne1uOQNe+IgQ/Vz2XRA==} + '@aws-sdk/signature-v4-multi-region@3.996.41': + resolution: {integrity: sha1-GsZ0M2biOCtz7RSvSwjSHeC/Htk=} engines: {node: '>=20.0.0'} - '@aws-sdk/util-locate-window@3.965.5': - resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==} + '@aws-sdk/token-providers@3.1092.0': + resolution: {integrity: sha1-MXhFJiLCysee1KDHdzOg7a+ea3Y=} engines: {node: '>=20.0.0'} - '@aws-sdk/util-user-agent-browser@3.972.7': - resolution: {integrity: sha512-7SJVuvhKhMF/BkNS1n0QAJYgvEwYbK2QLKBrzDiwQGiTRU6Yf1f3nehTzm/l21xdAOtWSfp2uWSddPnP2ZtsVw==} - - '@aws-sdk/util-user-agent-node@3.973.4': - resolution: {integrity: sha512-uqKeLqZ9D3nQjH7HGIERNXK9qnSpUK08l4MlJ5/NZqSSdeJsVANYp437EM9sEzwU28c2xfj2V6qlkqzsgtKs6Q==} + '@aws-sdk/types@3.974.2': + resolution: {integrity: sha1-BefMrEF3NeB4bUMNLVzBOQR6CNo=} engines: {node: '>=20.0.0'} - peerDependencies: - aws-crt: '>=1.0.0' - peerDependenciesMeta: - aws-crt: - optional: true - '@aws-sdk/xml-builder@3.972.10': - resolution: {integrity: sha512-OnejAIVD+CxzyAUrVic7lG+3QRltyja9LoNqCE/1YVs8ichoTbJlVSaZ9iSMcnHLyzrSNtvaOGjSDRP+d/ouFA==} + '@aws-sdk/xml-builder@3.972.36': + resolution: {integrity: sha1-lmwX3tI7lwteQcurXRq/haMEuZ4=} engines: {node: '>=20.0.0'} - '@aws/lambda-invoke-store@0.2.3': - resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==} + '@aws/lambda-invoke-store@0.3.0': + resolution: {integrity: sha1-cIgC2Yf44XvfSvTeEDFmDOHN1l8=} engines: {node: '>=18.0.0'} '@azu/format-text@1.0.2': - resolution: {integrity: sha512-Swi4N7Edy1Eqq82GxgEECXSSLyn6GOb5htRFPzBDdUkECGXtlf12ynO5oJSpWKPwCaUssOu7NfhDcCWpIC6Ywg==} + resolution: {integrity: sha1-q9RtqyQi4xK9G/428NQnq2A5gl0=} '@azu/style-format@1.0.1': - resolution: {integrity: sha512-AHcTojlNBdD/3/KxIKlg8sxIWHfOtQszLvOpagLTO+bjC3u7SAszu1lf//u7JJC50aUSH+BVWDD/KvaA6Gfn5g==} - - '@azure-rest/core-client@2.4.0': - resolution: {integrity: sha512-CjMFBcmnt0YNdRcxSSoZbtZNXudLlicdml7UrPsV03nHiWB+Bq5cu5ctieyaCuRtU7jm7+SOFtiE/g4pBFPKKA==} - engines: {node: '>=18.0.0'} + resolution: {integrity: sha1-s2Q68MX+6dU+aal8g1xAS9yA95I=} '@azure-rest/core-client@2.8.0': - resolution: {integrity: sha512-F1ybHeN+++QhyFCF/ehLUEvrOB6fehPdFBFtGdj0C3B2lpQ9zkPiO5JDgsqc6IfjuUe6b3dAbXK0a7+VgSGfhw==} + resolution: {integrity: sha1-MOc2wPYXEVtz4VSyKbruvMCQNRo=} engines: {node: '>=22.0.0'} '@azure-rest/maps-search@2.0.0-beta.3': - resolution: {integrity: sha512-2fouStEqzwa1dXZGH1rys/TVpH5aY1OqF5iGcZlbR8cW1qQtwFcrGQ/hpAeGdOtHWhLblibh6eoqNr1lYTFpBQ==} + resolution: {integrity: sha1-dvoEKU13TBPcX7UaEsKmTehfVNE=} engines: {node: '>=18.0.0'} '@azure/abort-controller@1.1.0': - resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} + resolution: {integrity: sha1-eI7nhFelWvihrTQqyxgjg9IRkkk=} engines: {node: '>=12.0.0'} - '@azure/abort-controller@2.1.2': - resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==} - engines: {node: '>=18.0.0'} - '@azure/abort-controller@2.2.0': - resolution: {integrity: sha512-fNAjWnA/nZ2jz31kxR/AqRaUT8ewHBw/WuBIosK0moMy1C9e5ValbDfFdIxJzVOOYaYkV/b2F1S4H/aHiqfVQg==} + resolution: {integrity: sha1-k+DoKwGGLn6jtbaZWHGdPz/SyKw=} engines: {node: '>=22.0.0'} - '@azure/ai-projects@2.2.0': - resolution: {integrity: sha512-pxdEYMK8DI8BxaFhroqoT+1wwHmELn0v+fEWQanQNG2wNI9LdWTrUSChNcUY0l8T8D5Gjxf/irSEEaWCvqHwQQ==} - engines: {node: '>=20.0.0'} + '@azure/ai-projects@2.3.1': + resolution: {integrity: sha1-TbuUZxLu1OaSSA56rm3k4XQtz4k=} + engines: {node: '>=22.0.0'} '@azure/arm-authorization@9.0.0': - resolution: {integrity: sha512-GdiCA8IA1gO+qcCbFEPj+iLC4+3ByjfKzmeAnkP7MdlL84Yo30Huo/EwbZzwRjYybXYUBuFxGPBB+yeTT4Ebxg==} + resolution: {integrity: sha1-aPTsP+er98mGosQFvj33pnv60Ts=} engines: {node: '>=14.0.0'} - '@azure/core-auth@1.10.1': - resolution: {integrity: sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg==} - engines: {node: '>=20.0.0'} - '@azure/core-auth@1.11.0': - resolution: {integrity: sha512-IUZydyTUkDnYdstOW9pFOOUQlBjAepK5teihDE3x6yxsPJs/hsAaaYpeGxdxrgtOiJbBKSjKW7MDk7AEhb4LRg==} + resolution: {integrity: sha1-Ha7/32LRqHHSK4ZfnzFkpj6h9XU=} engines: {node: '>=22.0.0'} - '@azure/core-auth@1.9.0': - resolution: {integrity: sha512-FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw==} - engines: {node: '>=18.0.0'} - - '@azure/core-client@1.10.1': - resolution: {integrity: sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w==} - engines: {node: '>=20.0.0'} - '@azure/core-client@1.11.0': - resolution: {integrity: sha512-JjQWO6akOck45PH/XBrxzsQGAiKrfFl4m5iggJ0ItMIz5omRufOXWpqCPpdjKN3vKDzlSUvFjaMb7Zwf0gvAdA==} + resolution: {integrity: sha1-5z0JrHl33l17QVaWt+1F0/3rZ7A=} engines: {node: '>=22.0.0'} - '@azure/core-client@1.9.2': - resolution: {integrity: sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==} - engines: {node: '>=18.0.0'} - - '@azure/core-http-compat@2.1.2': - resolution: {integrity: sha512-5MnV1yqzZwgNLLjlizsU3QqOeQChkIXw781Fwh1xdAqJR5AA32IUaq6xv1BICJvfbHoa+JYcaij2HFkhLbNTJQ==} - engines: {node: '>=18.0.0'} - '@azure/core-http-compat@2.5.0': - resolution: {integrity: sha512-BoSmXPx2er1Ai+wKlDvj29jIQespCNBwEmKyZVHO2kEFsWbGjAjwMCGzug3DJM5/QYIV3vej0S1zcU5bq9fa8w==} + resolution: {integrity: sha1-14BmGln4pDL+yyt8b6LVgi3KHeo=} engines: {node: '>=22.0.0'} peerDependencies: '@azure/core-client': ^1.10.0 '@azure/core-rest-pipeline': ^1.22.0 '@azure/core-lro@2.7.2': - resolution: {integrity: sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==} - engines: {node: '>=18.0.0'} - - '@azure/core-lro@3.2.0': - resolution: {integrity: sha512-SJEAe8fMDnjz2vw9dvEUi0DhAWe1sYkWQVTDc/HDcgNALaszGRopx3U+z1Pg/C9fsYiArp5pTBEcq29Ddph0WA==} + resolution: {integrity: sha1-eHEFAnog5Fx3ZRqYsBpNOwG3Wgg=} engines: {node: '>=18.0.0'} - '@azure/core-paging@1.6.2': - resolution: {integrity: sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==} - engines: {node: '>=18.0.0'} + '@azure/core-lro@3.4.0': + resolution: {integrity: sha1-c0Zb0X3lxduw8noJH29mGnBHC78=} + engines: {node: '>=22.0.0'} '@azure/core-paging@1.7.0': - resolution: {integrity: sha512-7GEAoIsaoBr6KELNRb8nypowCqvk8dnCHFCYg4XD4lOQGY2GqjQg5IhkRjyBFRO18CGSMq05PaNqSOE9GQro3g==} + resolution: {integrity: sha1-WVl6L1Q4ujxsh4n8hw9p4OeFMag=} engines: {node: '>=22.0.0'} - '@azure/core-rest-pipeline@1.20.0': - resolution: {integrity: sha512-ASoP8uqZBS3H/8N8at/XwFr6vYrRP3syTK0EUjDXQy0Y1/AUS+QeIRThKmTNJO2RggvBBxaXDPM7YoIwDGeA0g==} - engines: {node: '>=18.0.0'} - - '@azure/core-rest-pipeline@1.22.2': - resolution: {integrity: sha512-MzHym+wOi8CLUlKCQu12de0nwcq9k9Kuv43j4Wa++CsCpJwps2eeBQwD2Bu8snkxTtDKDx4GwjuR9E8yC8LNrg==} - engines: {node: '>=20.0.0'} - '@azure/core-rest-pipeline@1.25.0': - resolution: {integrity: sha512-bMs8ekJLjX8wPV+9IPBges1SLPyuDtE9g5gLDWOpxzKcoOFQnpLGkbcT1tdw3FaAmDS1gnPmMmJ6y/T5B96kIA==} + resolution: {integrity: sha1-kupJEu27H3OV9IKaMAYxF0qoLwg=} engines: {node: '>=22.0.0'} - '@azure/core-sse@2.2.0': - resolution: {integrity: sha512-6Xg/CeW0jRyMoWt+puw2x6Qqkml3tr76Cn/oA9goIcUXtsi3ngmTwCVbwqkUWfhsOfo4F+78LGgiswSxTHN0sg==} - engines: {node: '>=18.0.0'} - - '@azure/core-tracing@1.2.0': - resolution: {integrity: sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==} - engines: {node: '>=18.0.0'} - - '@azure/core-tracing@1.3.1': - resolution: {integrity: sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==} - engines: {node: '>=20.0.0'} + '@azure/core-sse@2.4.0': + resolution: {integrity: sha1-dB9TOIaG+S18hvVYKwTYoqyN4w8=} + engines: {node: '>=22.0.0'} '@azure/core-tracing@1.4.0': - resolution: {integrity: sha512-eGwxD0AtncrxeBM4tG8R55Pc3rdX1hNW2WibJAgYpCVA6E93mvvVH+LcssoVjOBrSKWS55yEIHsk0X8ctHmfOQ==} + resolution: {integrity: sha1-1lenAOJNJW0ZXmKKeV22qMxHXqs=} engines: {node: '>=22.0.0'} - '@azure/core-util@1.11.0': - resolution: {integrity: sha512-DxOSLua+NdpWoSqULhjDyAZTXFdP/LKkqtYuxxz1SCN289zk3OG8UOpnCQAz/tygyACBtWp/BoO72ptK7msY8g==} - engines: {node: '>=18.0.0'} - - '@azure/core-util@1.13.1': - resolution: {integrity: sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==} - engines: {node: '>=20.0.0'} - '@azure/core-util@1.14.0': - resolution: {integrity: sha512-9n2pWK61veAuN0V20t9lOuoV4CFMdyAZ1ygZzvBGk/pBBJRib/PjL9PLXa/aI2CcPpyHfqVsxxqLCYl6uZlfDw==} + resolution: {integrity: sha1-fOn+V5WPEy3UIlc4VuWkXHIyuwQ=} engines: {node: '>=22.0.0'} - '@azure/core-xml@1.5.0': - resolution: {integrity: sha512-D/sdlJBMJfx7gqoj66PKVmhDDaU6TKA49ptcolxdas29X7AfvLTmfAGLjAcIMBK7UZ2o4lygHIqVckOlQU3xWw==} - engines: {node: '>=20.0.0'} + '@azure/core-xml@1.6.0': + resolution: {integrity: sha1-EI8JIOG834owuffoh5ibOhIIK9k=} + engines: {node: '>=22.0.0'} - '@azure/cosmos@4.9.1': - resolution: {integrity: sha512-fPnfL4JsmJJ/jEYUhlznKfrEr2pMvJwBncGVcUC2Xi7Nlj0MrUMRE+UOrptl/lRV2W7l68Br+b9Ikzm0KiZZHg==} - engines: {node: '>=20.0.0'} + '@azure/cosmos@4.10.0': + resolution: {integrity: sha1-uLZsj8U1r44xhqFoiMC0kRptkH4=} + engines: {node: '>=22.0.0'} '@azure/identity-broker@1.4.0': - resolution: {integrity: sha512-0JQhUf+VNqurmwfXK7oBSoOg0eEnPEr6yKvArDeMlM4B4eN4ugrKoLUEFgDWUNfixgSGg0SbOrH5iwoBUj1CpQ==} + resolution: {integrity: sha1-yZyMTcIf+WVocZkUbajQ90mapYo=} engines: {node: '>=20.0.0'} - '@azure/identity-cache-persistence@1.2.0': - resolution: {integrity: sha512-ZYr6iiE6d/Tkt4jck0cQv9grZ1BR4u5LXJmB1vblU/WGIHspO6Bv3TJMvQat2sQSOG4Wz7busgg0pajP4gNJzA==} - engines: {node: '>=18.0.0'} - - '@azure/identity@4.10.0': - resolution: {integrity: sha512-iT53Sre2NJK6wzMWnvpjNiR3md597LZ3uK/5kQD2TkrY9vqhrY5bt2KwELNjkOWQ9n8S/92knj/QEykTtjMNqQ==} - engines: {node: '>=18.0.0'} + '@azure/identity-cache-persistence@1.3.0': + resolution: {integrity: sha1-IXocVjdoJuIho4mdUq8vtTCORA4=} + engines: {node: '>=20.0.0'} '@azure/identity@4.13.1': - resolution: {integrity: sha512-5C/2WD5Vb1lHnZS16dNQRPMjN6oV/Upba+C9nBIs15PmOi6A3ZGs4Lr2u60zw4S04gi+u3cEXiqTVP7M4Pz3kw==} + resolution: {integrity: sha1-vcCRZYuqWaR+6furSHpLsBhym8M=} engines: {node: '>=20.0.0'} '@azure/keyvault-certificates@4.10.3': - resolution: {integrity: sha512-PgQLfcgsqVPEN8+HYs9L/9sUxd1qkUQa8csuKPFRq3twiIE5Sm1me+1tmoNp5rPCdYoBJSNzi/FYpldHlDeHDw==} + resolution: {integrity: sha1-xv78JrnQG9ECOHL6sv0HYRyb6ZQ=} engines: {node: '>=20.0.0'} '@azure/keyvault-common@2.1.0': - resolution: {integrity: sha512-aCDidWuKY06LWQ4x7/8TIXK6iRqTaRWRL3t7T+LC+j1b07HtoIsOxP/tU90G4jCSBn5TAyUTCtA4MS/y5Hudaw==} + resolution: {integrity: sha1-Zw50FKK/aDcbCz0fmByboCeLd90=} engines: {node: '>=20.0.0'} - '@azure/keyvault-keys@4.10.0': - resolution: {integrity: sha512-eDT7iXoBTRZ2n3fLiftuGJFD+yjkiB1GNqzU2KbY1TLYeXeSPVTVgn2eJ5vmRTZ11978jy2Kg2wI7xa9Tyr8ag==} - engines: {node: '>=18.0.0'} - - '@azure/keyvault-secrets@4.11.2': - resolution: {integrity: sha512-ECj/kwZbZlQXj2kfWivSICbKwj6W3chmFhv8qUdauqYnjvZ0hWZBFSsZWux7W2nX3MP49PLUCusXk+hAg3pipg==} + '@azure/keyvault-keys@4.10.2': + resolution: {integrity: sha1-RonuPX645uaBvtDtHwVJ1uwyq2E=} engines: {node: '>=20.0.0'} - '@azure/logger@1.2.0': - resolution: {integrity: sha512-0hKEzLhpw+ZTAfNJyRrn6s+V0nDWzXk9OjBr2TiGIu0OfMr5s2V4FpKLTAK3Ca5r5OKLbf4hkOGDPyiRjie/jA==} - engines: {node: '>=18.0.0'} - - '@azure/logger@1.3.0': - resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==} + '@azure/keyvault-secrets@4.11.2': + resolution: {integrity: sha1-Ngm9ZSp6Nn8UU17FWfgXhkMkr8k=} engines: {node: '>=20.0.0'} '@azure/logger@1.4.0': - resolution: {integrity: sha512-rbAE25KUfjU/s3XHUdJgceoCP5dEOpMx85J04kF+QMdta73XkuG9JGHHinch+XIoKpBdqljin+KqURpJriSzLA==} + resolution: {integrity: sha1-PVpif+WaJ27OdIenndkq1cUIwzk=} engines: {node: '>=22.0.0'} '@azure/maps-common@1.0.0-beta.2': - resolution: {integrity: sha512-PB9GlnfojcQ4nf9WXdQvWeAk7gm8P74o+Z5IHz5YLK/W+3vrNrmVVVuFpGOvCPrLjag50UinaZsMBtPtxoiobg==} + resolution: {integrity: sha1-Cey+hAiSgQAjgn7y2DjyGaUcHDU=} engines: {node: '>=14.0.0'} - '@azure/msal-browser@4.12.0': - resolution: {integrity: sha512-WD1lmVWchg7wn1mI7Tr4v7QPyTwK+8Nuyje3jRpOFENLRLEBsdK8VVdTw3C+TypZmYn4cOAdj3zREnuFXgvfIA==} - engines: {node: '>=0.8.0'} - - '@azure/msal-browser@5.11.0': - resolution: {integrity: sha512-zkGNYS3TwY8lUpPIafAmsFCYZbgFixY9y/LZB9GUg0IILoHTqpN26j5OrkL1AQThh/YdZsawe4iWXfp85lFVxg==} - engines: {node: '>=0.8.0'} - - '@azure/msal-common@15.6.0': - resolution: {integrity: sha512-EotmBz42apYGjqiIV9rDUdptaMptpTn4TdGf3JfjLvFvinSe9BJ6ywU92K9ky+t/b0ghbeTSe9RfqlgLh8f2jA==} + '@azure/msal-browser@5.17.1': + resolution: {integrity: sha1-EozjSq27IGyUDpnKXgzxldEsbfw=} engines: {node: '>=0.8.0'} - '@azure/msal-common@16.6.0': - resolution: {integrity: sha512-FemGljX0csPlBMUE5GUan7BfRn1emeMRUhHSARhqzLN6LA9nt+MgzmAQ1xVqdLm+6plVoxsq9mS5eoyKtpPSgA==} + '@azure/msal-common@15.17.0': + resolution: {integrity: sha1-rjwDN4yFJkKxyaMDOA6UXCuJfwI=} engines: {node: '>=0.8.0'} - '@azure/msal-common@16.6.2': - resolution: {integrity: sha512-hQjjsekAjB00cM1EmatWJlzhEoK2Qhz7Rj5gvM6tYf8iL7RM3tkxlpU9fG0+ofkulzg9AEEA6dIEnSmDr5ZqUA==} + '@azure/msal-common@16.11.2': + resolution: {integrity: sha1-bLo7L5utC9sH7o37+nLv9Lo2nDA=} engines: {node: '>=0.8.0'} - '@azure/msal-node-extensions@1.5.13': - resolution: {integrity: sha512-5JQaPS/hGN5iL1rNBr+t17eVrpIjp8oXnCIrkj8WX4a8YbhlHaw+GhQthetdkMMvJE5RwbdzEN4Vm6zKX9ArGQ==} + '@azure/msal-node-extensions@1.5.32': + resolution: {integrity: sha1-DUhMJt3295AEEU5MZqwvjg0YBaU=} engines: {node: '>=16'} - '@azure/msal-node-extensions@5.2.0': - resolution: {integrity: sha512-3qrb4wxYBfJarrG9NRG5jRVhZfL9vZaDpeq2RDKPiNnA+e0/TKS8JzvXfIZqxn4VIP6/9P6/SSCJS+Y18LIAuw==} + '@azure/msal-node-extensions@5.3.3': + resolution: {integrity: sha1-epkwJfLi78Wbvuivs1j9mLvyeHA=} engines: {node: '>=20'} - '@azure/msal-node-runtime@0.18.2': - resolution: {integrity: sha512-v45fyBQp80BrjZAeGJXl+qggHcbylQiFBihr0ijO2eniDCW9tz5TZBKYsqzH06VuiRaVG/Sa0Hcn4pjhJqFSTw==} - '@azure/msal-node-runtime@0.20.5': - resolution: {integrity: sha512-DqY28Lpx67AsMbT3FYal3MnDZx62Pblnhp1qA+HGtgEsm3jK8COkJVCrhVsprn80PKQfAOdKRuxgVYyvmv2rOg==} - - '@azure/msal-node@3.5.3': - resolution: {integrity: sha512-c5mifzHX5mwm5JqMIlURUyp6LEEdKF1a8lmcNRLBo0lD7zpSYPHupa4jHyhJyg9ccLwszLguZJdk2h3ngnXwNw==} - engines: {node: '>=16'} + resolution: {integrity: sha1-dBs35hgVkO8I6WTXETsMcD+LCBI=} - '@azure/msal-node@5.2.0': - resolution: {integrity: sha512-b/ak8XAqpnGk1N1nsyTVV0Remp48BP3QrGQZ1uCMcvg2S8X1eSXzhHQZEae2oX276Q4KFAqCUswanDtcvIKLrw==} + '@azure/msal-node@5.4.2': + resolution: {integrity: sha1-EeB7IuSZAznQzjMVTg7+pLLFUPo=} engines: {node: '>=20'} '@azure/search-documents@12.1.0': - resolution: {integrity: sha512-IzD+hfqGqFtXymHXm4RzrZW2MsSH2M7RLmZsKaKVi7SUxbeYTUeX+ALk8gVzkM8ykb7EzlDLWCNErKfAa57rYQ==} + resolution: {integrity: sha1-eTO+ozIX17lWlv6XoZzA9DMbw2o=} engines: {node: '>=18.0.0'} - '@azure/storage-blob@12.27.0': - resolution: {integrity: sha512-IQjj9RIzAKatmNca3D6bT0qJ+Pkox1WZGOg2esJF2YLHb45pQKOwGPIAV+w3rfgkj7zV3RMxpn/c6iftzSOZJQ==} - engines: {node: '>=18.0.0'} + '@azure/storage-blob@12.33.0': + resolution: {integrity: sha1-EK1FhvSSJzG4t5zIa+ytp1Z6H6s=} + engines: {node: '>=22.0.0'} - '@babel/code-frame@7.27.1': - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} - engines: {node: '>=6.9.0'} + '@azure/storage-common@12.4.1': + resolution: {integrity: sha1-eMI6si3QTOJ7E9/omRtFtv3ts0U=} + engines: {node: '>=20.0.0'} '@babel/code-frame@7.29.7': - resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + resolution: {integrity: sha1-8vu/6ofESiFZDsUVt3iywm2IZuc=} engines: {node: '>=6.9.0'} '@babel/compat-data@7.29.7': - resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} + resolution: {integrity: sha1-bwI38PNtLlHAVwpjb67Z0tDv5ik=} engines: {node: '>=6.9.0'} '@babel/core@7.29.7': - resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==} + resolution: {integrity: sha1-gMELFySAgpaLV6hXuRZAlx8gcPc=} engines: {node: '>=6.9.0'} '@babel/generator@7.29.7': - resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} + resolution: {integrity: sha1-zKC4gn5rzzuhdniOfzsYCtbbL6M=} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.29.7': - resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} + resolution: {integrity: sha1-eh3vcEMCQBxH9k+oVYnpdK4hcEI=} engines: {node: '>=6.9.0'} '@babel/helper-globals@7.29.7': - resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} + resolution: {integrity: sha1-8EqW+9hHMkGxB5JD9bPwOjAQq3s=} engines: {node: '>=6.9.0'} '@babel/helper-module-imports@7.29.7': - resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} + resolution: {integrity: sha1-7yUEilGOgo1zk/rFiC3dc5Idc5Y=} engines: {node: '>=6.9.0'} '@babel/helper-module-transforms@7.29.7': - resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} + resolution: {integrity: sha1-sGJ0elmXuhOGNyATKLv/d5YFdK4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-plugin-utils@7.27.1': - resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} - engines: {node: '>=6.9.0'} - '@babel/helper-plugin-utils@7.29.7': - resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==} + resolution: {integrity: sha1-wKB2bxoTYX2KF0B9erj51IYiXqQ=} engines: {node: '>=6.9.0'} '@babel/helper-string-parser@7.29.7': - resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} + resolution: {integrity: sha1-fwhx2Zgk0jE31g+G/PYTD9WhtR8=} engines: {node: '>=6.9.0'} '@babel/helper-validator-identifier@7.29.7': - resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} + resolution: {integrity: sha1-vYcITO0MeW7Ea9pJLeboPSnon8I=} engines: {node: '>=6.9.0'} '@babel/helper-validator-option@7.29.7': - resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} + resolution: {integrity: sha1-zzFb6UAhOzVOtKvMC9Aevj9zvCo=} engines: {node: '>=6.9.0'} '@babel/helpers@7.29.7': - resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} + resolution: {integrity: sha1-Rav951SJl+NDdsPmn+tHXP+0pgc=} engines: {node: '>=6.9.0'} '@babel/parser@7.29.7': - resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==} + resolution: {integrity: sha1-g3uHOHy/XsVTDLY0s8Yi9o7bkzQ=} engines: {node: '>=6.0.0'} hasBin: true '@babel/plugin-syntax-async-generators@7.8.4': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-bigint@7.8.3': - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + resolution: {integrity: sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-class-properties@7.12.13': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-class-static-block@7.14.5': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-import-attributes@7.29.7': - resolution: {integrity: sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==} + resolution: {integrity: sha1-YRUmRRbpXq0PNaQXEJBmEuRH9gU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-import-meta@7.10.4': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-json-strings@7.8.3': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-jsx@7.27.1': - resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + '@babel/plugin-syntax-jsx@7.29.7': + resolution: {integrity: sha1-YiwW+a1jeC/m6D2tx+QDMHRLfx4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-logical-assignment-operators@7.10.4': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + resolution: {integrity: sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + resolution: {integrity: sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.27.1': - resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + '@babel/plugin-syntax-typescript@7.29.7': + resolution: {integrity: sha1-fCk4iTIxPtWEE6A0MEjXXZL7WyQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.27.1': - resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} + '@babel/plugin-transform-arrow-functions@7.29.7': + resolution: {integrity: sha1-1lE0P1YsA/R5Ub0YAhldDhBgXyc=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.27.0': - resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} - engines: {node: '>=6.9.0'} - '@babel/runtime@7.29.7': - resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} + resolution: {integrity: sha1-EgIkUMRaTabY2Ch7GKT/Ldsj92g=} engines: {node: '>=6.9.0'} '@babel/template@7.29.7': - resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} + resolution: {integrity: sha1-TZ1ABPZFzdME3pWMclFieE7KxwA=} engines: {node: '>=6.9.0'} '@babel/traverse@7.29.7': - resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} + resolution: {integrity: sha1-xHsHpBuV2gkH0Ca13YlNmN59Ly0=} engines: {node: '>=6.9.0'} '@babel/types@7.29.7': - resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} + resolution: {integrity: sha1-gAXjHYJxLuetrvbiPGO3GmJ3CpI=} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + resolution: {integrity: sha1-daLotRy3WKdVPWgEpZMteqznXDk=} '@bcoe/v8-coverage@1.0.2': - resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + resolution: {integrity: sha1-u+EtyltO+YOg0K9LB7m8kOoKuro=} engines: {node: '>=18'} '@braintree/sanitize-url@7.1.2': - resolution: {integrity: sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA==} + resolution: {integrity: sha1-yiA1sP7+lWqGdv8Maa9z5gX82B8=} '@bramus/specificity@2.4.2': - resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==} + resolution: {integrity: sha1-qo246xc/3ucyT4IoSDMQat7sxkg=} hasBin: true '@chevrotain/types@11.1.2': - resolution: {integrity: sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw==} + resolution: {integrity: sha1-6DoaJwTwxeSedZKyFAMaD0o01+U=} '@cliqz/adblocker-content@1.34.0': - resolution: {integrity: sha512-5LcV8UZv49RWwtpom9ve4TxJIFKd+bjT59tS/2Z2c22Qxx5CW1ncO/T+ybzk31z422XplQfd0ZE6gMGGKs3EMg==} + resolution: {integrity: sha1-OgNHwbS8uEZ/AlRkpdwxCvHnFmg=} deprecated: This project has been renamed to @ghostery/adblocker-content. Install using @ghostery/adblocker-content instead '@cliqz/adblocker-extended-selectors@1.34.0': - resolution: {integrity: sha512-lNrgdUPpsBWHjrwXy2+Z5nX/Gy5YAvNwFMLqkeMdjzrybwPIalJJN2e+YtkS1I6mVmOMNppF5cv692OAVoI74g==} + resolution: {integrity: sha1-1LBV/b7p1d/iKyt1pD3QuD9wnHw=} deprecated: This project has been renamed to @ghostery/adblocker-extended-selectors. Install using @ghostery/adblocker-extended-selectors instead '@cliqz/adblocker-puppeteer@1.23.8': - resolution: {integrity: sha512-Ca1/DBqQXsOpKTFVAHX6OpLTSEupXmUkUWHj6iXhLLleC7RPISN5B0b801VDmaGRqoC5zKRxn0vYbIfpgCWVug==} + resolution: {integrity: sha1-50Y2zSAEWdFzSSnkFQSnaTlQQxE=} deprecated: This project has been renamed to @ghostery/adblocker-puppeteer. Install using @ghostery/adblocker-puppeteer instead peerDependencies: puppeteer: '>5' '@cliqz/adblocker@1.34.0': - resolution: {integrity: sha512-d7TeUl5t+TOMJe7/CRYtf+x6hbd8N25DtH7guQTIjjr3AFVortxiAIgNejGvVqy0by4eNByw+oVil15oqxz2Eg==} + resolution: {integrity: sha1-KDXMJxiIrcO6xQ0C6+5zygxuxRg=} deprecated: This project has been renamed to @ghostery/adblocker. Install using @ghostery/adblocker instead - '@codemirror/autocomplete@6.18.6': - resolution: {integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==} - '@codemirror/autocomplete@6.20.3': - resolution: {integrity: sha512-tlosUqb+3BbxCxZdu4tKeRghPFC+QM7q4X5YhKV2eCmPG+1r2F3f4AaSz5sCrFqUtX4Jh20VFTKecl16MgiV9g==} + resolution: {integrity: sha1-aWt0AxLGqWLhRWe0mjZhtZJLxa4=} - '@codemirror/commands@6.8.1': - resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==} + '@codemirror/commands@6.10.4': + resolution: {integrity: sha1-ZN7BvQQ5dus0TjzJ0VrxO29yS/0=} '@codemirror/lang-angular@0.1.4': - resolution: {integrity: sha512-oap+gsltb/fzdlTQWD6BFF4bSLKcDnlxDsLdePiJpCVNKWXSTAbiiQeYI3UmES+BLAdkmIC1WjyztC1pi/bX4g==} + resolution: {integrity: sha1-W56UB4a6IBqaQuq225UB+j/iKSo=} - '@codemirror/lang-cpp@6.0.2': - resolution: {integrity: sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==} + '@codemirror/lang-cpp@6.0.3': + resolution: {integrity: sha1-sXW1n83o3W5WO3/u6LvtgZY6lJE=} '@codemirror/lang-css@6.3.1': - resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==} + resolution: {integrity: sha1-djykGu6BuyQxvlXjz8x8yOkUIaM=} '@codemirror/lang-go@6.0.1': - resolution: {integrity: sha512-7fNvbyNylvqCphW9HD6WFnRpcDjr+KXX/FgqXy5H5ZS0eC5edDljukm/yNgYkwTsgp2busdod50AOTIy6Jikfg==} + resolution: {integrity: sha1-WYIiyQ9W6uKNEQacYSymTQMGsFc=} + + '@codemirror/lang-html@6.4.11': + resolution: {integrity: sha1-xGukauZC/VZ88FxBKQBdKROsJI0=} - '@codemirror/lang-html@6.4.9': - resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==} + '@codemirror/lang-java@6.0.2': + resolution: {integrity: sha1-YB1bPXdKSpl9EWR8y2wFcCxUvVs=} - '@codemirror/lang-java@6.0.1': - resolution: {integrity: sha512-OOnmhH67h97jHzCuFaIEspbmsT98fNdhVhmA3zCxW0cn7l8rChDhZtwiwJ/JOKXgfm4J+ELxQihxaI7bj7mJRg==} + '@codemirror/lang-javascript@6.2.5': + resolution: {integrity: sha1-ueprLwOD7WiV+ueIjAMiVBU48Qo=} - '@codemirror/lang-javascript@6.2.4': - resolution: {integrity: sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==} + '@codemirror/lang-jinja@6.0.1': + resolution: {integrity: sha1-AdEop+B1aycUzUU60Wwd/7IBiPA=} - '@codemirror/lang-json@6.0.1': - resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==} + '@codemirror/lang-json@6.0.2': + resolution: {integrity: sha1-BUsWBnEwZmfiXYA4UoYEmEGDYXk=} '@codemirror/lang-less@6.0.2': - resolution: {integrity: sha512-EYdQTG22V+KUUk8Qq582g7FMnCZeEHsyuOJisHRft/mQ+ZSZ2w51NupvDUHiqtsOy7It5cHLPGfHQLpMh9bqpQ==} + resolution: {integrity: sha1-Lj2Co924cQ5kCWic1KKMZlWNDLg=} - '@codemirror/lang-liquid@6.2.3': - resolution: {integrity: sha512-yeN+nMSrf/lNii3FJxVVEGQwFG0/2eDyH6gNOj+TGCa0hlNO4bhQnoO5ISnd7JOG+7zTEcI/GOoyraisFVY7jQ==} + '@codemirror/lang-liquid@6.3.2': + resolution: {integrity: sha1-Yjv1d22Qad2uNxrJob0ZFNcBB7g=} - '@codemirror/lang-markdown@6.3.3': - resolution: {integrity: sha512-1fn1hQAPWlSSMCvnF810AkhWpNLkJpl66CRfIy3vVl20Sl4NwChkorCHqpMtNbXr1EuMJsrDnhEpjZxKZ2UX3A==} + '@codemirror/lang-markdown@6.5.1': + resolution: {integrity: sha1-61PEiONouPpYFAmgZTHf7dVz2Iw=} - '@codemirror/lang-php@6.0.1': - resolution: {integrity: sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==} + '@codemirror/lang-php@6.0.2': + resolution: {integrity: sha1-vcQ50ZXI5zUTvFuXGpmle1yZ7lU=} '@codemirror/lang-python@6.2.1': - resolution: {integrity: sha512-IRjC8RUBhn9mGR9ywecNhB51yePWCGgvHfY1lWN/Mrp3cKuHr0isDKia+9HnvhiWNnMpbGhWrkhuWOc09exRyw==} + resolution: {integrity: sha1-N8mTBxYRAVaGWpXFSKoO71VShjo=} - '@codemirror/lang-rust@6.0.1': - resolution: {integrity: sha512-344EMWFBzWArHWdZn/NcgkwMvZIWUR1GEBdwG8FEp++6o6vT6KL9V7vGs2ONsKxxFUPXKI0SPcWhyYyl2zPYxQ==} + '@codemirror/lang-rust@6.0.2': + resolution: {integrity: sha1-aRRuaz6Plh7xSQWa7Lnge/17870=} '@codemirror/lang-sass@6.0.2': - resolution: {integrity: sha512-l/bdzIABvnTo1nzdY6U+kPAC51czYQcOErfzQ9zSm9D8GmNPD0WTW8st/CJwBTPLO8jlrbyvlSEcN20dc4iL0Q==} + resolution: {integrity: sha1-OMGwoTJsyfXLJ0HSzVHPvNerwLI=} - '@codemirror/lang-sql@6.9.0': - resolution: {integrity: sha512-xmtpWqKSgum1B1J3Ro6rf7nuPqf2+kJQg5SjrofCAcyCThOe0ihSktSoXfXuhQBnwx1QbmreBbLJM5Jru6zitg==} + '@codemirror/lang-sql@6.10.0': + resolution: {integrity: sha1-Sb+/bPMVFqmeZ02po5n0QmEBqVo=} '@codemirror/lang-vue@0.1.3': - resolution: {integrity: sha512-QSKdtYTDRhEHCfo5zOShzxCmqKJvgGrZwDQSdbvCRJ5pRLWBS7pD/8e/tH44aVQT6FKm0t6RVNoSUWHOI5vNug==} + resolution: {integrity: sha1-v3m5FSzBi0kD1kwfZ+GGrgRcipc=} '@codemirror/lang-wast@6.0.2': - resolution: {integrity: sha512-Imi2KTpVGm7TKuUkqyJ5NRmeFWF7aMpNiwHnLQe0x9kmrxElndyH0K6H/gXtWwY6UshMRAhpENsgfpSwsgmC6Q==} + resolution: {integrity: sha1-0rFBdeXoDXh4y7sp4g7JDcEtOis=} '@codemirror/lang-xml@6.1.0': - resolution: {integrity: sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==} + resolution: {integrity: sha1-4+eG4aif3JUg7+dcHW094cQOuRw=} - '@codemirror/lang-yaml@6.1.2': - resolution: {integrity: sha512-dxrfG8w5Ce/QbT7YID7mWZFKhdhsaTNOYjOkSIMt1qmC4VQnXSDSYVHHHn8k6kJUfIhtLo8t1JJgltlxWdsITw==} + '@codemirror/lang-yaml@6.1.3': + resolution: {integrity: sha1-TUEn6DOZhGOXFdHj+O3KHqW/q/s=} - '@codemirror/language-data@6.5.1': - resolution: {integrity: sha512-0sWxeUSNlBr6OmkqybUTImADFUP0M3P0IiSde4nc24bz/6jIYzqYSgkOSLS+CBIoW1vU8Q9KUWXscBXeoMVC9w==} + '@codemirror/language-data@6.5.2': + resolution: {integrity: sha1-QE3D1QqA0PdryPgfk8wdguMiQXw=} - '@codemirror/language@6.11.1': - resolution: {integrity: sha512-5kS1U7emOGV84vxC+ruBty5sUgcD0te6dyupyRVG2zaSjhTDM73LhVKUtVwiqSe6QwmEoA4SCiU8AKPFyumAWQ==} + '@codemirror/language@6.12.4': + resolution: {integrity: sha1-AecP1ao6igZ/8d/sddW2OUzfoFg=} - '@codemirror/legacy-modes@6.5.1': - resolution: {integrity: sha512-DJYQQ00N1/KdESpZV7jg9hafof/iBNp9h7TYo1SLMk86TWl9uDsVdho2dzd81K+v4retmK6mdC7WpuOQDytQqw==} - - '@codemirror/lint@6.8.5': - resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==} + '@codemirror/legacy-modes@6.5.3': + resolution: {integrity: sha1-XcrHzcQw0yrYrxwsm845L60bX8s=} '@codemirror/lint@6.9.7': - resolution: {integrity: sha512-28/+iWLYxKxsvGYhSYL7zaCZqLz5+FFFDq9tVsvGv9kv8RY4fFAchJ5WX9M3YrrRlTIsECjsXPqeNgnSmNP2dg==} - - '@codemirror/search@6.5.11': - resolution: {integrity: sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==} + resolution: {integrity: sha1-hB/HM2dDidkf5JocNAJ607q98QU=} - '@codemirror/state@6.5.2': - resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==} + '@codemirror/search@6.7.1': + resolution: {integrity: sha1-JSOnYocdGK2YLtwtSy+h2kg7A5I=} '@codemirror/state@6.7.1': - resolution: {integrity: sha512-9QzNDgE4EYDnAHfrTlR2lwiPciiOymLtwKK+8yHQzCc7GXhAP9xdEbEJFy2IWB1j9UGUl9BsgMmTo/ImA02T7A==} + resolution: {integrity: sha1-noihdEjB28e1Csvu7Jee18zx1vw=} - '@codemirror/theme-one-dark@6.1.2': - resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==} - - '@codemirror/view@6.37.2': - resolution: {integrity: sha512-XD3LdgQpxQs5jhOOZ2HRVT+Rj59O4Suc7g2ULvZ+Yi8eCkickrkZ5JFuoDhs2ST1mNI5zSsNYgR3NGa4OUrbnw==} + '@codemirror/theme-one-dark@6.1.3': + resolution: {integrity: sha1-Hbtz9uc8U8Eq0q7Z9IwmPE5j6jc=} '@codemirror/view@6.43.6': - resolution: {integrity: sha512-EVunGSYN1wz1p75WY1s3Xg7t3i8Yol0kGZGizNdX9BUFgMFILYVe8/u6EVpo7Ff5PwbZuILb4QAq7IZoKzIEQA==} + resolution: {integrity: sha1-geTusoVefLbGIwX7qN8xm1R2KAw=} '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + resolution: {integrity: sha1-u1BFecHK6SPmV2pPXaQ9Jfl729k=} engines: {node: '>=0.1.90'} '@cspotcode/source-map-support@0.8.1': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + resolution: {integrity: sha1-AGKcNaaI4FqIsc2mhPudXnPwAKE=} engines: {node: '>=12'} - '@csstools/color-helpers@6.0.2': - resolution: {integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==} + '@csstools/color-helpers@6.1.0': + resolution: {integrity: sha1-GJAySNsdooKF6EWHk7A49g1zjPE=} engines: {node: '>=20.19.0'} - '@csstools/css-calc@3.1.1': - resolution: {integrity: sha512-HJ26Z/vmsZQqs/o3a6bgKslXGFAungXGbinULZO3eMsOyNJHeBBZfup5FiZInOghgoM4Hwnmw+OgbJCNg1wwUQ==} + '@csstools/css-calc@3.3.0': + resolution: {integrity: sha1-M8xL26uO3xtuOrjB66hJxBoyTxo=} engines: {node: '>=20.19.0'} peerDependencies: '@csstools/css-parser-algorithms': ^4.0.0 '@csstools/css-tokenizer': ^4.0.0 - '@csstools/css-color-parser@4.0.2': - resolution: {integrity: sha512-0GEfbBLmTFf0dJlpsNU7zwxRIH0/BGEMuXLTCvFYxuL1tNhqzTbtnFICyJLTNK4a+RechKP75e7w42ClXSnJQw==} + '@csstools/css-color-parser@4.1.10': + resolution: {integrity: sha1-VvP1u+1mPXYxYWqKi/NPI7T5ync=} engines: {node: '>=20.19.0'} peerDependencies: '@csstools/css-parser-algorithms': ^4.0.0 '@csstools/css-tokenizer': ^4.0.0 '@csstools/css-parser-algorithms@4.0.0': - resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==} + resolution: {integrity: sha1-4cZdwJN4tC8moRH8p/cHX8LCYWQ=} engines: {node: '>=20.19.0'} peerDependencies: '@csstools/css-tokenizer': ^4.0.0 - '@csstools/css-syntax-patches-for-csstree@1.1.1': - resolution: {integrity: sha512-BvqN0AMWNAnLk9G8jnUT77D+mUbY/H2b3uDTvg2isJkHaOufUE2R3AOwxWo7VBQKT1lOdwdvorddo2B/lk64+w==} + '@csstools/css-syntax-patches-for-csstree@1.1.7': + resolution: {integrity: sha1-Z6ZfSyZ2bDFd39K9uJrExT/dUec=} peerDependencies: css-tree: ^3.2.1 peerDependenciesMeta: @@ -7499,609 +7316,449 @@ packages: optional: true '@csstools/css-tokenizer@4.0.0': - resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==} + resolution: {integrity: sha1-eYozlQ0RImoOu2rK+mD1WUQkln8=} engines: {node: '>=20.19.0'} '@dependents/detective-less@5.0.3': - resolution: {integrity: sha512-v6oD9Ukp+N7V4n6p5I/+mM5fIohSfkrDSGlFm5w/pYmchvbk+sMIHsLxrFJ5Lnujewj1BzWL0K84d88lwZAMQA==} + resolution: {integrity: sha1-XGpYSerKwnzwplemXB2U/NHmhDs=} engines: {node: '>=18'} '@develar/schema-utils@2.6.5': - resolution: {integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==} + resolution: {integrity: sha1-Ps4ixYOEAkGabgQl+FdCuWHZtsY=} engines: {node: '>= 8.9.0'} '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + resolution: {integrity: sha1-HVcr+74Ut3BOC6Dzm3SBW4SHDXA=} engines: {node: '>=10.0.0'} '@discoveryjs/json-ext@1.1.0': - resolution: {integrity: sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA==} + resolution: {integrity: sha1-RLXONIXpUjWsoG5ijuqqPIFrxMw=} engines: {node: '>=14.17.0'} - '@elastic/elasticsearch@9.3.4': - resolution: {integrity: sha512-Mp14fPEYx+WTfZdcvAaZ9WkLYGHQCbwMx6EP5VCucYdhv4cn/g2sbnMT5HzK+gX3XEpBnnkEK/+WysCKzxuo3A==} - engines: {node: '>=18'} + '@elastic/elasticsearch@9.4.2': + resolution: {integrity: sha1-vkEkP7Z7c7MRTKgDzRU1kXgrbIs=} + engines: {node: '>=20'} + peerDependencies: + apache-arrow: 18.x - 21.x + peerDependenciesMeta: + apache-arrow: + optional: true - '@elastic/transport@9.3.5': - resolution: {integrity: sha512-hIMJbt1guqr3/N2zCN45k9hw9o78qcdsO0xietLe+Bfa+JL0YafHTgkWkM1oT3Ht5sGMJaDcJZiYomSMU6CtTA==} + '@elastic/transport@9.3.7': + resolution: {integrity: sha1-W4GZj1tjBd1vjZsF2oJKlsU9+Lg=} engines: {node: '>=20'} '@electron-toolkit/preload@3.0.2': - resolution: {integrity: sha512-TWWPToXd8qPRfSXwzf5KVhpXMfONaUuRAZJHsKthKgZR/+LqX1dZVSSClQ8OTAEduvLGdecljCsoT2jSshfoUg==} + resolution: {integrity: sha1-7luzOrpIdBxbxTmppvqtC+RVRl4=} peerDependencies: electron: '>=13.0.0' '@electron-toolkit/tsconfig@1.0.1': - resolution: {integrity: sha512-M0Mol3odspvtCuheyujLNAW7bXq7KFNYVMRtpjFa4ZfES4MuklXBC7Nli/omvc+PRKlrklgAGx3l4VakjNo8jg==} + resolution: {integrity: sha1-eASNMXjdempXNZDiMkDwdksMFK8=} peerDependencies: '@types/node': '*' '@electron/asar@3.4.1': - resolution: {integrity: sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA==} + resolution: {integrity: sha1-TpGWpLVPuhjFbNjVysZ8W9xYgGU=} engines: {node: '>=10.12.0'} hasBin: true '@electron/fuses@1.8.0': - resolution: {integrity: sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==} + resolution: {integrity: sha1-rTTTzEcDsSWLg/aYmRcFLPwUkKA=} hasBin: true '@electron/get@2.0.3': - resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==} + resolution: {integrity: sha1-+6VSaD04euvZ8/ytvK/I4S7k+WA=} engines: {node: '>=12'} '@electron/get@3.1.0': - resolution: {integrity: sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ==} + resolution: {integrity: sha1-IsWgvZF6sgG63rd7xK0Yy6VMtOw=} engines: {node: '>=14'} '@electron/notarize@2.5.0': - resolution: {integrity: sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==} + resolution: {integrity: sha1-1NJTVq36Kd9Kdr1kqL00cjfNJR4=} engines: {node: '>= 10.0.0'} '@electron/osx-sign@1.3.3': - resolution: {integrity: sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg==} + resolution: {integrity: sha1-r3UVEEiDGNn3ZjaUr4WBlpDXVYM=} engines: {node: '>=12.0.0'} hasBin: true '@electron/rebuild@4.2.0': - resolution: {integrity: sha512-RKL/O+jGoXJMxrx/5771y1n0xTKmFuOYGO3gMmwypBM6rsH0kou0mswwdXA2JrhIkE4xyC7v9vGk0n6NPzgOxQ==} + resolution: {integrity: sha1-7nQpqXE00T6ze39RfXN+AtHeqHc=} engines: {node: '>=22.12.0'} hasBin: true '@electron/universal@2.0.3': - resolution: {integrity: sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g==} + resolution: {integrity: sha1-FoDfbO2PEoyg/yTinCFl1B14s84=} engines: {node: '>=16.4'} '@electron/windows-sign@1.2.2': - resolution: {integrity: sha512-dfZeox66AvdPtb2lD8OsIIQh12Tp0GNCRUDfBHIKGpbmopZto2/A8nSpYYLoedPIHpqkeblZ/k8OV0Gy7PYuyQ==} + resolution: {integrity: sha1-jOqtUtXB6xhwL0gQPV87x8M4+p0=} engines: {node: '>=14.14'} hasBin: true - '@emnapi/core@1.11.0': - resolution: {integrity: sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q==} - - '@emnapi/core@1.11.1': - resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} - - '@emnapi/runtime@1.11.0': - resolution: {integrity: sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==} + '@emnapi/core@1.11.2': + resolution: {integrity: sha1-+rCg88SS0R9amskGXQ1zlV7hwck=} - '@emnapi/runtime@1.11.1': - resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} - - '@emnapi/runtime@1.4.0': - resolution: {integrity: sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==} + '@emnapi/runtime@1.11.2': + resolution: {integrity: sha1-6yLwTXb+v99Ph/2v9UyKU/a/Db0=} '@emnapi/wasi-threads@1.2.2': - resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} + resolution: {integrity: sha1-TJO+z1v6OxPRu9zAau44MhrYE5o=} '@esbuild-plugins/node-globals-polyfill@0.2.3': - resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==} + resolution: {integrity: sha1-DkSXorU8npSF4Um8kt2yKEONa88=} peerDependencies: esbuild: '*' '@esbuild/aix-ppc64@0.25.12': - resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - - '@esbuild/aix-ppc64@0.27.7': - resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + resolution: {integrity: sha1-gPy+NhMOWLdnBRHoiLjoiiWe12w=} engines: {node: '>=18'} cpu: [ppc64] os: [aix] '@esbuild/aix-ppc64@0.28.1': - resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==} + resolution: {integrity: sha1-egGo0uwvuy2seK2tCbD6eB5Agr4=} engines: {node: '>=18'} cpu: [ppc64] os: [aix] '@esbuild/android-arm64@0.25.12': - resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm64@0.27.7': - resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + resolution: {integrity: sha1-iqSWX40KeYLcIXNL9mATI6Ztp1I=} engines: {node: '>=18'} cpu: [arm64] os: [android] '@esbuild/android-arm64@0.28.1': - resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==} + resolution: {integrity: sha1-tUCifRTkr9BYSWpNvsTT9BTbEQo=} engines: {node: '>=18'} cpu: [arm64] os: [android] '@esbuild/android-arm@0.25.12': - resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - - '@esbuild/android-arm@0.27.7': - resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + resolution: {integrity: sha1-MAcSEB9/UPHSYnoWLm4JsQm2dno=} engines: {node: '>=18'} cpu: [arm] os: [android] '@esbuild/android-arm@0.28.1': - resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==} + resolution: {integrity: sha1-cEvSl95tdi3lTqu+r79V9nVqvi8=} engines: {node: '>=18'} cpu: [arm] os: [android] '@esbuild/android-x64@0.25.12': - resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - - '@esbuild/android-x64@0.27.7': - resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + resolution: {integrity: sha1-h9+ycWEgK9yVjvSLthsJx1j67hY=} engines: {node: '>=18'} cpu: [x64] os: [android] '@esbuild/android-x64@0.28.1': - resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==} + resolution: {integrity: sha1-0csWbTSw+/D+irRgpVlPJKN4cB4=} engines: {node: '>=18'} cpu: [x64] os: [android] '@esbuild/darwin-arm64@0.25.12': - resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-arm64@0.27.7': - resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + resolution: {integrity: sha1-eRl4mOwf90XSHAceHHzDyALwwf0=} engines: {node: '>=18'} cpu: [arm64] os: [darwin] '@esbuild/darwin-arm64@0.28.1': - resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==} + resolution: {integrity: sha1-EDSyZFf8iGNo/mG70J9lP2r6jlQ=} engines: {node: '>=18'} cpu: [arm64] os: [darwin] '@esbuild/darwin-x64@0.25.12': - resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - - '@esbuild/darwin-x64@0.27.7': - resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + resolution: {integrity: sha1-FGQAqFYhM/RcTS6tzzfd0JcYB54=} engines: {node: '>=18'} cpu: [x64] os: [darwin] '@esbuild/darwin-x64@0.28.1': - resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==} + resolution: {integrity: sha1-ZVVqQyoeTXIDLYIYwZMvzKGkl3I=} engines: {node: '>=18'} cpu: [x64] os: [darwin] '@esbuild/freebsd-arm64@0.25.12': - resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-arm64@0.27.7': - resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + resolution: {integrity: sha1-HF+bpyBuFY/SskxZ+i0si7R8oP4=} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] '@esbuild/freebsd-arm64@0.28.1': - resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==} + resolution: {integrity: sha1-LmHgWS+QMNfj2uGO4l68U1kYrvY=} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] '@esbuild/freebsd-x64@0.25.12': - resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.27.7': - resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + resolution: {integrity: sha1-6mMfSja+qsS5J5+g/MbKKerusrM=} engines: {node: '>=18'} cpu: [x64] os: [freebsd] '@esbuild/freebsd-x64@0.28.1': - resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==} + resolution: {integrity: sha1-yV7CiZWe+AecTcqBeh4sS+Zrm9M=} engines: {node: '>=18'} cpu: [x64] os: [freebsd] '@esbuild/linux-arm64@0.25.12': - resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm64@0.27.7': - resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + resolution: {integrity: sha1-4QZrzlg5TxsRQd7shVel8KIvWXc=} engines: {node: '>=18'} cpu: [arm64] os: [linux] '@esbuild/linux-arm64@0.28.1': - resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==} + resolution: {integrity: sha1-QLIhdd2gYYLz7oFBGGxf8wTEpxc=} engines: {node: '>=18'} cpu: [arm64] os: [linux] '@esbuild/linux-arm@0.25.12': - resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-arm@0.27.7': - resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + resolution: {integrity: sha1-RSzWayCTLQi9xTqLYcDjC69DSLk=} engines: {node: '>=18'} cpu: [arm] os: [linux] '@esbuild/linux-arm@0.28.1': - resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==} + resolution: {integrity: sha1-wJoPZ5F1kqwN6JKpvk04FN69Kmw=} engines: {node: '>=18'} cpu: [arm] os: [linux] '@esbuild/linux-ia32@0.25.12': - resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-ia32@0.27.7': - resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + resolution: {integrity: sha1-sk+KzEW89UGSx/LzvhtT5lUer+A=} engines: {node: '>=18'} cpu: [ia32] os: [linux] '@esbuild/linux-ia32@0.28.1': - resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==} + resolution: {integrity: sha1-pYD5xnZ5eDOJHlGfx6EzfIr9jbM=} engines: {node: '>=18'} cpu: [ia32] os: [linux] '@esbuild/linux-loong64@0.25.12': - resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-loong64@0.27.7': - resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + resolution: {integrity: sha1-+c//p/yDIlcfvEyLMmjK8VvYGtA=} engines: {node: '>=18'} cpu: [loong64] os: [linux] '@esbuild/linux-loong64@0.28.1': - resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==} + resolution: {integrity: sha1-RkUs8yHcf56Rwvp4Cla7Vuec1os=} engines: {node: '>=18'} cpu: [loong64] os: [linux] '@esbuild/linux-mips64el@0.25.12': - resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-mips64el@0.27.7': - resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + resolution: {integrity: sha1-V1oUvXRkT/q4ka3H1+YNJ1KW8s0=} engines: {node: '>=18'} cpu: [mips64el] os: [linux] '@esbuild/linux-mips64el@0.28.1': - resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==} + resolution: {integrity: sha1-QhGzGE3WYI9T3LIuOfXTTuCIUsg=} engines: {node: '>=18'} cpu: [mips64el] os: [linux] '@esbuild/linux-ppc64@0.25.12': - resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-ppc64@0.27.7': - resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + resolution: {integrity: sha1-dbmccKlfvV93OddpK+/mBgFZGGk=} engines: {node: '>=18'} cpu: [ppc64] os: [linux] '@esbuild/linux-ppc64@0.28.1': - resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==} + resolution: {integrity: sha1-aXhXwqYcubC2u2ZS5AwdxeHKjl0=} engines: {node: '>=18'} cpu: [ppc64] os: [linux] '@esbuild/linux-riscv64@0.25.12': - resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-riscv64@0.27.7': - resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + resolution: {integrity: sha1-LjJZRAMhpE553fdTXDJQV9qHXNY=} engines: {node: '>=18'} cpu: [riscv64] os: [linux] '@esbuild/linux-riscv64@0.28.1': - resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==} + resolution: {integrity: sha1-0ZKUPrFGpArExkl9DPe+NbmGvwg=} engines: {node: '>=18'} cpu: [riscv64] os: [linux] '@esbuild/linux-s390x@0.25.12': - resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-s390x@0.27.7': - resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + resolution: {integrity: sha1-F2dsq7/lko2lsqDW311YzQjbJmM=} engines: {node: '>=18'} cpu: [s390x] os: [linux] '@esbuild/linux-s390x@0.28.1': - resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==} + resolution: {integrity: sha1-rOoDVtoODrwI+Xz3ucLkAeHmSNw=} engines: {node: '>=18'} cpu: [s390x] os: [linux] '@esbuild/linux-x64@0.25.12': - resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - - '@esbuild/linux-x64@0.27.7': - resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + resolution: {integrity: sha1-BYN3VoXKggZtBMNQfwlSTTzXowY=} engines: {node: '>=18'} cpu: [x64] os: [linux] '@esbuild/linux-x64@0.28.1': - resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==} + resolution: {integrity: sha1-bww84MtkxTS3DExF7LLBbTTjXf0=} engines: {node: '>=18'} cpu: [x64] os: [linux] '@esbuild/netbsd-arm64@0.25.12': - resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - - '@esbuild/netbsd-arm64@0.27.7': - resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + resolution: {integrity: sha1-8ExAScsuJS/paxb+2Q9wdGsT9KQ=} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] '@esbuild/netbsd-arm64@0.28.1': - resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==} + resolution: {integrity: sha1-i813B3oNzjN4tXT+2ybSolO3PTY=} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] '@esbuild/netbsd-x64@0.25.12': - resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - - '@esbuild/netbsd-x64@0.27.7': - resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + resolution: {integrity: sha1-d9oNCg2CbXySHuo9QCklSLJYoHY=} engines: {node: '>=18'} cpu: [x64] os: [netbsd] '@esbuild/netbsd-x64@0.28.1': - resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==} + resolution: {integrity: sha1-5/sqAemcgwyU5mI82f77TI+1g0c=} engines: {node: '>=18'} cpu: [x64] os: [netbsd] '@esbuild/openbsd-arm64@0.25.12': - resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - - '@esbuild/openbsd-arm64@0.27.7': - resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + resolution: {integrity: sha1-Ypb1hnrt7yioGyKrIAnHhqlS3M0=} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] '@esbuild/openbsd-arm64@0.28.1': - resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==} + resolution: {integrity: sha1-xSkJNy24uG4sVeBaiUADO1Zgo7I=} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] '@esbuild/openbsd-x64@0.25.12': - resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - - '@esbuild/openbsd-x64@0.27.7': - resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + resolution: {integrity: sha1-+NIzAzYOJ7Fs8GWyO7/0PBQUJnk=} engines: {node: '>=18'} cpu: [x64] os: [openbsd] '@esbuild/openbsd-x64@0.28.1': - resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==} + resolution: {integrity: sha1-xCe5vlpkwmL/mn63C1+7qt9EbGw=} engines: {node: '>=18'} cpu: [x64] os: [openbsd] '@esbuild/openharmony-arm64@0.25.12': - resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openharmony] - - '@esbuild/openharmony-arm64@0.27.7': - resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + resolution: {integrity: sha1-SeC3aHRKOSS+DX/ZfdbOmykj2I0=} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] '@esbuild/openharmony-arm64@0.28.1': - resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==} + resolution: {integrity: sha1-3JsUe6yi5sSzyFVxdB70hgpIkJc=} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] '@esbuild/sunos-x64@0.25.12': - resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - - '@esbuild/sunos-x64@0.27.7': - resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + resolution: {integrity: sha1-pu19Z3jWflKMgfsWWyP0kRubE9Y=} engines: {node: '>=18'} cpu: [x64] os: [sunos] '@esbuild/sunos-x64@0.28.1': - resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==} + resolution: {integrity: sha1-zoZtEt8TwV5MmfBzo9Rm9uBkmzo=} engines: {node: '>=18'} cpu: [x64] os: [sunos] '@esbuild/win32-arm64@0.25.12': - resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-arm64@0.27.7': - resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + resolution: {integrity: sha1-msFMN44bZTrxfQjn0840yu9YcyM=} engines: {node: '>=18'} cpu: [arm64] os: [win32] '@esbuild/win32-arm64@0.28.1': - resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==} + resolution: {integrity: sha1-dGjjaS0B1inVlB5dg4F7uA+eObQ=} engines: {node: '>=18'} cpu: [arm64] os: [win32] '@esbuild/win32-ia32@0.25.12': - resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-ia32@0.27.7': - resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + resolution: {integrity: sha1-kYlC3LuzXMFPyjmvuRteaj0Scmc=} engines: {node: '>=18'} cpu: [ia32] os: [win32] '@esbuild/win32-ia32@0.28.1': - resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==} + resolution: {integrity: sha1-pbwAY/sryrbQ7WPyoVN5WLwmnsY=} engines: {node: '>=18'} cpu: [ia32] os: [win32] '@esbuild/win32-x64@0.25.12': - resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - - '@esbuild/win32-x64@0.27.7': - resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + resolution: {integrity: sha1-m9rYF2vngRrRSNH4dyNZBB9GxsU=} engines: {node: '>=18'} cpu: [x64] os: [win32] '@esbuild/win32-x64@0.28.1': - resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==} + resolution: {integrity: sha1-EAZO5E9DR7kMmgK0Rrv4CpFjKxI=} engines: {node: '>=18'} cpu: [x64] os: [win32] - '@eslint-community/eslint-utils@4.9.1': - resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + '@eslint-community/eslint-utils@4.10.1': + resolution: {integrity: sha1-iRG9crLDZApUNgngQAuMTS5+fLY=} 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.2': - resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + resolution: {integrity: sha1-vM32Fbz3tujbgw7AuNIcmiXeWXs=} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint/config-array@0.23.5': - resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==} + resolution: {integrity: sha1-VuhtJDBJGV2KzAwGobPf3D+j3pU=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@eslint/config-helpers@0.6.0': - resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==} + resolution: {integrity: sha1-75o2iB0539Xb6sIrDamX+r+wiwM=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@eslint/core@1.2.1': - resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==} + resolution: {integrity: sha1-wdp80bgvqHh/mLVin7gRhIobY84=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@eslint/object-schema@3.0.5': - resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==} + resolution: {integrity: sha1-iOm/TRHSsZwILnjr586IckpesJE=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@eslint/plugin-kit@0.7.2': - resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==} + resolution: {integrity: sha1-Swli8/LHzovJiz7P40UlwJ0styk=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@esm-bundle/chai@4.3.4-fix.0': - resolution: {integrity: sha512-26SKdM4uvDWlY8/OOOxSB1AqQWeBosCX3wRYUZO7enTAj03CtVxIiCimYVG2WpULcyV51qapK4qTovwkUr5Mlw==} + resolution: {integrity: sha1-MITP9+tG10F0n0fzpI273LrzCpI=} - '@exodus/bytes@1.15.0': - resolution: {integrity: sha512-UY0nlA+feH81UGSHv92sLEPLCeZFjXOuHhrIo0HQydScuQc8s0A7kL/UdgwgDq8g8ilksmuoF35YVTNphV2aBQ==} + '@exodus/bytes@1.15.1': + resolution: {integrity: sha1-sTvEZMoWLBer8IN/s6Ea6reeRdE=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: '@noble/hashes': ^1.8.0 || ^2.0.0 @@ -8109,402 +7766,406 @@ packages: '@noble/hashes': optional: true - '@floating-ui/core@1.7.1': - resolution: {integrity: sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==} + '@floating-ui/core@1.8.0': + resolution: {integrity: sha1-0BwLvqAuSlf2/X1d5vwsXH3KQOE=} - '@floating-ui/dom@1.7.1': - resolution: {integrity: sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ==} + '@floating-ui/dom@1.8.0': + resolution: {integrity: sha1-iiDm+sviRWr9vrbIuWinLfaJz2M=} - '@floating-ui/utils@0.2.9': - resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + '@floating-ui/utils@0.2.12': + resolution: {integrity: sha1-r+/nhZSfFqxM3R5pWTWjIVct1Wo=} '@fluid-tools/version-tools@0.57.0': - resolution: {integrity: sha512-SViGNYQff84ZHlra9WI8VJe70mnPKbFByuBnA7ZFThGUKPg5ZTmdstkOjaYluQXcz2SPCFnJ/FDNTuXNQPHOjQ==} + resolution: {integrity: sha1-mIm4/j/F7OZAvfhI5T7RaETHbFw=} engines: {node: '>=20.15.1'} hasBin: true '@fluidframework/build-tools@0.57.0': - resolution: {integrity: sha512-zFCXXM9Gj+gCNAH9AzrgrA0svAm8kcXzrMGkWB98rDjOoYtBDC4MJg4EsM/fzlwG1Qc7ms+yGUYtMOoKJAqwUA==} + resolution: {integrity: sha1-vtsSABTFzdB/oGQET7jlDV2PN9E=} engines: {node: '>=20.15.1'} hasBin: true - '@fontsource/lato@5.2.5': - resolution: {integrity: sha512-d8aogKOul7a3eYG3UzTG8PB6A0D+6tlkFQCACmKQ7qTwB3XS6QmkSW1L0vYbVE9CfCRq/Zpb5sG3gNA6yJea/A==} + '@fontsource/lato@5.3.0': + resolution: {integrity: sha1-wcjGasoHxM2Smb3+G6Z5aDRl0cM=} - '@github/copilot-darwin-arm64@1.0.69': - resolution: {integrity: sha512-LpaVS2o21BbYTFUlkqdwUJXqE0l1Lp50Cb/EHru3z+5n5x7zNUU5IlPxdMg5gHMVw78clnMn2zSJbe5hYFyDDQ==} + '@github/copilot-darwin-arm64@1.0.73': + resolution: {integrity: sha1-FY7ElXrcdIL20lZpHTqciSadZaA=} cpu: [arm64] os: [darwin] hasBin: true - '@github/copilot-darwin-x64@1.0.69': - resolution: {integrity: sha512-QL5bsmnYqliBVIEE8RY91e6yAr39c2TNvJc/5IzoaKMlQ9MCrD9xakBJwd7LOS0SiOwRE4fqn8pUA4L1+UU5fg==} + '@github/copilot-darwin-x64@1.0.73': + resolution: {integrity: sha1-yZVSyT9kOYWqbilOGoZDTE8y/lY=} cpu: [x64] os: [darwin] hasBin: true - '@github/copilot-linux-arm64@1.0.69': - resolution: {integrity: sha512-SOibp0I6APLoY2KkccbNOISpbhE3lp41s9fM3eANqfdoHQLsgBopfk4ruBP8k/DzjQA6t4MrbV8v6dLixAqv3w==} + '@github/copilot-linux-arm64@1.0.73': + resolution: {integrity: sha1-5xjSIsew6fLjjLVj54cgTdlXS6Q=} cpu: [arm64] os: [linux] libc: [glibc] hasBin: true - '@github/copilot-linux-x64@1.0.69': - resolution: {integrity: sha512-URT7UaR3l1VAAtEpbKjybup2vxHTMSfDTVlu0jinu1O2nWxFOeQ9N4BQgRdcCB7wDu3N8Yz47o3fV1Gob6Z1Yw==} + '@github/copilot-linux-x64@1.0.73': + resolution: {integrity: sha1-XkgnsoZPywS+TBnM9Lb72KFy6iI=} cpu: [x64] os: [linux] libc: [glibc] hasBin: true - '@github/copilot-linuxmusl-arm64@1.0.69': - resolution: {integrity: sha512-Y6DY9RkyWV6l+S0cNz4d+AkUa38goNV5StQH3j8OoVrndK3+RgQeUjG1XpJ//PzXEXi4vQ0cZuc9XzFj/TY7tw==} + '@github/copilot-linuxmusl-arm64@1.0.73': + resolution: {integrity: sha1-Mi42+fiy5mr+gxki5Xr1Mc6H+bk=} cpu: [arm64] os: [linux] libc: [musl] hasBin: true - '@github/copilot-linuxmusl-x64@1.0.69': - resolution: {integrity: sha512-h0aNgUWRu70Tgp4/7Vdqa/4XKJi96wP32R1PoKeXkz1QNxb6i/IQxhoCjjS+xFon9e2kefKdF8pDrDtUJjsiBQ==} + '@github/copilot-linuxmusl-x64@1.0.73': + resolution: {integrity: sha1-Jdib39Gtb15rbLogfcVH4/XtFvk=} cpu: [x64] os: [linux] libc: [musl] hasBin: true '@github/copilot-sdk@1.0.5': - resolution: {integrity: sha512-N6Yk2DcpM9orYXWGBcQs5R0FdiVYrCn7UHQ206cUkfJengKYjgcd3f78BvVB6Dot3j0TvO04FnQ85K9/kbRRag==} + resolution: {integrity: sha1-ov0xdFEekFOqPdVPhFDgWdZ0LsE=} engines: {node: ^20.19.0 || >=22.12.0} - '@github/copilot-win32-arm64@1.0.69': - resolution: {integrity: sha512-7DMoC1uwt01yZf48xq8MgKdnHacXabfsGsOizbgmrlZMfvQQofrF55x1Efu3BKsEKFGRl4fCLjJHJYCz/nWsHg==} + '@github/copilot-win32-arm64@1.0.73': + resolution: {integrity: sha1-uiuSpjutEHAOC79nkqweq9SR2l0=} cpu: [arm64] os: [win32] hasBin: true - '@github/copilot-win32-x64@1.0.69': - resolution: {integrity: sha512-5uD1/k6oVzqRhiS9jLrySGa20HjItqUJsaMe+bV6eYT7zQPF/74xihEjxMm3/bJcATW2SesiYQxyNzTcKm3qRA==} + '@github/copilot-win32-x64@1.0.73': + resolution: {integrity: sha1-L20664GoVb1dZqCW8KOfT35Hoc0=} cpu: [x64] os: [win32] hasBin: true - '@github/copilot@1.0.69': - resolution: {integrity: sha512-sri6PKtRQu7mfok3eV505fmYo6M6PGZpB1vd+QbMEm2rEZaKE2+wJGCAtkpQNKfAWBvvoW/C94IaeFyyulUvqQ==} + '@github/copilot@1.0.73': + resolution: {integrity: sha1-yVyQCNSQEW0YSlE359Fcq/aDFG8=} hasBin: true '@hapi/bourne@3.0.0': - resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==} + resolution: {integrity: sha1-8R/ffdpi/o4zb6fGZC2QQfMDVtc=} - '@hono/node-server@1.19.15': - resolution: {integrity: sha512-Za2ai6TLdKjUvnur+eenO6nuYYipVAEhyCAdaV8IRvmU9kK8crOZUSYvIXn72E4f8fJqyAbpcJuTsYYmZp9Deg==} + '@hono/node-server@1.19.14': + resolution: {integrity: sha1-4w+ES8d+POe+RCqsOx9zrYtY0YE=} engines: {node: '>=18.14.1'} peerDependencies: hono: '>=4.12.8 <5.0.0' '@huggingface/jinja@0.5.9': - resolution: {integrity: sha512-uWTG+l3VJRsl7EXxYizuL3P+cCPoc3cRqbWWRcQN0FhejRfbdq0RNhCmbY/YDtnTcz9icdLYuLDjsnz4d8JMuw==} + resolution: {integrity: sha1-KU90H6CYwrMXN4i0TKZRlYv/o20=} engines: {node: '>=18'} '@huggingface/transformers@3.8.1': - resolution: {integrity: sha512-tsTk4zVjImqdqjS8/AOZg2yNLd1z9S5v+7oUPpXaasDRwEDhB+xnglK1k5cad26lL5/ZIaeREgWWy0bs9y9pPA==} + resolution: {integrity: sha1-MX2gA4ZTIjlnlhcyI+6q8PlyPwo=} '@humanfs/core@0.19.2': - resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} + resolution: {integrity: sha1-qCcsoDsqz0kmcCIrIyC2xCG/3mA=} engines: {node: '>=18.18.0'} '@humanfs/node@0.16.8': - resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==} + resolution: {integrity: sha1-j4AMzME/T4zTEW4tnAqUk52j4+0=} engines: {node: '>=18.18.0'} '@humanfs/types@0.15.0': - resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} + resolution: {integrity: sha1-8qCfYgEjkLK/8/xvskjd7IwJoJA=} engines: {node: '>=18.18.0'} '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + resolution: {integrity: sha1-r1smkaIrRL6EewyoFkHF+2rQFyw=} engines: {node: '>=12.22'} '@humanwhocodes/retry@0.4.3': - resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + resolution: {integrity: sha1-wrnS43TuYsWG062+qHGZsdenpro=} engines: {node: '>=18.18'} '@iconify/types@2.0.0': - resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + resolution: {integrity: sha1-qw6epoHWyKEhTzDNdB/jogzFf1c=} - '@iconify/utils@3.1.3': - resolution: {integrity: sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw==} + '@iconify/utils@3.1.4': + resolution: {integrity: sha1-BNrQFOjtgLG740H10JAFnqDGBXg=} '@img/colour@1.1.0': - resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} + resolution: {integrity: sha1-sMLC+mYa33Xv/WtJZEl82AAQu50=} engines: {node: '>=18'} '@img/sharp-darwin-arm64@0.33.5': - resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + resolution: {integrity: sha1-71taB4YoBfHoFFo3fIum6YgTygg=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] '@img/sharp-darwin-arm64@0.34.5': - resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} + resolution: {integrity: sha1-bgcy3K3hJrZnCveqFwYLkmg16oY=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] '@img/sharp-darwin-x64@0.33.5': - resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + resolution: {integrity: sha1-4D00Uc2eZk+qcpSMxwpAPqQGPWE=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] '@img/sharp-darwin-x64@0.34.5': - resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} + resolution: {integrity: sha1-Gbwd1uum1alig0mLnJ9AEYDunHs=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] '@img/sharp-libvips-darwin-arm64@1.0.4': - resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + resolution: {integrity: sha1-RHxQJnAMAamTx4BOuK9fbphowH8=} cpu: [arm64] os: [darwin] '@img/sharp-libvips-darwin-arm64@1.2.4': - resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} + resolution: {integrity: sha1-KJTAy4fUInbDiJlC6OLbUXpJLEM=} cpu: [arm64] os: [darwin] '@img/sharp-libvips-darwin-x64@1.0.4': - resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + resolution: {integrity: sha1-4EVvj3xiP52/vcdzg8qnIoHYYGI=} cpu: [x64] os: [darwin] '@img/sharp-libvips-darwin-x64@1.2.4': - resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} + resolution: {integrity: sha1-5jaB9FOalK+c0XJG7YiBc0OG+Mw=} cpu: [x64] os: [darwin] '@img/sharp-libvips-linux-arm64@1.0.4': - resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + resolution: {integrity: sha1-l5scZsmpH3/yiTVW7yZ/kOvlFwQ=} cpu: [arm64] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-arm64@1.2.4': - resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} + resolution: {integrity: sha1-sbKIs2hks7zlRa2R+m2tzxpK0xg=} cpu: [arm64] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-arm@1.0.5': - resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + resolution: {integrity: sha1-mfki1OFSFuwgXctokbchv9KIQZc=} cpu: [arm] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-arm@1.2.4': - resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} + resolution: {integrity: sha1-uSYN0evm+eO9vL3KydKsEl81hS0=} cpu: [arm] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-ppc64@1.2.4': - resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + resolution: {integrity: sha1-S4Ps8qgpBXIis4hIx7Ai57TQeqc=} cpu: [ppc64] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-riscv64@1.2.4': - resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + resolution: {integrity: sha1-iAtGeACeWiCArxkjMrALCq+KSN4=} cpu: [riscv64] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-s390x@1.0.4': - resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + resolution: {integrity: sha1-+KXrHzdKCC9ys/ReL7JbgRiopc4=} cpu: [s390x] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-s390x@1.2.4': - resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} + resolution: {integrity: sha1-dPNDyOEPrYIbOPdc7TBIiTncWew=} cpu: [s390x] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-x64@1.0.4': - resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + resolution: {integrity: sha1-1MRhnN0Vd3SQbhV3DuEZkxx+9eA=} cpu: [x64] os: [linux] libc: [glibc] '@img/sharp-libvips-linux-x64@1.2.4': - resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} + resolution: {integrity: sha1-30GD6L2EEPfWG2aFmjXt6rClMc4=} cpu: [x64] os: [linux] libc: [glibc] '@img/sharp-libvips-linuxmusl-arm64@1.0.4': - resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + resolution: {integrity: sha1-Fmd42g9I3Sve0fowM87mtYjw1dU=} cpu: [arm64] os: [linux] libc: [musl] '@img/sharp-libvips-linuxmusl-arm64@1.2.4': - resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} + resolution: {integrity: sha1-yNa0ghHfZxN1QQB+6NG3sfjKjgY=} cpu: [arm64] os: [linux] libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.0.4': - resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + resolution: {integrity: sha1-k3lOTXcgsHf8rT4CmC8vHCRnUf8=} cpu: [x64] os: [linux] libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.2.4': - resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} + resolution: {integrity: sha1-vhHHW+5bCAy+4xoVOod5RI+Rn3U=} cpu: [x64] os: [linux] libc: [musl] '@img/sharp-linux-arm64@0.33.5': - resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + resolution: {integrity: sha1-7bBpfnqCecn8gppg/DVkTEg5uyI=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] libc: [glibc] '@img/sharp-linux-arm64@0.34.5': - resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} + resolution: {integrity: sha1-eqd2TvnAAfFeYQVG1C/OVpEXkMw=} 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==} + resolution: {integrity: sha1-QiwaNS57WDKEJXfcUWArzVtvXv8=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] libc: [glibc] '@img/sharp-linux-arm@0.34.5': - resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} + resolution: {integrity: sha1-X7DDaV3RJSLTnD/3pryBZGF4Cg0=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] libc: [glibc] '@img/sharp-linux-ppc64@0.34.5': - resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + resolution: {integrity: sha1-nCE6gVIKIMr2aXjz1MB0Vv8uCBM=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ppc64] os: [linux] libc: [glibc] '@img/sharp-linux-riscv64@0.34.5': - resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + resolution: {integrity: sha1-zdKBgndOrb4E9iZ1oWqrvMuDP2A=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [riscv64] os: [linux] libc: [glibc] '@img/sharp-linux-s390x@0.33.5': - resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + resolution: {integrity: sha1-9cB3kmtI6X5KBNAE368XWXIFlmc=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] libc: [glibc] '@img/sharp-linux-s390x@0.34.5': - resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} + resolution: {integrity: sha1-k+rGAbnzKbsnkX4OGQmMci1jDfc=} 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==} + resolution: {integrity: sha1-2Abgr9ca5ndcyH8NqPLQOnwiCcs=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] libc: [glibc] '@img/sharp-linux-x64@0.34.5': - resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} + resolution: {integrity: sha1-VavHzXVP/KUAK2wrcZq9/IRoGag=} 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==} + resolution: {integrity: sha1-JSl1uRWJT7MVr13uoXRlHiCNPWs=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] libc: [musl] '@img/sharp-linuxmusl-arm64@0.34.5': - resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} + resolution: {integrity: sha1-1lFe6XG7YvcwAaSCm52GWhG3cIY=} 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==} + resolution: {integrity: sha1-P0YJrF2O+Ox9re6AtWCWGmD9T0g=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] libc: [musl] '@img/sharp-linuxmusl-x64@0.34.5': - resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} + resolution: {integrity: sha1-2Xl4rsfFIS+ZlxTy9bc2RX4S7p8=} 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==} + resolution: {integrity: sha1-b0TzKDBp2TW7XKWBMVNXLz5vYaE=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] '@img/sharp-wasm32@0.34.5': - resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} + resolution: {integrity: sha1-LxWAOqYm+MWd18nQu8dm8atSz6A=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] '@img/sharp-win32-arm64@0.34.5': - resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + resolution: {integrity: sha1-Nwbp46w1/d/ByH+U6Enxt1MHzgo=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [win32] '@img/sharp-win32-ia32@0.33.5': - resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + resolution: {integrity: sha1-GgyDmkDFNR6YhWKMhfLl39ArUqk=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] '@img/sharp-win32-ia32@0.34.5': - resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} + resolution: {integrity: sha1-C3EWZZmwSeAy8IX7kmPgL05HiN4=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] '@img/sharp-win32-x64@0.33.5': - resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + resolution: {integrity: sha1-VvAJYv8MTg65PTSgR9KfqZXj40I=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] '@img/sharp-win32-x64@0.34.5': - resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} + resolution: {integrity: sha1-qB/7AOaSZ80KHWJurtuKhDCysvg=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] - '@inquirer/checkbox@4.2.1': - resolution: {integrity: sha512-bevKGO6kX1eM/N+pdh9leS5L7TBF4ICrzi9a+cbWkrxeAeIcwlo/7OfWGCDERdRCI2/Q6tjltX4bt07ALHDwFw==} + '@inquirer/ansi@1.0.2': + resolution: {integrity: sha1-Z0pMTYGtRgaVyyofxp14zRh/M34=} + engines: {node: '>=18'} + + '@inquirer/checkbox@4.3.2': + resolution: {integrity: sha1-4Ug+ZRnW/++XKBpU0qW6oNgbPzs=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8512,8 +8173,8 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.15': - resolution: {integrity: sha512-SwHMGa8Z47LawQN0rog0sT+6JpiL0B7eW9p1Bb7iCeKDGTI5Ez25TSc2l8kw52VV7hA4sX/C78CGkMrKXfuspA==} + '@inquirer/confirm@5.1.21': + resolution: {integrity: sha1-YQxKzXeX2UiQpuLd4smOseiR3RI=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8521,8 +8182,8 @@ packages: '@types/node': optional: true - '@inquirer/core@10.1.15': - resolution: {integrity: sha512-8xrp836RZvKkpNbVvgWUlxjT4CraKk2q+I3Ksy+seI2zkcE+y6wNs1BVhgcv8VyImFecUhdQrYLdW32pAjwBdA==} + '@inquirer/core@10.3.2': + resolution: {integrity: sha1-U1l5/z/0/h58xPg+IyBQTHQ7fiA=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8530,8 +8191,8 @@ packages: '@types/node': optional: true - '@inquirer/editor@4.2.17': - resolution: {integrity: sha512-r6bQLsyPSzbWrZZ9ufoWL+CztkSatnJ6uSxqd6N+o41EZC51sQeWOzI6s5jLb+xxTWxl7PlUppqm8/sow241gg==} + '@inquirer/editor@4.2.23': + resolution: {integrity: sha1-/gRqO/2ukxJi3pjBBSQ315QyLgs=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8539,8 +8200,8 @@ packages: '@types/node': optional: true - '@inquirer/expand@4.0.17': - resolution: {integrity: sha512-PSqy9VmJx/VbE3CT453yOfNa+PykpKg/0SYP7odez1/NWBGuDXgPhp4AeGYYKjhLn5lUUavVS/JbeYMPdH50Mw==} + '@inquirer/expand@4.0.23': + resolution: {integrity: sha1-o4tfMiJtdXF8Nwvf7XkjE7kr3AU=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8548,8 +8209,8 @@ packages: '@types/node': optional: true - '@inquirer/external-editor@1.0.1': - resolution: {integrity: sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==} + '@inquirer/external-editor@1.0.3': + resolution: {integrity: sha1-wjmIKR7mdikP2rP9MG5kAQptE7g=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8557,12 +8218,12 @@ packages: '@types/node': optional: true - '@inquirer/figures@1.0.13': - resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} + '@inquirer/figures@1.0.15': + resolution: {integrity: sha1-27Se2A3xHfdCaAI7SWrF2azSKzo=} engines: {node: '>=18'} - '@inquirer/input@4.2.1': - resolution: {integrity: sha512-tVC+O1rBl0lJpoUZv4xY+WGWY8V5b0zxU1XDsMsIHYregdh7bN5X5QnIONNBAl0K765FYlAfNHS2Bhn7SSOVow==} + '@inquirer/input@4.3.1': + resolution: {integrity: sha1-d4aDtMTE2V0F1LBcSoVJZLc1ZbQ=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8570,8 +8231,8 @@ packages: '@types/node': optional: true - '@inquirer/number@3.0.17': - resolution: {integrity: sha512-GcvGHkyIgfZgVnnimURdOueMk0CztycfC8NZTiIY9arIAkeOgt6zG57G+7vC59Jns3UX27LMkPKnKWAOF5xEYg==} + '@inquirer/number@3.0.23': + resolution: {integrity: sha1-P97CVA1kIJP9dSaBj9jUvcczUJQ=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8579,8 +8240,8 @@ packages: '@types/node': optional: true - '@inquirer/password@4.0.17': - resolution: {integrity: sha512-DJolTnNeZ00E1+1TW+8614F7rOJJCM4y4BAGQ3Gq6kQIG+OJ4zr3GLjIjVVJCbKsk2jmkmv6v2kQuN/vriHdZA==} + '@inquirer/password@4.0.23': + resolution: {integrity: sha1-ufUYfIyS/Xqp7Oudjy6tDX57AA0=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8588,8 +8249,8 @@ packages: '@types/node': optional: true - '@inquirer/prompts@7.8.3': - resolution: {integrity: sha512-iHYp+JCaCRktM/ESZdpHI51yqsDgXu+dMs4semzETftOaF8u5hwlqnbIsuIR/LrWZl8Pm1/gzteK9I7MAq5HTA==} + '@inquirer/prompts@7.10.1': + resolution: {integrity: sha1-4UNsBITPBMIlSMdOLNI56YnV+Ec=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8597,8 +8258,8 @@ packages: '@types/node': optional: true - '@inquirer/rawlist@4.1.5': - resolution: {integrity: sha512-R5qMyGJqtDdi4Ht521iAkNqyB6p2UPuZUbMifakg1sWtu24gc2Z8CJuw8rP081OckNDMgtDCuLe42Q2Kr3BolA==} + '@inquirer/rawlist@4.1.11': + resolution: {integrity: sha1-MTyMP/zLfUHpkMYGRlcmtKiYoDM=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8606,8 +8267,8 @@ packages: '@types/node': optional: true - '@inquirer/search@3.1.0': - resolution: {integrity: sha512-PMk1+O/WBcYJDq2H7foV0aAZSmDdkzZB9Mw2v/DmONRJopwA/128cS9M/TXWLKKdEQKZnKwBzqu2G4x/2Nqx8Q==} + '@inquirer/search@3.2.2': + resolution: {integrity: sha1-TMb9V03NQ05DmbrcN8dCw/1TSsg=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8615,8 +8276,8 @@ packages: '@types/node': optional: true - '@inquirer/select@4.3.1': - resolution: {integrity: sha512-Gfl/5sqOF5vS/LIrSndFgOh7jgoe0UXEizDqahFRkq5aJBLegZ6WjuMh/hVEJwlFQjyLq1z9fRtvUMkb7jM1LA==} + '@inquirer/select@4.4.2': + resolution: {integrity: sha1-Ksj8qWCRPxjx0bNTI+2PzSfYkyM=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8624,8 +8285,8 @@ packages: '@types/node': optional: true - '@inquirer/type@3.0.8': - resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} + '@inquirer/type@3.0.10': + resolution: {integrity: sha1-Ee1WTseEMqIA6iYBohLSSvgVDVA=} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8634,31 +8295,31 @@ packages: optional: true '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + resolution: {integrity: sha1-s3Znt7wYHBaHgiWbq0JHT79StVA=} engines: {node: '>=12'} + '@isaacs/cliui@9.0.0': + resolution: {integrity: sha1-TQo/EnBYBDvy5+4Wnq8w7ZATAvM=} + engines: {node: '>=18'} + '@isaacs/fs-minipass@4.0.1': - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} + resolution: {integrity: sha1-LVmuOrSzj7QnC/oj0w+OLobH/jI=} engines: {node: '>=18.0.0'} '@istanbuljs/load-nyc-config@1.1.0': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + resolution: {integrity: sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=} engines: {node: '>=8'} '@istanbuljs/schema@0.1.6': - resolution: {integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==} + resolution: {integrity: sha1-jcmvoqwVBssaWPiZQPHBJERsjfM=} engines: {node: '>=8'} '@jest/console@29.7.0': - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + resolution: {integrity: sha1-zUgi29uEUpJlxaK9tSmjycyVD/w=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/core@29.7.0': - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + resolution: {integrity: sha1-tszMI58w/zZglljFpeIpF1fORI8=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -8667,27 +8328,27 @@ packages: optional: true '@jest/environment@29.7.0': - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + resolution: {integrity: sha1-JNYfVP8feG881Ac7S5RBY4O68qc=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/expect-utils@29.7.0': - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + resolution: {integrity: sha1-Aj7+XSaopw8hZ30KGvwPCkTjocY=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/expect@29.7.0': - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + resolution: {integrity: sha1-dqPtsMt1O3Dfv+Iyg1ENPUVDK/I=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/fake-timers@29.7.0': - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + resolution: {integrity: sha1-/ZG/H/+xbX0NJKQmqxpHpJiBpWU=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/globals@29.7.0': - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + resolution: {integrity: sha1-jZKQ+exH/3cmB/qGTKHVou+uHU0=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/reporters@29.7.0': - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + resolution: {integrity: sha1-BLJi7LO4+qg7Cz0yFiOXI5Po9Mc=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -8696,292 +8357,274 @@ packages: optional: true '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + resolution: {integrity: sha1-Qwtc6KTgBEp+OBlmMwWnswkcjgM=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/source-map@29.6.3': - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + resolution: {integrity: sha1-2Quncglc83o0peuUE/G1YqCFVMQ=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/test-result@29.7.0': - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + resolution: {integrity: sha1-jbmoCqGgl7siYlcmhnNLrtmxZXw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/test-sequencer@29.7.0': - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + resolution: {integrity: sha1-bO+XfOHTmDSjrqiHoXJmKKbwcs4=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/transform@29.7.0': - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + resolution: {integrity: sha1-3y3Zw0bH13aLigZjmZRkDGQuKEw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + resolution: {integrity: sha1-ETH4z2NOfoTF53urEvBSr1hfulk=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} '@jridgewell/gen-mapping@0.3.13': - resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + resolution: {integrity: sha1-Y0Khn0Q0dRjJPkOxrGnes8Rlah8=} '@jridgewell/remapping@2.3.5': - resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + resolution: {integrity: sha1-N1xHbRlylHhRuh4Vro8SMEdEWqE=} '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + resolution: {integrity: sha1-eg7mAfYPmaIMfHxf8MgDiMEYm9Y=} engines: {node: '>=6.0.0'} '@jridgewell/source-map@0.3.11': - resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} - - '@jridgewell/source-map@0.3.5': - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + resolution: {integrity: sha1-shg1y9Nttla4V8KtAuvUE8wTqbo=} '@jridgewell/sourcemap-codec@1.5.5': - resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + resolution: {integrity: sha1-aRKwDSxjHA0Vzhp6tXzWV/Ko+Lo=} '@jridgewell/trace-mapping@0.3.31': - resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + resolution: {integrity: sha1-2xXWeByTHzolGj2sOVAcmKYIL9A=} '@jridgewell/trace-mapping@0.3.9': - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + resolution: {integrity: sha1-ZTT9WTOlO6fL86F2FeJzoNEnP/k=} '@jscpd/badge-reporter@4.2.5': - resolution: {integrity: sha512-ktXrjPeRaRyUDktxTroSA2/w5sshXpQplWkUuq/e6XqEpKBSbGEnwZLIaegSijOrMwIcCXPQ9k4feXIz5eVJNA==} + resolution: {integrity: sha1-KT91Th9lYxACSwaS0e/QncM4uB0=} '@jscpd/core@4.2.5': - resolution: {integrity: sha512-Esf2deHxaoNEjePwf2jqP6Urzj+BAOsJVPFLbnnSsV+q7rLNMcn0UEEoKBXIOOt4qMkrkhl9DfwpMyPPOr6GkQ==} + resolution: {integrity: sha1-tYLVFDgmWuIvMJakW6nlWR87qoU=} '@jscpd/finder@4.2.5': - resolution: {integrity: sha512-Rw0dtwp/EeLANbujOubuQeJIuXXXkAlT+f5geZhwkB9TxEYP0hqNrdOJUK/TDBKQjRGrOizEtdNy+S4UlbdzOQ==} + resolution: {integrity: sha1-YVRE6AW6W1U3CdcEQ3JuNkn2yvs=} '@jscpd/html-reporter@4.2.5': - resolution: {integrity: sha512-zMMIKbvi43dMgeNeHXlHQy1ovf+KJrzNlUubaBvCAVatqP23ksW8d3fmsevIQG9mMMTH0D1xOz+SxUn1FREOPg==} + resolution: {integrity: sha1-wQbPLY3BeOxPAy5GQJh5D71JeDE=} '@jscpd/tokenizer@4.2.5': - resolution: {integrity: sha512-UM8Wx/jwahmflqQExlcKMQTYOAy58N/fn7Pv6NYrkD3EZm/FTk7gW97wkXy5aDE1Ts9oBUpT9tLY2rz7ogCHAQ==} + resolution: {integrity: sha1-UUrHyZ2V4wugq7twqcpNdwMnM/E=} '@jsonjoy.com/base64@1.1.2': - resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} + resolution: {integrity: sha1-z46p3LhJuByV8U/AqqFRxrVNJXg=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/base64@17.67.0': - resolution: {integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==} + resolution: {integrity: sha1-fu2jy0ETjXepBAj9LkKyq6EFdtc=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/buffers@1.2.1': - resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==} + resolution: {integrity: sha1-jZnH9n6vck00KN/ZgmxkVSZqXIM=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/buffers@17.67.0': - resolution: {integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==} + resolution: {integrity: sha1-XFjbze6ogkzilr0c/OAGwusWez0=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/codegen@1.0.0': - resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==} + resolution: {integrity: sha1-XCP3lsR2dfFm0juUjNuIkYS5Mgc=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/codegen@17.67.0': - resolution: {integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==} + resolution: {integrity: sha1-NjX9h2nXfhm3XcVXS8l1YBmy5ZE=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-core@4.57.7': - resolution: {integrity: sha512-GDKuYHjP7vAI1kjBo73V+STKr9XIMZknW/xirpRW/EcShX0IKSev/ALafeRfC8Q331nodrXUFu04PugPB0MAhw==} + '@jsonjoy.com/fs-core@4.64.0': + resolution: {integrity: sha1-gjeOztxcvYVY/MCo48ayVNsHD8g=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-fsa@4.57.7': - resolution: {integrity: sha512-1rWsah2nZtRbNeP+c61QcfGfVrJXBmBD0Hm7Akvv4C9MKEasXnbiOS//iH3T3HwUSSBATGrfSp0Xi8nlNhATeQ==} + '@jsonjoy.com/fs-fsa@4.64.0': + resolution: {integrity: sha1-PLCvZKM/B1MA72O+l6+Ju3hJ5r0=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-node-builtins@4.57.7': - resolution: {integrity: sha512-LWqfY1m+uAosjwM1RrKhMkUnP9jcq1RUczHsNO779ovm1E9v8I/pmj04eBAcoBjhC7ltcPbNFGyRJ5JqSJ7Jdg==} + '@jsonjoy.com/fs-node-builtins@4.64.0': + resolution: {integrity: sha1-hDcUdLKgbSCa6fCysG/FcLAPthI=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-node-to-fsa@4.57.7': - resolution: {integrity: sha512-9T0zC9LKcAWXDoTLRdLMoJ0seOvJ5bgDKq1tSBoQAFQpPDstQUeV1Oe7PLypdu7F2D3ddRstmwgeNUEN/VaZ4Q==} + '@jsonjoy.com/fs-node-to-fsa@4.64.0': + resolution: {integrity: sha1-+7MCa++gfWkPFSPAwWbw1Ef6VV4=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-node-utils@4.57.7': - resolution: {integrity: sha512-jjWSDOsfcog2cZnUCwX5AHmlIq6b6wx5Pz/2LAcNjJ62Rajwg89Fy7ubN+lDHew0/1reLDa9Z5urybYadhh37g==} + '@jsonjoy.com/fs-node-utils@4.64.0': + resolution: {integrity: sha1-WAPu5KvWhxZEo16jWtY6a38VmJI=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-node@4.57.7': - resolution: {integrity: sha512-xhnyeyEVTiIOibFvda/5n89nChMLCPKHHM2WQ+GGDf6+U/IrQBW3Qx6x+Uq1bkDbxBkybLOdIGoBtVBrE8Nngg==} + '@jsonjoy.com/fs-node@4.64.0': + resolution: {integrity: sha1-6MnENGs4zBFsoOn7NLEEGbz8GRY=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-print@4.57.7': - resolution: {integrity: sha512-mFM4P4Gjq0QQHkLnXzPYPEMFrAoe6a5Myedgb6+CmL+nGd3MKvTxYPuD7N1dLIH9RBy1fLdzxd80qvuK8xrx3Q==} + '@jsonjoy.com/fs-print@4.64.0': + resolution: {integrity: sha1-N1CF2QtQyFdUZnZx9Y0Tpj2kMw0=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - '@jsonjoy.com/fs-snapshot@4.57.7': - resolution: {integrity: sha512-1GS3+plfm2giB3PqokiqyydyqYTPLcCQIKSkp0TdMNRh3KVk7rqRM6U785FLlVRG7XLmkc0KWr215OY+22K3QA==} + '@jsonjoy.com/fs-snapshot@4.64.0': + resolution: {integrity: sha1-madq+GZFlYdd71sg7RzxWa3F8Jg=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/json-pack@1.21.0': - resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==} + resolution: {integrity: sha1-k/jdV/46OpITKzPR6xgtzZ52Kfo=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/json-pack@17.67.0': - resolution: {integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==} + resolution: {integrity: sha1-jdj/Zd2ZnF1NJt9GxjkVx73sCTo=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/json-pointer@1.0.2': - resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==} + resolution: {integrity: sha1-BJy1MKwk6Ey6CFkMXja0McSENAg=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/json-pointer@17.67.0': - resolution: {integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==} + resolution: {integrity: sha1-dEOVc9wEbgyaOlUvuUs5G8dTE7g=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/util@1.9.0': - resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==} + resolution: {integrity: sha1-fulVhq7Qp2a3Rs2Ng2PjNsPEfEY=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@jsonjoy.com/util@17.67.0': - resolution: {integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==} + resolution: {integrity: sha1-fEKI/DgIIz5Vx2EBAee7RZDN3T8=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' '@leichtgewicht/ip-codec@2.0.5': - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - - '@lezer/common@1.2.3': - resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==} + resolution: {integrity: sha1-T8VsFcWAua233DwzOhNOVAtEv7E=} '@lezer/common@1.5.2': - resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==} + resolution: {integrity: sha1-1oQNsTd54/G0LnDJqXxAhtEvriI=} - '@lezer/cpp@1.1.3': - resolution: {integrity: sha512-ykYvuFQKGsRi6IcE+/hCSGUhb/I4WPjd3ELhEblm2wS2cOznDFzO+ubK2c+ioysOnlZ3EduV+MVQFCPzAIoY3w==} + '@lezer/cpp@1.1.6': + resolution: {integrity: sha1-RAjGbwzk+0d1mjuD2/3XgKSTFao=} - '@lezer/css@1.2.1': - resolution: {integrity: sha512-2F5tOqzKEKbCUNraIXc0f6HKeyKlmMWJnBB0i4XW6dJgssrZO/YlZ2pY5xgyqDleqqhiNJ3dQhbrV2aClZQMvg==} + '@lezer/css@1.3.4': + resolution: {integrity: sha1-ugWgPVyhFK1SOqPA6Tr/jR4m7XA=} '@lezer/go@1.0.1': - resolution: {integrity: sha512-xToRsYxwsgJNHTgNdStpcvmbVuKxTapV0dM0wey1geMMRc9aggoVyKgzYp41D2/vVOx+Ii4hmE206kvxIXBVXQ==} - - '@lezer/highlight@1.2.1': - resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==} + resolution: {integrity: sha1-MAS1T15Mlxnty6mGU/OAuvjA0aI=} '@lezer/highlight@1.2.3': - resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==} + resolution: {integrity: sha1-og8yS3EUii6pum/0Lli7+uxwKFc=} - '@lezer/html@1.3.10': - resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==} + '@lezer/html@1.3.13': + resolution: {integrity: sha1-ahMFrjvSycAfh3+KjcHhXsZS0Bw=} '@lezer/java@1.1.3': - resolution: {integrity: sha512-yHquUfujwg6Yu4Fd1GNHCvidIvJwi/1Xu2DaKl/pfWIA2c1oXkVvawH3NyXhCaFx4OdlYBVX5wvz2f7Aoa/4Xw==} + resolution: {integrity: sha1-nv1qKbQULQfyEQdqb7XoBhyF4Uc=} - '@lezer/javascript@1.5.1': - resolution: {integrity: sha512-ATOImjeVJuvgm3JQ/bpo2Tmv55HSScE2MTPnKRMRIPx2cLhHGyX2VnqpHhtIV1tVzIjZDbcWQm+NCTF40ggZVw==} + '@lezer/javascript@1.5.4': + resolution: {integrity: sha1-EXRpVflX0zwJM/F9dZTbVKi0vuo=} '@lezer/json@1.0.3': - resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==} + resolution: {integrity: sha1-53OgEq0AiPvwfOSc+6h1zJ5bwF8=} '@lezer/lr@1.4.10': - resolution: {integrity: sha512-rnCpTIBafOx4mRp43xOxDJbFipJm/c0cia/V5TiGlhmMa+wsSdoGmUN3w5Bqrks/09Q/D4tNAmWaT8p6NRi77A==} - - '@lezer/lr@1.4.2': - resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==} + resolution: {integrity: sha1-s6zDblrQSbdN23cZWU5+dNkWH/U=} - '@lezer/markdown@1.4.3': - resolution: {integrity: sha512-kfw+2uMrQ/wy/+ONfrH83OkdFNM0ye5Xq96cLlaCy7h5UT9FO54DU4oRoIc0CSBh5NWmWuiIJA7NGLMJbQ+Oxg==} + '@lezer/markdown@1.7.2': + resolution: {integrity: sha1-3+AkmBPcj6pgtGWaTKK42m3K91M=} - '@lezer/php@1.0.2': - resolution: {integrity: sha512-GN7BnqtGRpFyeoKSEqxvGvhJQiI4zkgmYnDk/JIyc7H7Ifc1tkPnUn/R2R8meH3h/aBf5rzjvU8ZQoyiNDtDrA==} + '@lezer/php@1.0.5': + resolution: {integrity: sha1-Tmt52ql7mPC6MA9ZLmkWZhM55mE=} - '@lezer/python@1.1.18': - resolution: {integrity: sha512-31FiUrU7z9+d/ElGQLJFXl+dKOdx0jALlP3KEOsGTex8mvj+SoE1FgItcHWK/axkxCHGUSpqIHt6JAWfWu9Rhg==} + '@lezer/python@1.1.19': + resolution: {integrity: sha1-eEPUT/J8mAQ5qC6HwYsoFy6FxHg=} '@lezer/rust@1.0.2': - resolution: {integrity: sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==} + resolution: {integrity: sha1-zJp1YF1nGCoOeZrECxllph3MbvA=} '@lezer/sass@1.1.0': - resolution: {integrity: sha512-3mMGdCTUZ/84ArHOuXWQr37pnf7f+Nw9ycPUeKX+wu19b7pSMcZGLbaXwvD2APMBDOGxPmpK/O6S1v1EvLoqgQ==} + resolution: {integrity: sha1-yC5mCqWzkwPR3nY5I675ef7x06Q=} '@lezer/xml@1.0.6': - resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==} + resolution: {integrity: sha1-kIwgOSMoj4VOuOL02bBsQ36GELk=} - '@lezer/yaml@1.0.3': - resolution: {integrity: sha512-GuBLekbw9jDBDhGur82nuwkxKQ+a3W5H0GfaAthDXcAu+XdpS43VlnxA9E9hllkpSP5ellRDKjLLj7Lu9Wr6xA==} + '@lezer/yaml@1.0.4': + resolution: {integrity: sha1-ZqYiGI8ZhKcdNFBnWbWAdpkENYk=} - '@lit-labs/ssr-dom-shim@1.5.1': - resolution: {integrity: sha512-Aou5UdlSpr5whQe8AA/bZG0jMj96CoJIWbGfZ91qieWu5AWUMKw8VR/pAkQkJYvBNhmCcWnZlyyk5oze8JIqYA==} + '@lit-labs/ssr-dom-shim@1.6.0': + resolution: {integrity: sha1-aT4Sm4CXQf0j6Y/LV+Qf09CC2xo=} '@lit/reactive-element@2.1.2': - resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==} + resolution: {integrity: sha1-TGr5BCYDyY5hupCylGB5BNUbYcs=} '@malept/cross-spawn-promise@2.0.0': - resolution: {integrity: sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==} + resolution: {integrity: sha1-0Hct4apoCgv7m6LzK0yCjHhXy50=} engines: {node: '>= 12.13.0'} '@malept/flatpak-bundler@0.4.0': - resolution: {integrity: sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==} + resolution: {integrity: sha1-6KMsMKldIMKxu2NcxYCYGgY4mFg=} engines: {node: '>= 10.0.0'} '@manypkg/find-root@2.2.3': - resolution: {integrity: sha512-jtEZKczWTueJYHjGpxU3KJQ08Gsrf4r6Q2GjmPp/RGk5leeYAA1eyDADSAF+KVCsQ6EwZd/FMcOFCoMhtqdCtQ==} + resolution: {integrity: sha1-Ppvl3/SgCMIoZJo04q9lKI/xPCY=} engines: {node: '>=14.18.0'} '@manypkg/get-packages@2.2.2': - resolution: {integrity: sha512-3+Zd8kLZmsyJFmWTBtY0MAuCErI7yKB2cjMBlujvSVKZ2R/BMXi0kjCXu2dtRlSq/ML86t1FkumT0yreQ3n8OQ==} + resolution: {integrity: sha1-brFvwcz4yQOv9c3k5TXHV06WWw0=} engines: {node: '>=14.18.0'} '@manypkg/tools@1.1.2': - resolution: {integrity: sha512-3lBouSuF7CqlseLB+FKES0K4FQ02JrbEoRtJhxnsyB1s5v4AP03gsoohN8jp7DcOImhaR9scYdztq3/sLfk/qQ==} + resolution: {integrity: sha1-FdCrtmqgTO6D5/51g51W3f3VGW8=} engines: {node: '>=14.18.0'} - '@marijn/find-cluster-break@1.0.2': - resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==} - '@marijn/find-cluster-break@1.0.3': - resolution: {integrity: sha512-FY+MKLBoTsLNJF/eLWaOsXGdz6uh3Iu1axjPf6TUq92IYumcTcXWHoS747JARLkcdlJ/Waiaxc5wQfFO8jC6NA==} + resolution: {integrity: sha1-vb6QfgDBfITjP8UbFRnZqiEefo4=} - '@mermaid-js/parser@1.1.1': - resolution: {integrity: sha512-VuHdsYMK1bT6X2JbcAaWAhugTRvRBRyuZgd+c22swUeI9g/ntaxF7CY7dYarhZovofCbUNO0G7JesfmNtjYOCw==} + '@mermaid-js/parser@1.2.0': + resolution: {integrity: sha1-Jm1yjFTS1ANNJw+LMdeQ4mKWpfo=} '@microsoft/microsoft-graph-client@3.0.7': - resolution: {integrity: sha512-/AazAV/F+HK4LIywF9C+NYHcJo038zEnWkteilcxC1FM/uK/4NVGDKGrxx7nNq1ybspAroRKT4I1FHfxQzxkUw==} + resolution: {integrity: sha1-U1UH3y20C9ftJKZw3GjIfGKBd6Q=} engines: {node: '>=12.0.0'} peerDependencies: '@azure/identity': '*' @@ -8998,88 +8641,94 @@ packages: stream-browserify: optional: true - '@microsoft/microsoft-graph-types@2.40.0': - resolution: {integrity: sha512-1fcPVrB/NkbNcGNfCy+Cgnvwxt6/sbIEEFgZHFBJ670zYLegENYJF8qMo7x3LqBjWX2/Eneq5BVVRCLTmlJN+g==} + '@microsoft/microsoft-graph-types@2.43.1': + resolution: {integrity: sha1-T6F4qdGxNypctkgBOsnu1LEYRyU=} - '@milkdown/components@7.13.1': - resolution: {integrity: sha512-qWQFg0KvPeGmlnsW9Y7w97I5HBwsaYqGaQMEyECkVZNL/CTT7uEdm9ofeLAeL9sNWya9WQYFplr0kJH6laiNKw==} + '@milkdown/components@7.21.3': + resolution: {integrity: sha1-ybAyogj766LtcYwP4s2NtRV5Sbg=} peerDependencies: '@codemirror/language': ^6 '@codemirror/state': ^6 '@codemirror/view': ^6 - '@milkdown/core@7.13.1': - resolution: {integrity: sha512-cSFH/Ob1kW9I7Q8vDw1Xd6JpIQNB7EZx+PMtEeEQbX/2mUYoDWrfzUeeKJPhtdyr77iN3B609Ok9Xn3bzZnoOg==} + '@milkdown/core@7.21.3': + resolution: {integrity: sha1-vXD7hJMjREf+mNz/22gipVlCABM=} - '@milkdown/crepe@7.13.1': - resolution: {integrity: sha512-jMNwQ4BJVpI0VQ6/2rO6U1l8bC69VfiUUghqHnjt8+f81Dz+VxeROLfkmSBvqzq5rdknDidPDzr4OUFGoC4a1g==} + '@milkdown/crepe@7.21.3': + resolution: {integrity: sha1-HXx/gDAr40dthUgeObKUa8Oc4sY=} - '@milkdown/ctx@7.13.1': - resolution: {integrity: sha512-S3u0KBz/6K4er5RaRJhZIof1pGK52KwvdPKL//l2++mcC92NG3FAsntllgsm3+AZLpYrk2DjlSqaYBCFvQ5O4g==} + '@milkdown/ctx@7.21.3': + resolution: {integrity: sha1-upJhoLoRX2tsboWSKat78Mjf0uM=} - '@milkdown/exception@7.13.1': - resolution: {integrity: sha512-3nfGRwXZcLC3dQyGiIJDNhgfpaU134dKX+qJuoCsFWsSib53ogkBdCVXma8d7REXtoMCLbcQWzUbfl+0Mn3TGA==} + '@milkdown/exception@7.21.3': + resolution: {integrity: sha1-e4yiBru3C1ZUD3UQo6ZD60Tl+J8=} - '@milkdown/kit@7.13.1': - resolution: {integrity: sha512-80kF0Ay6R3kBbysBA41VOYoqXPrz8o/LrxmB6omiJZ+93FrNdMoXx5GfNT4lKsOW1W5vtPvdqffZzQxW0wwzGA==} + '@milkdown/kit@7.21.3': + resolution: {integrity: sha1-xtoZz/Q1Q0Y12D8GWnv4m/QEUxk=} - '@milkdown/plugin-block@7.13.1': - resolution: {integrity: sha512-HG/RJ9C/EHvky0/rio9oSlud89u4ggj9CvWAbiBjyMMeO0V0rDGGsVF+1sTtB6Gvtm7ryk/KDUUkM5a3zm8s4w==} + '@milkdown/plugin-block@7.21.3': + resolution: {integrity: sha1-bZvcwyVD+ZuURfrLBkRZ56HGjn8=} - '@milkdown/plugin-clipboard@7.13.1': - resolution: {integrity: sha512-/WoPv4BDNufO6uavnwqMSYAQTgFvy2Vw5e8n1+Qba/kpjJtbXiH/9zrPA1w42SivxRkOSI0lfSm6OXQnQS5Z8Q==} + '@milkdown/plugin-clipboard@7.21.3': + resolution: {integrity: sha1-cLrae0rLyzFESLMzB4ag9KueRM0=} - '@milkdown/plugin-collab@7.13.1': - resolution: {integrity: sha512-DPer8v2il8c/kxOOmbS2+suZNO4LTJMOpX0sNubz7MdNdVt+8+6GWIjpjoBAkqrDxEbNwjJ69mjBUQk/fiGYiQ==} + '@milkdown/plugin-collab@7.21.3': + resolution: {integrity: sha1-+TCGNheN0+891grXXrppWIHbn3o=} peerDependencies: y-prosemirror: '*' y-protocols: '*' yjs: '*' - '@milkdown/plugin-cursor@7.13.1': - resolution: {integrity: sha512-ETJW+TLrrJCSf9+Hq4zwjqrW2z/RJBFeNyNoqen8PIpfmWJCM4EqyHLWw2qscJlx2fBDHnIAHCVnbu6Tmk1atg==} + '@milkdown/plugin-cursor@7.21.3': + resolution: {integrity: sha1-gizHkBbX/tENaiBDuTENo09ErVw=} + + '@milkdown/plugin-diff@7.21.3': + resolution: {integrity: sha1-uA4+SBEKtaHegYb1LC1mQUbITbI=} - '@milkdown/plugin-history@7.13.1': - resolution: {integrity: sha512-C2n3kKWWdEcIlk/HiV9WMK5f9PdxR2yzf3Sg3ibexhhAi4fp0bf0BJNupQVuFqYQPBmXL6rW4lFs9zVjHn/yEg==} + '@milkdown/plugin-history@7.21.3': + resolution: {integrity: sha1-dfCvSyvHBEoZ4LRDwm1sXC9leNg=} - '@milkdown/plugin-indent@7.13.1': - resolution: {integrity: sha512-X6IKT/KLNWKww+tinNjBye2ClfaDmWyxu9dL6bz37l5HgBVZ9mL9HS97YIkxh/5YiivYwl98JmWba2ahKdXB5A==} + '@milkdown/plugin-indent@7.21.3': + resolution: {integrity: sha1-J9n8T6KsiNOSxJ0MU9mWL/Ylzps=} - '@milkdown/plugin-listener@7.13.1': - resolution: {integrity: sha512-CCsFtRXXnIwipVCjyBS1c/lthRq+Uiqw/x9GacvGSixNdwGfYn4lD+ujax9WwmNviANHakNZdL3y5aOVPZZ84A==} + '@milkdown/plugin-listener@7.21.3': + resolution: {integrity: sha1-DCgSal9mizrXixl2YipkgBPCP2Y=} - '@milkdown/plugin-slash@7.13.1': - resolution: {integrity: sha512-Up91kxFyyPsfjfQ56sNfphaYvxsPdFaEOY6Q37FJYCwmdjIZ9/12FLDQJOr0Bh58Z6R1DHE7GgBQ4c/voQc5Sw==} + '@milkdown/plugin-slash@7.21.3': + resolution: {integrity: sha1-gE0D00+nHjEsSuf8Ewmk2sxMOYk=} - '@milkdown/plugin-tooltip@7.13.1': - resolution: {integrity: sha512-XvbimMl9EaRsmCpdNnDomeqKqkSuSZMYrn1XAxouhb4Q2DMOEHC4J3prnnndrekbZD2ndlQPONb3asndhKpTXg==} + '@milkdown/plugin-streaming@7.21.3': + resolution: {integrity: sha1-uG9BbNQv2Ap5xBCIIY3OrfdeSCc=} - '@milkdown/plugin-trailing@7.13.1': - resolution: {integrity: sha512-Aon8tN4qQl76aX7C6jxi1NqJvjs/q8vAK04iO8qmJ+SzY0d7EaPcxZicTJitXTDI1W7VKSvGMAw1YP2qrH8now==} + '@milkdown/plugin-tooltip@7.21.3': + resolution: {integrity: sha1-aRIrAa3hthndobW6MAK/x5l4t4M=} - '@milkdown/plugin-upload@7.13.1': - resolution: {integrity: sha512-jKyoDNroEOdpSWrrhKrbAY41y9k0jbyLReeNRESSbKF61Rf04v9dfRQBNu6GdLpHqL52AeI9TnQh7rcNFtrORA==} + '@milkdown/plugin-trailing@7.21.3': + resolution: {integrity: sha1-HaY1TH1oNLlXiBHFLAZppPw43hE=} - '@milkdown/preset-commonmark@7.13.1': - resolution: {integrity: sha512-KK0MOpoCDw1hEGXZiZ26sLPLIJnlzchdGqgxWD5KPGCa9Yj9aGOUqHDGVoH6aIhPBFOYV8nisZkHUGCSufVYnQ==} + '@milkdown/plugin-upload@7.21.3': + resolution: {integrity: sha1-WQt4EFdqI0wd7RWLExcJiEl2YBo=} - '@milkdown/preset-gfm@7.13.1': - resolution: {integrity: sha512-y9MPhxyAAu6REJiGT+n/yXmeY7agg0GqbLNb/49bXuY6KAnLiBJNGd8s/rAHKQ08siVHxuUjMI6BSIDFCSShDw==} + '@milkdown/preset-commonmark@7.21.3': + resolution: {integrity: sha1-4K+F+vP/L6ld+hrjKfiG2LNhjn4=} - '@milkdown/prose@7.13.1': - resolution: {integrity: sha512-M3jiySoOW1jDkaT835KU+aWzHQZqmZ/o0FVm5Dkk8bZVI0v+wVEcE4H+1H8SskiP5s8gHgAMDUDrIkLifSeKvQ==} + '@milkdown/preset-gfm@7.21.3': + resolution: {integrity: sha1-ilH3Znfx5uoracgtL28cgFH27dI=} - '@milkdown/theme-nord@7.13.1': - resolution: {integrity: sha512-P41MvWh6j0jnJlBxo03Xyzmf4YCiSlPoY5fGvU95jTOigHRTMuF5pdp2Ha2Y3RoVKnjKB+cdAVpwtyfMpoVpnw==} + '@milkdown/prose@7.21.3': + resolution: {integrity: sha1-DsRNNjZWsI/p+6wmoQWniDXbHg0=} - '@milkdown/transformer@7.13.1': - resolution: {integrity: sha512-h9IczhBuDbUrygzi8oCTb607C9kufS8nbLcQQ/pFvHMIjn92uejo84mAc4IWFmmxoXzVRj0/cDFt1KJTTkga+A==} + '@milkdown/theme-nord@7.21.3': + resolution: {integrity: sha1-r7V5Ms0L9qfAyjCalGOIf4b803A=} - '@milkdown/utils@7.13.1': - resolution: {integrity: sha512-4ct/ovL0h/0kuLFligLdZgt3qtWbNZEHnIKO321qvkaGLx1HmzbMpiL6V8tq7iDqNKeoqAzFb/2vnUeYGv1Ndw==} + '@milkdown/transformer@7.21.3': + resolution: {integrity: sha1-I9KIFn33ACc5KTJZBNPIb9/yQRo=} + + '@milkdown/utils@7.21.3': + resolution: {integrity: sha1-8VkT0KCw9AVs2Yoj/6IN/MI5iyM=} '@modelcontextprotocol/sdk@1.26.0': - resolution: {integrity: sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==} + resolution: {integrity: sha1-WzXXMGISXxJsxwsL6Dy6tTvN3nQ=} engines: {node: '>=18'} peerDependencies: '@cfworker/json-schema': ^4.1.1 @@ -9089,534 +8738,531 @@ packages: optional: true '@modelcontextprotocol/server-filesystem@2026.1.14': - resolution: {integrity: sha512-bGAfu3fWRVeF10NxvPhFBDlRen6ExSx6YkKJzoVgQMNrbdVVV4okfGGQ3KBRu9ygXYfw5/N9ermHAJXA0uys+g==} + resolution: {integrity: sha1-zHun4ONKr9FTBI6KITxwMLlT1oM=} hasBin: true - '@mongodb-js/saslprep@1.2.2': - resolution: {integrity: sha512-EB0O3SCSNRUFk66iRCpI+cXzIjdswfCs7F6nOC3RAGJ7xr5YhaicvsRwJ9eyzYvYRlCSDUO/c7g4yNulxKC1WA==} + '@mongodb-js/saslprep@1.4.12': + resolution: {integrity: sha1-kZ7VfyS7CpCHlj/G6U7iTDf+CKk=} '@mozilla/readability@0.6.0': - resolution: {integrity: sha512-juG5VWh4qAivzTAeMzvY9xs9HY5rAcr2E4I7tiSSCokRFi7XIZCAu92ZkSTsIj1OPceCifL3cpfteP3pDT9/QQ==} + resolution: {integrity: sha1-E0484/8WdnFuVQ3guN6Ve8xZIIs=} engines: {node: '>=14.0.0'} - '@napi-rs/canvas-android-arm64@0.1.72': - resolution: {integrity: sha512-OW99TDJEdfOhpJWQ7SXFsQi1BXd6UFuWM8AoQvJ0SQMHWY/iwuopmb1UqGV6Df9aM/SWxvCWBN/onjeCM8KVKQ==} + '@napi-rs/canvas-android-arm64@0.1.100': + resolution: {integrity: sha1-t8aLkdV3AqX8Uj+oLecup0Hmdm4=} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@napi-rs/canvas-darwin-arm64@0.1.72': - resolution: {integrity: sha512-gB8Pn/4GdS+B6P4HYuNqPGx8iQJ16Go1D6e5hIxfUbA/efupVGZ7e3OMGWGCUgF0vgbEPEF31sPzhcad4mdR5g==} + '@napi-rs/canvas-darwin-arm64@0.1.100': + resolution: {integrity: sha1-0WhvpsppmwdkDvpfRUJdsKTnJeI=} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@napi-rs/canvas-darwin-x64@0.1.72': - resolution: {integrity: sha512-x1zKtWVSnf+yLETHdSDAFJ1w6bctS/V2NP0wskTTBKkC+c/AmI2Dl+ZMIW11gF6rilBibrIzBeXJKPzV0GMWGA==} + '@napi-rs/canvas-darwin-x64@0.1.100': + resolution: {integrity: sha1-kpeP1+yiH38bWb0TujznwOfIeaE=} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@napi-rs/canvas-linux-arm-gnueabihf@0.1.72': - resolution: {integrity: sha512-Ef6HMF+TBS+lqBNpcUj2D17ODJrbgevXaVPtr2nQFCao5IvoEhVMdmVwWk5YiI+GcgbAkg5AF3LiU47RoSY5yg==} + '@napi-rs/canvas-linux-arm-gnueabihf@0.1.100': + resolution: {integrity: sha1-lfmJLh1agnSHHY7kBjdOnvaSvZ8=} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@napi-rs/canvas-linux-arm64-gnu@0.1.72': - resolution: {integrity: sha512-i1tWu+Li1Z6G4t+ckT38JwuB/cAAREV6H8VD3dip2yTYU+qnLz6kG4i+whm+SEQb1e4vk3xA1lKnjYx3jlOy8g==} + '@napi-rs/canvas-linux-arm64-gnu@0.1.100': + resolution: {integrity: sha1-ayt8S7AWuPUwgRWsmukJ30lnqUs=} engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [glibc] - '@napi-rs/canvas-linux-arm64-musl@0.1.72': - resolution: {integrity: sha512-Mu+2hHZAT9SdrjiRtCxMD/Unac8vqVxF/p+Tvjb5sN1NZkLGu+l7WIfrug8aeX150OwrYgAvsR4mhrm0BZvLxg==} + '@napi-rs/canvas-linux-arm64-musl@0.1.100': + resolution: {integrity: sha1-SM9jQlQ+T4fPH46bGqoZrYW8wXg=} engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [musl] - '@napi-rs/canvas-linux-riscv64-gnu@0.1.72': - resolution: {integrity: sha512-xBPG/ImL58I4Ep6VM+sCrpwl8rE/8e7Dt9U7zzggNvYHrWD13vIF3q5L2/N9VxdBMh1pee6dBC/VcaXLYccZNQ==} + '@napi-rs/canvas-linux-riscv64-gnu@0.1.100': + resolution: {integrity: sha1-cbARAHsDdVyDSpYXNTAsWDewQdo=} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] libc: [glibc] - '@napi-rs/canvas-linux-x64-gnu@0.1.72': - resolution: {integrity: sha512-jkC8L+QovHpzQrw+Jm1IUqxgLV5QB1hJ1cR8iYzxNRd0TOF7YfxLaIGxvd/ReRi9r48JT6PL7z2IGT7TqK8T4w==} + '@napi-rs/canvas-linux-x64-gnu@0.1.100': + resolution: {integrity: sha1-P0edO4uMRljl3sG5Q619Lu/SgR8=} engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [glibc] - '@napi-rs/canvas-linux-x64-musl@0.1.72': - resolution: {integrity: sha512-PwPdPmHgJYnTMUr8Gff80eRVdpGjwrxueIqw+7v4aeFxbQjmQ+paa2xaGedFtkvdS2Dn5z8a0mVlrlbSfec+1Q==} + '@napi-rs/canvas-linux-x64-musl@0.1.100': + resolution: {integrity: sha1-G+rKIsH+l3CanChxFcs8kBlN3sY=} engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [musl] - '@napi-rs/canvas-win32-x64-msvc@0.1.72': - resolution: {integrity: sha512-hZhXJZZ/2ZjkAoOtyGUs3Mx6jA4o9ESbc5bk+NKYO6thZRvRNA7rqvT9WF9pZK0xcRK5EyWRymv8fCzqmSVEzg==} + '@napi-rs/canvas-win32-arm64-msvc@0.1.100': + resolution: {integrity: sha1-ihcotFXdF5ZflcC/32dTvoxYUcA=} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@napi-rs/canvas-win32-x64-msvc@0.1.100': + resolution: {integrity: sha1-HlKIP4eE/9vlLcLUewWgiGqm6c8=} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@napi-rs/canvas@0.1.72': - resolution: {integrity: sha512-ypTJ/DXzsJbTU3o7qXFlWmZGgEbh42JWQl7v5/i+DJz/HURELcSnq9ler9e1ukqma70JzmCQcIseiE/Xs6sczw==} + '@napi-rs/canvas@0.1.100': + resolution: {integrity: sha1-LImhXCimLhNyviP9R0dirhqLFrc=} engines: {node: '>= 10'} '@napi-rs/wasm-runtime@1.1.6': - resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==} + resolution: {integrity: sha1-7TOAbQ+b6Y3HbQw9T9hy/acBtdU=} peerDependencies: '@emnapi/core': ^1.7.1 '@emnapi/runtime': ^1.7.1 '@noble/hashes@1.4.0': - resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + resolution: {integrity: sha1-RYFKoynzDk/guklCb0nfzN0GZCY=} engines: {node: '>= 16'} '@nodable/entities@3.0.0': - resolution: {integrity: sha512-8L9xFeTYKhm49xfIypoe2W5wV1m/3Z58kT+7kR9A8OyFxcPduI4VmxaUMQyKYrRjUoLLSXv6EKKID5Tvj9cUVw==} + resolution: {integrity: sha1-aUcDvIZNMOrtVcLj3vANvWFJNnA=} '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=} engines: {node: '>= 8'} '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=} engines: {node: '>= 8'} '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=} engines: {node: '>= 8'} '@nornagon/put@0.0.8': - resolution: {integrity: sha512-ugvXJjwF5ldtUpa7D95kruNJ41yFQDEKyF5CW4TgKJnh+W/zmlBzXXeKTyqIgwMFrkePN2JqOBqcF0M0oOunow==} + resolution: {integrity: sha1-nUl+xGyTZKzD+LWao8+O5BNK4zc=} engines: {node: '>=0.3.0'} - '@oclif/core@4.11.14': - resolution: {integrity: sha512-cZ5Ktd+rT0PO+o7KBH4vRFTgg+xMLf8F41WK39p8MkXEViZA/Qqe+4lzZT6102zgUxMORET1HtF9t5w8CB3tnQ==} - engines: {node: '>=18.0.0'} - - '@oclif/core@4.5.2': - resolution: {integrity: sha512-eQcKyrEcDYeZJKu4vUWiu0ii/1Gfev6GF4FsLSgNez5/+aQyAUCjg3ZWlurf491WiYZTXCWyKAxyPWk8DKv2MA==} - engines: {node: '>=18.0.0'} - - '@oclif/core@4.8.0': - resolution: {integrity: sha512-jteNUQKgJHLHFbbz806aGZqf+RJJ7t4gwF4MYa8fCwCxQ8/klJNWc0MvaJiBebk7Mc+J39mdlsB4XraaCKznFw==} - engines: {node: '>=18.0.0'} + '@ocavue/utils@1.7.0': + resolution: {integrity: sha1-0Daa8NFH9xUfFCGF7S64BX2pRNk=} - '@oclif/plugin-autocomplete@3.2.24': - resolution: {integrity: sha512-KGz7ypHhahRJWy0sB+mNvLLJiMWEt4pgjCFIpcBhkZhc090H4e4QhGR6Xp2430rQgStPcnUa0BYcVZJPojAsDQ==} + '@oclif/core@4.13.0': + resolution: {integrity: sha1-/FDUD1Z+SG5lNfDQ6MbzczqMDjk=} engines: {node: '>=18.0.0'} - '@oclif/plugin-commands@4.1.21': - resolution: {integrity: sha512-7pmqqYzpgLX/YNt1v6NIE4InNCtZl7prUcUGfMkhyDHO8ss1O0xcXhNOiVK7ytXZKYWuPJMd+uA16ytThqXtOQ==} + '@oclif/plugin-autocomplete@3.2.53': + resolution: {integrity: sha1-7QdUpKq6q/jEum56iF9GTbe9+9M=} engines: {node: '>=18.0.0'} - '@oclif/plugin-help@6.2.26': - resolution: {integrity: sha512-5KdldxEizbV3RsHOddN4oMxrX/HL6z79S94tbxEHVZ/dJKDWzfyCpgC9axNYqwmBF2pFZkozl/l7t3hCGOdalw==} + '@oclif/plugin-commands@4.1.60': + resolution: {integrity: sha1-uypjigpO1jrdbjpPUxXu0l0QDqo=} engines: {node: '>=18.0.0'} '@oclif/plugin-help@6.2.53': - resolution: {integrity: sha512-njx2nTH87EQEEuz4ShNtL0gzzN981MRkDPqScbu+Tkd7NpIv30OHdTjQK1GzGtkf+V2RvSYIrX+LrLsUVh9DJw==} + resolution: {integrity: sha1-QXmMPEvPNjVYvfUoUU5AyseMQGw=} engines: {node: '>=18.0.0'} - '@oclif/plugin-not-found@3.2.65': - resolution: {integrity: sha512-WgP78eBiRsQYxRIkEui/eyR0l3a2w6LdGMoZTg3DvFwKqZ2X542oUfUmTSqvb19LxdS4uaQ+Mwp4DTVHw5lk/A==} + '@oclif/plugin-not-found@3.2.88': + resolution: {integrity: sha1-MsuoUcmHnjlfCk1x2ogH7eN9Gec=} engines: {node: '>=18.0.0'} - '@oclif/table@0.4.6': - resolution: {integrity: sha512-NXh72vHHYnDrWPmVfh4i7kDydz3CXm/tSAr17fWhmWfMM+8jGn5uo6FXtvB0cd9s4skvDqzoRcsRwOeR73zIKA==} + '@oclif/table@0.5.9': + resolution: {integrity: sha1-6dEZxCTqu4wg2gRPr6vy9VxAlms=} engines: {node: '>=18.0.0'} '@oozcitak/dom@2.0.2': - resolution: {integrity: sha512-GjpKhkSYC3Mj4+lfwEyI1dqnsKTgwGy48ytZEhm4A/xnH/8z9M3ZVXKr/YGQi3uCLs1AEBS+x5T2JPiueEDW8w==} + resolution: {integrity: sha1-D0R/C3NqpvNsVVa6gRpE5Wxxwmw=} engines: {node: '>=20.0'} '@oozcitak/infra@2.0.2': - resolution: {integrity: sha512-2g+E7hoE2dgCz/APPOEK5s3rMhJvNxSMBrP+U+j1OWsIbtSpWxxlUjq1lU8RIsFJNYv7NMlnVsCuHcUzJW+8vA==} + resolution: {integrity: sha1-4vHMDuyjrFzVUfAyal9m8AzxE4s=} engines: {node: '>=20.0'} '@oozcitak/url@3.0.0': - resolution: {integrity: sha512-ZKfET8Ak1wsLAiLWNfFkZc/BraDccuTJKR6svTYc7sVjbR+Iu0vtXdiDMY4o6jaFl5TW2TlS7jbLl4VovtAJWQ==} + resolution: {integrity: sha1-oDyVnGfiirqeKbLTXNUNJstfLMQ=} engines: {node: '>=20.0'} '@oozcitak/util@10.0.0': - resolution: {integrity: sha512-hAX0pT/73190NLqBPPWSdBVGtbY6VOhWYK3qqHqtXQ1gK7kS2yz4+ivsN07hpJ6I3aeMtKP6J6npsEKOAzuTLA==} + resolution: {integrity: sha1-9rQEctlsIQCUpVbuXMuOd/G9MK8=} engines: {node: '>=20.0'} '@open-wc/dedupe-mixin@2.0.1': - resolution: {integrity: sha512-+R4VxvceUxHAUJXJQipkkoV9fy10vNo+OnUnGKZnVmcwxMl460KLzytnUM4S35SI073R0yZQp9ra0MbPUwVcEA==} + resolution: {integrity: sha1-O80AnGOkcT2M5OMEpy6zOXfjdKw=} - '@open-wc/scoped-elements@3.0.6': - resolution: {integrity: sha512-w1ayJaUUmBw8tALtqQ6cBueld+op+bufujzbrOdH0uCTXnSQkONYZzOH+9jyQ8auVgKLqcxZ8oU6SzfqQhQkPg==} + '@open-wc/scoped-elements@3.0.10': + resolution: {integrity: sha1-9ofz/paS9yoV77lF5lLZt0ki3Xc=} '@open-wc/semantic-dom-diff@0.20.1': - resolution: {integrity: sha512-mPF/RPT2TU7Dw41LEDdaeP6eyTOWBD4z0+AHP4/d0SbgcfJZVRymlIB6DQmtz0fd2CImIS9kszaMmwMt92HBPA==} + resolution: {integrity: sha1-sbt4vkVb2Z+wNNm6rbuVnX0SQDA=} '@open-wc/testing-helpers@3.0.1': - resolution: {integrity: sha512-hyNysSatbgT2FNxHJsS3rGKcLEo6+HwDFu1UQL6jcSQUabp/tj3PyX7UnXL3H5YGv0lJArdYLSnvjLnjn3O2fw==} + resolution: {integrity: sha1-81ZpD8NJVGdQOjCiFyKIqouu9vg=} '@open-wc/testing@4.0.0': - resolution: {integrity: sha512-KI70O0CJEpBWs3jrTju4BFCy7V/d4tFfYWkg8pMzncsDhD7TYNHLw5cy+s1FHXIgVFetnMDhPpwlKIPvtTQW7w==} + resolution: {integrity: sha1-v6USEHmfhq0aR8LezmufFd1Ru5Q=} - '@opentelemetry/api@1.9.0': - resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} + '@opentelemetry/api@1.9.1': + resolution: {integrity: sha1-wbA0beM2ulWvLVp5cIggN7rt7AU=} engines: {node: '>=8.0.0'} - '@opentelemetry/core@2.8.0': - resolution: {integrity: sha512-hd1Lfh8p545nNz+jq1Ejfz+Mn1hyLuxYn1YzTfFNrxr8urEWMNQLPf1Th8kjOH+HxwawCrtgBp8JpBUR4ZSgww==} + '@opentelemetry/core@2.10.0': + resolution: {integrity: sha1-qnf3E450ulOZ1fO7DereDBaPALI=} engines: {node: ^18.19.0 || >=20.6.0} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.10.0' - '@opentelemetry/semantic-conventions@1.34.0': - resolution: {integrity: sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA==} + '@opentelemetry/semantic-conventions@1.43.0': + resolution: {integrity: sha1-8/Rn42wnMy8Oc17IbNzXjdbyeGU=} engines: {node: '>=14'} - '@oxc-parser/binding-android-arm-eabi@0.137.0': - resolution: {integrity: sha512-KDs+0VPdEmasOkpuJHW9V5WCF+cvYdMQv2Jd+aJXt+cxIx12NToRQRbXaRwUEDsZw+/jMk81Ve8ZFbjUkJTOwA==} + '@oxc-parser/binding-android-arm-eabi@0.140.0': + resolution: {integrity: sha1-HiY6ynqvOOmJAA5QAlsrIYNKjto=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - '@oxc-parser/binding-android-arm64@0.137.0': - resolution: {integrity: sha512-WhALNzfy3x/RfC6bsqX+csavuUY0yHHE7XfgPE5M542uhoBZUUoGTPG+nkMbGoG4+gcfss5s7urMyn5QBHu0sw==} + '@oxc-parser/binding-android-arm64@0.140.0': + resolution: {integrity: sha1-0lBR6UqpKBY/Nq0GYWV10EoR8ks=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@oxc-parser/binding-darwin-arm64@0.137.0': - resolution: {integrity: sha512-bFPr5hgmNMOMoyPTGtdsK4Ug21RovIPojRMgDDhSp1LtCnc/DkLwGONKjgRjszg677RlGnkYSviQ8hHaUPOVYA==} + '@oxc-parser/binding-darwin-arm64@0.140.0': + resolution: {integrity: sha1-uFnIen9KhlsAGXq1bVwlfTPKiec=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@oxc-parser/binding-darwin-x64@0.137.0': - resolution: {integrity: sha512-CL5dMm1asqXIDZHg14FLxj3Mc36w8PI7xCWh1uA4is6z8g2XrIILoTcQYOxDbwzuk34RDPX5IAGUxZr6LA9KAg==} + '@oxc-parser/binding-darwin-x64@0.140.0': + resolution: {integrity: sha1-gbxZ71ze69NJAmJrmIeu0StuMtA=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@oxc-parser/binding-freebsd-x64@0.137.0': - resolution: {integrity: sha512-79h8rYGnSlKPGWo7mHr2ixO6ea7aW8B0CT965SZ8SLbNnCOH5aOYBTeVXUY6eMvEaiLyWr8Skuiugr5pDYgLGw==} + '@oxc-parser/binding-freebsd-x64@0.140.0': + resolution: {integrity: sha1-3TSnknqTlKCKw3TgT8SN1bwhIDY=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@oxc-parser/binding-linux-arm-gnueabihf@0.137.0': - resolution: {integrity: sha512-ASgmlSimhGyr0lksgVIo6hibz1obnDq4qJbiMX/AzltfgPnanRrzG1Q+23g8ljOHOjv6dsznkUuCYL3gg0sY1Q==} + '@oxc-parser/binding-linux-arm-gnueabihf@0.140.0': + resolution: {integrity: sha1-QULLDOXsgVcgjBErn9EXGCM9i9I=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxc-parser/binding-linux-arm-musleabihf@0.137.0': - resolution: {integrity: sha512-AU2J9aa22Sx32wRGnDjybOU9TQXXQUud5sdUi+ZB0XxwM8aToWLweV+yA0wlQm0yIUVqljquqoHCYEq9II8gJQ==} + '@oxc-parser/binding-linux-arm-musleabihf@0.140.0': + resolution: {integrity: sha1-kOD5mJB/Mv+/ATb8KbXR2h5vtUo=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxc-parser/binding-linux-arm64-gnu@0.137.0': - resolution: {integrity: sha512-GdEtiG89yMr7XkUGxifgodXEEm2f+xW2f9CpDjlgAnBOwhTmrpQMvhOGobLVKUyzf/qHBXW16smk5zbF3nZU6w==} + '@oxc-parser/binding-linux-arm64-gnu@0.140.0': + resolution: {integrity: sha1-l+wss3FpPB6fxetmDEhmas54bYI=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - '@oxc-parser/binding-linux-arm64-musl@0.137.0': - resolution: {integrity: sha512-EGJ+Bs8iXx8KBH8DQ5BLoEm5lnHaYjlh4/8j8vFhrr/6z4tqONy5BZDzLpKmmNWlN6Hlc5r8YOuBVHqZ9vRFEQ==} + '@oxc-parser/binding-linux-arm64-musl@0.140.0': + resolution: {integrity: sha1-661+6MQJTlH00Tg2W4elEWBnG/0=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - '@oxc-parser/binding-linux-ppc64-gnu@0.137.0': - resolution: {integrity: sha512-vzFUQENy/fnbSe5DZWovq6tIBc1uhuMztanSW6rz1e9WdQE4gHwYuD7ZII6JnrJifd1R3RSoqiZbgRFlVL2tYQ==} + '@oxc-parser/binding-linux-ppc64-gnu@0.140.0': + resolution: {integrity: sha1-/eOcShRg+rcUTRUCX7jEDm6XZmg=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - '@oxc-parser/binding-linux-riscv64-gnu@0.137.0': - resolution: {integrity: sha512-SfVI14HBQs9gtLcUD5hTt5hsNbdrqSUNg9S8muN+LhVQ5nf1WwH3hAoK6B9NKgdYgWAQSXFXGiiBedQ4r/BKuw==} + '@oxc-parser/binding-linux-riscv64-gnu@0.140.0': + resolution: {integrity: sha1-aZCkLdrGuBsKAAduNQKLUU+69u0=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - '@oxc-parser/binding-linux-riscv64-musl@0.137.0': - resolution: {integrity: sha512-e7Ppy4FCIFNQxT/ikSeIWFoQ0l+N9vgtRBtLcyZXeolTzApyVoPqEXsYPrcdM/9i0Bwk8knvYd37vaEMxHyi6g==} + '@oxc-parser/binding-linux-riscv64-musl@0.140.0': + resolution: {integrity: sha1-/p5qX2UUuou4wyu7210RFlr2RUI=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - '@oxc-parser/binding-linux-s390x-gnu@0.137.0': - resolution: {integrity: sha512-Bho5qFwdhqsIFR7gipYEUlqvi3SRrY8sugxXig380MIaakBB1PyU9+7dBiBVScfImTNWhijUxdBwqrprGdq5WA==} + '@oxc-parser/binding-linux-s390x-gnu@0.140.0': + resolution: {integrity: sha1-nsdRmVc1+UUmJfwYof329DDqLu0=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - '@oxc-parser/binding-linux-x64-gnu@0.137.0': - resolution: {integrity: sha512-36mGWtg7PyFzjJwGDkH6/F4o2nIDEoKXLPr/X/lwqklkomQwJJt1I5GJVmGhovUEmgPK5WAeAZMqlFCehwiy9Q==} + '@oxc-parser/binding-linux-x64-gnu@0.140.0': + resolution: {integrity: sha1-JGxv0F51qcganLLA5/ZsbhSMZA8=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - '@oxc-parser/binding-linux-x64-musl@0.137.0': - resolution: {integrity: sha512-/Jqx6+N7A44n2BdvUr7pXhVr2vFjs6WGH3unZRczwrfiH0H1zY0QwKQMG/dtRiTlKGDKGukznPT8lx84/oEsZg==} + '@oxc-parser/binding-linux-x64-musl@0.140.0': + resolution: {integrity: sha1-anhhiE6/UjbBY7Mj7aXoIj5t3bM=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - '@oxc-parser/binding-openharmony-arm64@0.137.0': - resolution: {integrity: sha512-9Uj0qHNNl+OgT1UTGwF7ixIXU6T1u2SbMidmgPy/h1h/fl2gRS6YpAxxY1gwHofcWjoTwkoMFd8xs5Vuj6GOFA==} + '@oxc-parser/binding-openharmony-arm64@0.140.0': + resolution: {integrity: sha1-g3UgOIvjy8tKVIb56FWY4LzRryI=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@oxc-parser/binding-wasm32-wasi@0.137.0': - resolution: {integrity: sha512-gW2vfkytNGgMVADiuzdvOfw0mWG9za20F/1fCJsif5aBMAvWJTSbpIXbIe0XkOe0VENk+PadpQ7cZgUy2sUJcA==} + '@oxc-parser/binding-wasm32-wasi@0.140.0': + resolution: {integrity: sha1-Sb2axhAWFUdT863r9Ztyqj51THI=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - '@oxc-parser/binding-win32-arm64-msvc@0.137.0': - resolution: {integrity: sha512-x+pFANF0yL5uK/6T7lu6SlR5qid6sp//eZXKLq5iNsIE+EQg6EaS8/wsW7E91nXXjpnPhSoMOHXShSVhGRdn8w==} + '@oxc-parser/binding-win32-arm64-msvc@0.140.0': + resolution: {integrity: sha1-GQuXK2N8WmAWRP/4ZWHFnmWKTu0=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@oxc-parser/binding-win32-ia32-msvc@0.137.0': - resolution: {integrity: sha512-sQUqym80PFi6McRsIqfJrSu2JrSClEZIXXD+/FjAFoULEKzOPsldIdFBG96xdX8aVMzCNQ9792FPx3MfkEIrFA==} + '@oxc-parser/binding-win32-ia32-msvc@0.140.0': + resolution: {integrity: sha1-XSQ4+BDmRqt+ZbabIj7gBlbNYFQ=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - '@oxc-parser/binding-win32-x64-msvc@0.137.0': - resolution: {integrity: sha512-2AsevxlvNN4WKxpEn3RtqD5zbqMaXF+T7JXblsP4gVuY+vC9dXS4ED/PwfRCliFqoeisYS3Iro4DHzxr0TEvVA==} + '@oxc-parser/binding-win32-x64-msvc@0.140.0': + resolution: {integrity: sha1-/t2gf0zr9mgHP46ze4ADHFJQxmg=} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - '@oxc-project/types@0.137.0': - resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==} + '@oxc-project/types@0.140.0': + resolution: {integrity: sha1-Kswb1F/ySVEFnQHOdVLSbhV0xaw=} - '@oxc-resolver/binding-android-arm-eabi@11.21.3': - resolution: {integrity: sha512-eNU11A2WNizh04v3uyaJCootrHIaS0B9aHYXvAvVnPNk4xYSjMUjHnhQ6dewPN2MRYDskV85d1N0Aw0WNWhcyg==} + '@oxc-resolver/binding-android-arm-eabi@11.24.2': + resolution: {integrity: sha1-XbPw3NZZ4d5mT7CukSQgg5NIMJs=} cpu: [arm] os: [android] - '@oxc-resolver/binding-android-arm64@11.21.3': - resolution: {integrity: sha512-8Q+ZjTLvn2dIcWsrmhdrEihm7q+ag/k+mkry7Z+t0QbbHaVxXQfvH9AewyVMh/WrpEKhQ3DDgx9fYbqeCpeOEw==} + '@oxc-resolver/binding-android-arm64@11.24.2': + resolution: {integrity: sha1-/sAKi8ia+poWS615sjwUuMhvlc8=} cpu: [arm64] os: [android] - '@oxc-resolver/binding-darwin-arm64@11.21.3': - resolution: {integrity: sha512-wkh0qKZGHXVUDxFw3oA1TXnU2BDYY/r775oJflGeIr8uDPPoN2pk8gijQIzYRT6hoql/lg3+Tx/SaTn9e2/aGg==} + '@oxc-resolver/binding-darwin-arm64@11.24.2': + resolution: {integrity: sha1-tebiwr7Vhcv9Z7bkHup/zio9pfg=} cpu: [arm64] os: [darwin] - '@oxc-resolver/binding-darwin-x64@11.21.3': - resolution: {integrity: sha512-HbNc23FAQYbuyDV2vBWMez4u4mrsm5RAkniGZAWqr6lYZ3N4beeqIb776jzwRl8qL2zRhHVXpUj97X0QgogVzg==} + '@oxc-resolver/binding-darwin-x64@11.24.2': + resolution: {integrity: sha1-23Wdb62sJip9ohsb+3ErAZnJzRg=} cpu: [x64] os: [darwin] - '@oxc-resolver/binding-freebsd-x64@11.21.3': - resolution: {integrity: sha512-K6xNsTUPEUdfrn0+kbMq5nOUB5w1C5pavPQngt4TM2FpN91lP0PBe2srSpamb4d69O7h86oAi/qWX/kZNRSjkw==} + '@oxc-resolver/binding-freebsd-x64@11.24.2': + resolution: {integrity: sha1-f+CrByUoSu6ba2xFuB8PrPiV/GI=} cpu: [x64] os: [freebsd] - '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3': - resolution: {integrity: sha512-VcFmOpcpWX1zoEy8M58tR2M9YxM+Z9RuQhqAx5q0CTmrruaP7Gveejg75hzd/5sg5nk9G3aLALEa3hE2FsmmTQ==} + '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2': + resolution: {integrity: sha1-kacreYeTDDrMUzcjdFS6Azn4AzM=} cpu: [arm] os: [linux] - '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3': - resolution: {integrity: sha512-quVoxFLBy43hWaQbbDtQNRwAX5vX76mv7n64icAtQcJ3eNgVeblqmkupF/hAneNthdqSlnd1sTjb3aQSaDPaCQ==} + '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2': + resolution: {integrity: sha1-ctBK19Iif7Oscap5M3lL+4gZS3s=} cpu: [arm] os: [linux] - '@oxc-resolver/binding-linux-arm64-gnu@11.21.3': - resolution: {integrity: sha512-X0AqNZgcD07Q4V3RDK18/vYOj/HQT/FnmEFGYS2jTWqY7JO13ryE3TEs3eAIgUJhBnNkpEaiXqz3VK8M7qQhWQ==} + '@oxc-resolver/binding-linux-arm64-gnu@11.24.2': + resolution: {integrity: sha1-uH+vWb3p7P8Lgoj+magx63SS+Z0=} cpu: [arm64] os: [linux] libc: [glibc] - '@oxc-resolver/binding-linux-arm64-musl@11.21.3': - resolution: {integrity: sha512-YkaQnaKYdbuaXvRt5Qd0GpbihzVnyfR6z1SpYfIUC6RTu4NF7lDKPjVkYb+jRI2gedVO2rVpN35Y6akG6ud4Lw==} + '@oxc-resolver/binding-linux-arm64-musl@11.24.2': + resolution: {integrity: sha1-LaZVHFYb8vK+00wxKpnhjRhKnwc=} cpu: [arm64] os: [linux] libc: [musl] - '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3': - resolution: {integrity: sha512-gB9HwhrPiFqUzDeEq+y/CgAijz1YdI6BnXz5GaH2Pa9cWdutchlkGFAiAuGb/PjVQpiK6NFKzFuztxrweoit7A==} + '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2': + resolution: {integrity: sha1-/aRVjMlOQ/79+k+bljkcMOwTets=} cpu: [ppc64] os: [linux] libc: [glibc] - '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3': - resolution: {integrity: sha512-zjDWBlYk8QGv0H8dsPUWqkfjYIIjG2TvspGkzXL0eImbgxtZorA/klKeHyolevoT3Kvbi+1iMr9Lhrh7jf54Og==} + '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2': + resolution: {integrity: sha1-L+JDpREtIhAhqLL8zXs2qpatyUY=} cpu: [riscv64] os: [linux] libc: [glibc] - '@oxc-resolver/binding-linux-riscv64-musl@11.21.3': - resolution: {integrity: sha512-4UfsQvacV388y1zpXL7C1x1FNYaV52JtuNRiuzrfQA2z1z6ElVrsidkGsrvQ5EgeSq1Pj7kaKqrgGkvFuxJ/tw==} + '@oxc-resolver/binding-linux-riscv64-musl@11.24.2': + resolution: {integrity: sha1-6Vy0OFb36cSqCvpDjgQ/2/bG1A0=} cpu: [riscv64] os: [linux] libc: [musl] - '@oxc-resolver/binding-linux-s390x-gnu@11.21.3': - resolution: {integrity: sha512-b5uH+HKH0MP5mNBYaK75SKsJbw52URqrx2LavYdq6wb0l3ExAG5niYRP9DWUNHdKilpaBVM2bXk9HNWrH3ew7Q==} + '@oxc-resolver/binding-linux-s390x-gnu@11.24.2': + resolution: {integrity: sha1-jjynZeGvfMq4phrcljI4EPl3BTU=} cpu: [s390x] os: [linux] libc: [glibc] - '@oxc-resolver/binding-linux-x64-gnu@11.21.3': - resolution: {integrity: sha512-PjYlmilBpNRh2ntXNYAK3Am5w/nPfEpnU/96iNx7CI8EzAn12J4JRiec63wHJTH31nLoCNxBg/829pN+3CfG3Q==} + '@oxc-resolver/binding-linux-x64-gnu@11.24.2': + resolution: {integrity: sha1-orFMHvwyUucFA4vCO3Ilp8tDTfI=} cpu: [x64] os: [linux] libc: [glibc] - '@oxc-resolver/binding-linux-x64-musl@11.21.3': - resolution: {integrity: sha512-QTBAb7JuHlZ7JUEyM8UiQi2f7m/L4swBhP2TNpYIDc9Wp/wRw1G/8sl6i13aIzQAXH7LKIm294LeOHd0lQR8zA==} + '@oxc-resolver/binding-linux-x64-musl@11.24.2': + resolution: {integrity: sha1-1C8UpqKGsKgYceK+buLus9BEr84=} cpu: [x64] os: [linux] libc: [musl] - '@oxc-resolver/binding-openharmony-arm64@11.21.3': - resolution: {integrity: sha512-4j1DFwjwv36ec9kds0jU/ucQ5Ha4ERO/H95BxR5JFf0kqUUAJ1kwII7XhTc1vZrkdJkvLGC9Q2MbpObpum8RBg==} + '@oxc-resolver/binding-openharmony-arm64@11.24.2': + resolution: {integrity: sha1-HOJ7wDcHO2JMSE5IGuYfTMm1z7w=} cpu: [arm64] os: [openharmony] - '@oxc-resolver/binding-wasm32-wasi@11.21.3': - resolution: {integrity: sha512-i8oluoel5kru/j1WNrjmQSiA3GQ7wvIYVR1IwIoZtKogAhya2iub+ZKIeSIkcJOrnzQ18Tzl/F+kL3fYOxZLvA==} + '@oxc-resolver/binding-wasm32-wasi@11.24.2': + resolution: {integrity: sha1-nIGP2VEu7VAtoZct4fjJUotMnSc=} engines: {node: '>=14.0.0'} cpu: [wasm32] - '@oxc-resolver/binding-win32-arm64-msvc@11.21.3': - resolution: {integrity: sha512-M/8dw8dD6aOs+NlPJax401CZB9I7Aut84isQLgALGGwke4Afvw+/7yYhZb94yXf6t2sPLhQLmSmtSV+2FhsOWg==} + '@oxc-resolver/binding-win32-arm64-msvc@11.24.2': + resolution: {integrity: sha1-DivWhp71VP/TAWWUlR8fRPXwJhc=} cpu: [arm64] os: [win32] - '@oxc-resolver/binding-win32-x64-msvc@11.21.3': - resolution: {integrity: sha512-H7BCt/VnS9hnmMp42eGhZ99izSCRvlnWwy/N71K1/J8QoExwY4262Z8QiEkMDtduRJrztayDxETTckmUuAVL9Q==} + '@oxc-resolver/binding-win32-x64-msvc@11.24.2': + resolution: {integrity: sha1-0GSTRPzVBN+vfzVhpTYXw42Y14k=} cpu: [x64] os: [win32] '@peculiar/asn1-cms@2.8.0': - resolution: {integrity: sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==} + resolution: {integrity: sha1-tIqDiTGSKPkp6azYzujabIWHON4=} '@peculiar/asn1-csr@2.8.0': - resolution: {integrity: sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==} + resolution: {integrity: sha1-ybtd7C6v+CSnBegqSljUXm0sNdA=} '@peculiar/asn1-ecc@2.8.0': - resolution: {integrity: sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==} + resolution: {integrity: sha1-1RqysH7KmODPSS0FHpi70KBxMFo=} '@peculiar/asn1-pfx@2.8.0': - resolution: {integrity: sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==} + resolution: {integrity: sha1-jhibZFXiv55fkhuxUOqG1+fRh10=} '@peculiar/asn1-pkcs8@2.8.0': - resolution: {integrity: sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==} + resolution: {integrity: sha1-pGz4hXubBjiWr6QdK4sqpqB6cKI=} '@peculiar/asn1-pkcs9@2.8.0': - resolution: {integrity: sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==} + resolution: {integrity: sha1-bWJpevC71PMP3w0jtAGPPwliDeM=} '@peculiar/asn1-rsa@2.8.0': - resolution: {integrity: sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==} + resolution: {integrity: sha1-nZjQ/EL+xQEZ0ogbipkl022q6nM=} '@peculiar/asn1-schema@2.8.0': - resolution: {integrity: sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==} + resolution: {integrity: sha1-aWmfhCWbIWFgfKv8NOUSpAI9vvk=} '@peculiar/asn1-x509-attr@2.8.0': - resolution: {integrity: sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==} + resolution: {integrity: sha1-vRaOP16Lwj5Wsal4kfny+39zAgQ=} '@peculiar/asn1-x509@2.8.0': - resolution: {integrity: sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==} + resolution: {integrity: sha1-mVip7zXeyEJqq614/+h5jjGLBuI=} '@peculiar/utils@2.0.3': - resolution: {integrity: sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==} + resolution: {integrity: sha1-onykxLc2UuEQ8Zp9FtZk9FilUo4=} '@peculiar/x509@1.14.3': - resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==} + resolution: {integrity: sha1-LETCuJR0NGr+w4oMKAPsT7jOlZ4=} engines: {node: '>=20.0.0'} '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + resolution: {integrity: sha1-p36nQvqyV3UUVDTrHSMoz1ATrDM=} engines: {node: '>=14'} - '@playwright/test@1.57.0': - resolution: {integrity: sha512-6TyEnHgd6SArQO8UO2OMTxshln3QMWBtPGrOCgs3wVEmQmwyuNtB10IZMfmYDE0riwNR1cu4q+pPcxMVtaG3TA==} + '@playwright/test@1.61.1': + resolution: {integrity: sha1-SFaNwir3gZ5V+l6OO8ebfmo+ZnU=} engines: {node: '>=18'} hasBin: true '@popperjs/core@2.11.8': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + resolution: {integrity: sha1-a3kDLnYKCJnNQgRxC+7elyo6GF8=} '@protobufjs/aspromise@1.1.2': - resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + resolution: {integrity: sha1-m4sMxmPWaafY9vXQiToU00jzD78=} '@protobufjs/base64@1.1.2': - resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + resolution: {integrity: sha1-TIVzDlm5ofHzSQR9vyQpYDS7JzU=} '@protobufjs/codegen@2.0.5': - resolution: {integrity: sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==} + resolution: {integrity: sha1-2TFa188/MKrHC9o8BoRD3G8UNlk=} '@protobufjs/eventemitter@1.1.1': - resolution: {integrity: sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==} + resolution: {integrity: sha1-1RLLJsCuAmCR7iwRZ/G+b69chCo=} '@protobufjs/fetch@1.1.1': - resolution: {integrity: sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==} + resolution: {integrity: sha1-TW/ADI+2QBalyBtGnVSQRjUPEGU=} '@protobufjs/float@1.0.2': - resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + resolution: {integrity: sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=} '@protobufjs/path@1.1.2': - resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + resolution: {integrity: sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=} '@protobufjs/pool@1.1.0': - resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + resolution: {integrity: sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=} - '@protobufjs/utf8@1.1.1': - resolution: {integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==} + '@protobufjs/utf8@1.1.2': + resolution: {integrity: sha1-eNR2Mz2F1bHHkuJXvKdLoIDaSaQ=} - '@puppeteer/browsers@2.13.0': - resolution: {integrity: sha512-46BZJYJjc/WwmKjsvDFykHtXrtomsCIrwYQPOP7VfMJoZY2bsDF9oROBABR3paDjDcmkUye1Pb1BqdcdiipaWA==} + '@puppeteer/browsers@2.13.2': + resolution: {integrity: sha1-3MjnpFRdloCopyxT8TLoCvxYIoQ=} engines: {node: '>=18'} hasBin: true '@puppeteer/browsers@2.6.1': - resolution: {integrity: sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==} + resolution: {integrity: sha1-11rsUBDK43fF5HQr9eT2KnnCExU=} engines: {node: '>=18'} hasBin: true '@remusao/guess-url-type@1.3.0': - resolution: {integrity: sha512-SNSJGxH5ckvxb3EUHj4DqlAm/bxNxNv2kx/AESZva/9VfcBokwKNS+C4D1lQdWIDM1R3d3UG+xmVzlkNG8CPTQ==} + resolution: {integrity: sha1-TRtz8T2R9ed3XEYb54IFmrXag60=} '@remusao/small@1.3.0': - resolution: {integrity: sha512-bydAhJI+ywmg5xMUcbqoR8KahetcfkFywEZpsyFZ8EBofilvWxbXnMSe4vnjDI1Y+SWxnNhR4AL/2BAXkf4b8A==} + resolution: {integrity: sha1-FNQ8hO1yNXlRLGqh7ObFdoYeNBg=} '@remusao/smaz-compress@1.10.0': - resolution: {integrity: sha512-E/lC8OSU+3bQrUl64vlLyPzIxo7dxF2RvNBe9KzcM4ax43J/d+YMinmMztHyCIHqRbz7rBCtkp3c0KfeIbHmEg==} + resolution: {integrity: sha1-7YaGxT8MwXzYgs6El96JWAVr2To=} '@remusao/smaz-decompress@1.10.0': - resolution: {integrity: sha512-aA5ImUH480Pcs5/cOgToKmFnzi7osSNG6ft+7DdmQTaQEEst3nLq3JLlBEk+gwidURymjbx6DYs60LHaZ415VQ==} + resolution: {integrity: sha1-UGCDN8nvlP4y369r/YhZ5vkLm/M=} '@remusao/smaz@1.10.0': - resolution: {integrity: sha512-GQzCxmmMpLkyZwcwNgz8TpuBEWl0RUQa8IcvKiYlPxuyYKqyqPkCr0hlHI15ckn3kDUPS68VmTVgyPnLNrdVmg==} + resolution: {integrity: sha1-+vg9i7xLk6W3C43KMzUm//jzyGQ=} '@remusao/trie@1.5.0': - resolution: {integrity: sha512-UX+3utJKgwCsg6sUozjxd38gNMVRXrY4TNX9VvCdSrlZBS1nZjRPi98ON3QjRAdf6KCguJFyQARRsulTeqQiPg==} + resolution: {integrity: sha1-WvrCsD/sRf3XFaJw9z+xRx2dpOs=} '@rollup/plugin-node-resolve@15.3.1': - resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} + resolution: {integrity: sha1-ZgCJU8JSS+eGqjGdSeMvISgpang=} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -9624,8 +9270,8 @@ packages: rollup: optional: true - '@rollup/pluginutils@5.3.0': - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} + '@rollup/pluginutils@5.4.0': + resolution: {integrity: sha1-rCOinO0CRwYKIQgV/KOcF95NLyY=} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -9634,1403 +9280,1046 @@ packages: optional: true '@rollup/rollup-android-arm-eabi@4.62.2': - resolution: {integrity: sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg==} + resolution: {integrity: sha1-XphJtmHCIpz5Z6CNvi276ejJkeU=} cpu: [arm] os: [android] '@rollup/rollup-android-arm64@4.62.2': - resolution: {integrity: sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw==} + resolution: {integrity: sha1-WwaZ7l3UhLIiye10r/Q8keqLF/g=} cpu: [arm64] os: [android] '@rollup/rollup-darwin-arm64@4.62.2': - resolution: {integrity: sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A==} + resolution: {integrity: sha1-i8UsnXo86NBTPDUanJNd54HaoG8=} cpu: [arm64] os: [darwin] '@rollup/rollup-darwin-x64@4.62.2': - resolution: {integrity: sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA==} + resolution: {integrity: sha1-ui7z6PsxDwrzVYjycM+lqpbkh2Q=} cpu: [x64] os: [darwin] '@rollup/rollup-freebsd-arm64@4.62.2': - resolution: {integrity: sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw==} + resolution: {integrity: sha1-k7EL2/6K2iJri8DALva39URHTZY=} cpu: [arm64] os: [freebsd] '@rollup/rollup-freebsd-x64@4.62.2': - resolution: {integrity: sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg==} + resolution: {integrity: sha1-PoqjjvPJwwCUaHHj/bsMMOCiD4Y=} cpu: [x64] os: [freebsd] '@rollup/rollup-linux-arm-gnueabihf@4.62.2': - resolution: {integrity: sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg==} + resolution: {integrity: sha1-HXmUOEuwrRvEGSG1BuFkLU+df8M=} cpu: [arm] os: [linux] libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.62.2': - resolution: {integrity: sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA==} + resolution: {integrity: sha1-plQPR8+ESla4DKn/ldKs37LO+Xs=} cpu: [arm] os: [linux] libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.62.2': - resolution: {integrity: sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA==} + resolution: {integrity: sha1-QE8gRWUYQMv0jakbptD0kPC8LL8=} cpu: [arm64] os: [linux] libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.62.2': - resolution: {integrity: sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ==} + resolution: {integrity: sha1-o0BP/d97R0tIyZuciTtiR7t2W6U=} cpu: [arm64] os: [linux] libc: [musl] '@rollup/rollup-linux-loong64-gnu@4.62.2': - resolution: {integrity: sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg==} + resolution: {integrity: sha1-6KrG1Umzd5ReNJiC8Zm3yOt1yjg=} cpu: [loong64] os: [linux] libc: [glibc] '@rollup/rollup-linux-loong64-musl@4.62.2': - resolution: {integrity: sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ==} + resolution: {integrity: sha1-bi5E6lAxCzpYIHipFeX+uHnIINQ=} cpu: [loong64] os: [linux] libc: [musl] '@rollup/rollup-linux-ppc64-gnu@4.62.2': - resolution: {integrity: sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A==} + resolution: {integrity: sha1-aJgwLabXegU3zeZLK0xrYGWb0RA=} cpu: [ppc64] os: [linux] libc: [glibc] '@rollup/rollup-linux-ppc64-musl@4.62.2': - resolution: {integrity: sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w==} + resolution: {integrity: sha1-MzcXyV3Vpmvvj2Pn74qf2EX9GNA=} cpu: [ppc64] os: [linux] libc: [musl] '@rollup/rollup-linux-riscv64-gnu@4.62.2': - resolution: {integrity: sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg==} + resolution: {integrity: sha1-gbwGujgDUgBNAfSCbrfNzO+gW60=} cpu: [riscv64] os: [linux] libc: [glibc] '@rollup/rollup-linux-riscv64-musl@4.62.2': - resolution: {integrity: sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q==} + resolution: {integrity: sha1-lafNOd4hOJrWeIpShOqqc44pykw=} cpu: [riscv64] os: [linux] libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.62.2': - resolution: {integrity: sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg==} + resolution: {integrity: sha1-BubbLsG8SLU3THkj74PC6wJLJFI=} cpu: [s390x] os: [linux] libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.62.2': - resolution: {integrity: sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A==} + resolution: {integrity: sha1-XcgYmIKF4J6IeQxkYt73JBPfLaM=} cpu: [x64] os: [linux] libc: [glibc] '@rollup/rollup-linux-x64-musl@4.62.2': - resolution: {integrity: sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg==} + resolution: {integrity: sha1-IID0qTNJ6a/TS+b8GjfgH8i/yA8=} cpu: [x64] os: [linux] libc: [musl] '@rollup/rollup-openbsd-x64@4.62.2': - resolution: {integrity: sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg==} + resolution: {integrity: sha1-IdZKistmIhckuSPlGvUzPfGvBEs=} cpu: [x64] os: [openbsd] '@rollup/rollup-openharmony-arm64@4.62.2': - resolution: {integrity: sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA==} + resolution: {integrity: sha1-jg/NnQIUHjN7TFtc/1dsuadrG6A=} cpu: [arm64] os: [openharmony] '@rollup/rollup-win32-arm64-msvc@4.62.2': - resolution: {integrity: sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg==} + resolution: {integrity: sha1-vbTMTv1Y7+gIIDNH8PVGPw6hblI=} cpu: [arm64] os: [win32] '@rollup/rollup-win32-ia32-msvc@4.62.2': - resolution: {integrity: sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q==} + resolution: {integrity: sha1-26695a/STq4O7+kV2QFjLny1mGA=} cpu: [ia32] os: [win32] '@rollup/rollup-win32-x64-gnu@4.62.2': - resolution: {integrity: sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg==} + resolution: {integrity: sha1-hBCehf6l+PE1NJn5ZXj9wqDosTg=} cpu: [x64] os: [win32] '@rollup/rollup-win32-x64-msvc@4.62.2': - resolution: {integrity: sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA==} + resolution: {integrity: sha1-NnHOP5uSjVwB+Hl5LVwLYK4U1K0=} cpu: [x64] os: [win32] - '@secretlint/config-creator@9.3.2': - resolution: {integrity: sha512-IDUNnM/WVYcvj9PeoZIAvew31HHOtL/paJVkYT2D7G8HyehhTOPMvZSYVr43KXZ/bwUdlJg39C14xPx0NVsJyw==} - engines: {node: ^14.13.1 || >=16.0.0} - - '@secretlint/config-loader@9.3.2': - resolution: {integrity: sha512-5pBUiAFI7lwHzsxPozwhIXVVxj65MbPOth5nSPz2rdpLg/dlti3udlstoq624kqQAlpb196Bhto3JCZGpKduQw==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/config-creator@10.2.2': + resolution: {integrity: sha1-XWRug7sqrPvVIYlozrNYQgtMLLM=} + engines: {node: '>=20.0.0'} - '@secretlint/core@9.3.2': - resolution: {integrity: sha512-oBsrFDTwXvFNLjIdcwrbCS/WUhKrGUeTDTSrmQBuaJvLHgCUX8/jEuBhBONkUDgWO3QEHRhi9LDlgnBqTIODEw==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/config-loader@10.2.2': + resolution: {integrity: sha1-p3kMjQMB209tR+b7Dw+Ugv5lLZo=} + engines: {node: '>=20.0.0'} - '@secretlint/formatter@9.3.2': - resolution: {integrity: sha512-JiFhZtg2a4WdkPxCXlq0iGUz18UxzjWnyUMvb/89BvF5m9DKDvmlfHIMLZ3O5205mSJqlpcZxRu7eADJB9fS7Q==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/core@10.2.2': + resolution: {integrity: sha1-zUHVwnugfCF/CvTg4k29/l72IEI=} + engines: {node: '>=20.0.0'} - '@secretlint/node@9.3.2': - resolution: {integrity: sha512-WH3PjYtZ8RumUJFZvM4vYEvpelT2m6WFzCRS3j+nzmH5eSv70+BWSISMB/ouZ5koq1+1zPlnWf/ADEvOwgbebw==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/formatter@10.2.2': + resolution: {integrity: sha1-yM41gDrQ2EHMm25wPW+raKFE6cA=} + engines: {node: '>=20.0.0'} - '@secretlint/profiler@9.3.2': - resolution: {integrity: sha512-cXXWQzA6lIcT0TY53JvbXtH6BltBfqmH5V39byhnbDfZl5FKCB6FHxVVzkctjwss6KMtDXcNLvfz3nKBZaWRDA==} + '@secretlint/node@10.2.2': + resolution: {integrity: sha1-HYpu1iAXC/TymCmjqRh4aCxDxNk=} + engines: {node: '>=20.0.0'} - '@secretlint/resolver@9.3.2': - resolution: {integrity: sha512-yOi6md3kzpaFw6w2FJTDLoKlUxr1RltBJrb5lheIBDDXy/7C/5gP0K4uMiqamnVg8c9Ac+qlNS5KUar8FDFpdg==} + '@secretlint/profiler@10.2.2': + resolution: {integrity: sha1-gsCFqxlmgGdju/btuDCYfyXU55c=} - '@secretlint/secretlint-formatter-sarif@9.3.2': - resolution: {integrity: sha512-RtL9BISmhtsHTOcPI6+4AL1sRnUcnMhuQTvFbNPb9malxolIjthUsUKC5WqgT+8JN1tUG7w/diW+/kr5F1T0zw==} + '@secretlint/resolver@10.2.2': + resolution: {integrity: sha1-nDw+L+8AZ5/M6ZeT524Z5XW3VyE=} - '@secretlint/secretlint-rule-no-dotenv@9.3.2': - resolution: {integrity: sha512-i1npoCy8eha8gU602SFf4S7vPOYMu9/WHCIr41EQvy4C9J+u95bt8COOYmk46e+aPyEDmQGxn2Lp4F2A2BoVLw==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/secretlint-formatter-sarif@10.2.2': + resolution: {integrity: sha1-XEBEpqbJ2V4vVycNYYSTHwl51kk=} - '@secretlint/secretlint-rule-preset-recommend@9.3.2': - resolution: {integrity: sha512-rMvHTcHWLydOhKWDrK62x54ICMyfPwl0H5hAPfurLQR0sjjxGeSKuqr75emu6a2/5yYgvScZC97xVrlc2fTPSA==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/secretlint-rule-no-dotenv@10.2.2': + resolution: {integrity: sha1-6kPcwqvR2sMoiwVmEDYfMZ9c5uk=} + engines: {node: '>=20.0.0'} - '@secretlint/source-creator@9.3.2': - resolution: {integrity: sha512-eEP8sHnTB7rtv976Awh5+VMTD8udiHBaeSWAEKGy21Gas/slEb02Q812SWo2UMX9NcVBl+DYaOkmPQbcPHrY5A==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/secretlint-rule-preset-recommend@10.2.2': + resolution: {integrity: sha1-J7F8OLNgxniIJtKPzaKKxul3LQs=} + engines: {node: '>=20.0.0'} - '@secretlint/types@9.3.2': - resolution: {integrity: sha512-Mxs8jzyPm843B0P/YNiOxnFSNyYtrmMoLPjrmqebrI5LBERRGctXj2Q9Oy/ayZ+FMK+1cP9jLhceicRvlZPR1Q==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/source-creator@10.2.2': + resolution: {integrity: sha1-1gC21Eh4Wc3Tm7sc+M90RUCz96E=} + engines: {node: '>=20.0.0'} - '@secretlint/types@9.3.4': - resolution: {integrity: sha512-z9rdKHNeL4xa48+367RQJVw1d7/Js9HIQ+gTs/angzteM9osfgs59ad3iwVRhCGYbeUoUUDe2yxJG2ylYLaH3Q==} - engines: {node: ^14.13.1 || >=16.0.0} + '@secretlint/types@10.2.2': + resolution: {integrity: sha1-FBLY9pn9kAGCy/TCkjqd+esyHKc=} + engines: {node: '>=20.0.0'} '@selderee/plugin-htmlparser2@0.11.0': - resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} + resolution: {integrity: sha1-1bXimnum05WKGXLHvhb0ssGIxRc=} '@sinclair/typebox@0.27.12': - resolution: {integrity: sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g==} + resolution: {integrity: sha1-DKzTz/BHoyk2sazkfqfIbqq2Cn8=} '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + resolution: {integrity: sha1-PHycRuZ4/u/nouW7YJ09vWZf+z8=} engines: {node: '>=10'} - '@sindresorhus/merge-streams@2.2.1': - resolution: {integrity: sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==} - engines: {node: '>=18'} - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + resolution: {integrity: sha1-cZ33+0F2a8FDNp6qDdVtjch8mVg=} engines: {node: '>=18'} - '@sinonjs/commons@3.0.0': - resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha1-ECk1fkTKkBphVYX20nc428iQhM0=} '@sinonjs/fake-timers@10.3.0': - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + resolution: {integrity: sha1-Vf3/Hsq581QBkSna9N8N1Nkj6mY=} - '@smithy/abort-controller@4.2.11': - resolution: {integrity: sha512-Hj4WoYWMJnSpM6/kchsm4bUNTL9XiSyhvoMb2KIq4VJzyDt7JpGHUZHkVNPZVC7YE1tf8tPeVauxpFBKGW4/KQ==} + '@smithy/core@3.29.7': + resolution: {integrity: sha1-LUOtPfDMJv9bO/JlP6JMVc8dwyM=} engines: {node: '>=18.0.0'} - '@smithy/abort-controller@4.3.3': - resolution: {integrity: sha512-rQzc/M6ejh96yTAWk4tupBaQ3v+r4fS9W5sH6mXJlg9T195bIdPZC/mf6nn8J4MxFw6G2BezSMjmCiI84Vm+uw==} + '@smithy/credential-provider-imds@4.4.12': + resolution: {integrity: sha1-fcx8o94+BrwWKI6UByqeTMAqfZw=} engines: {node: '>=18.0.0'} - '@smithy/chunked-blob-reader-native@4.2.3': - resolution: {integrity: sha512-jA5k5Udn7Y5717L86h4EIv06wIr3xn8GM1qHRi/Nf31annXcXHJjBKvgztnbn2TxH3xWrPBfgwHsOwZf0UmQWw==} + '@smithy/fetch-http-handler@5.6.9': + resolution: {integrity: sha1-oim0fYywQHoZz9gn4hPaw+NS9t8=} engines: {node: '>=18.0.0'} - '@smithy/chunked-blob-reader@5.2.2': - resolution: {integrity: sha512-St+kVicSyayWQca+I1rGitaOEH6uKgE8IUWoYnnEX26SWdWQcL6LvMSD19Lg+vYHKdT9B2Zuu7rd3i6Wnyb/iw==} + '@smithy/node-http-handler@4.9.9': + resolution: {integrity: sha1-UbNCuDlorHOljafywSh/6MHdnsI=} engines: {node: '>=18.0.0'} - '@smithy/config-resolver@4.4.10': - resolution: {integrity: sha512-IRTkd6ps0ru+lTWnfnsbXzW80A8Od8p3pYiZnW98K2Hb20rqfsX7VTlfUwhrcOeSSy68Gn9WBofwPuw3e5CCsg==} + '@smithy/signature-v4@5.6.8': + resolution: {integrity: sha1-GPLu2wLLgIiw1Y+yDS6pgiydbFs=} engines: {node: '>=18.0.0'} - '@smithy/core@3.23.9': - resolution: {integrity: sha512-1Vcut4LEL9HZsdpI0vFiRYIsaoPwZLjAxnVQDUMQK8beMS+EYPLDQCXtbzfxmM5GzSgjfe2Q9M7WaXwIMQllyQ==} + '@smithy/types@4.16.1': + resolution: {integrity: sha1-GeGZwjSCmlHAhcr2Pwuxe7gBh+Q=} engines: {node: '>=18.0.0'} - '@smithy/core@3.29.6': - resolution: {integrity: sha512-TO3w25cdGWBeYqKNDaqH3v4O3jjMPpKwf39YlG5X5xhqWfpOWJbi5gQi1lrllukuwohdhY0TPB8jBEv6UC50Vg==} - engines: {node: '>=18.0.0'} + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha1-tKkUu2LnwnLU5Zif5EQPgSqx2Ac=} + engines: {node: '>=10'} - '@smithy/credential-provider-imds@4.2.11': - resolution: {integrity: sha512-lBXrS6ku0kTj3xLmsJW0WwqWbGQ6ueooYyp/1L9lkyT0M02C+DWwYwc5aTyXFbRaK38ojALxNixg+LxKSHZc0g==} - engines: {node: '>=18.0.0'} + '@textlint/ast-node-types@15.7.1': + resolution: {integrity: sha1-IPP5ER1zW+cIMb5hzLPo1EIKjHE=} - '@smithy/eventstream-codec@4.2.11': - resolution: {integrity: sha512-Sf39Ml0iVX+ba/bgMPxaXWAAFmHqYLTmbjAPfLPLY8CrYkRDEqZdUsKC1OwVMCdJXfAt0v4j49GIJ8DoSYAe6w==} - engines: {node: '>=18.0.0'} + '@textlint/linter-formatter@15.7.1': + resolution: {integrity: sha1-bDwS+vgDKKq3h53BfD3LG8oY9vU=} - '@smithy/eventstream-serde-browser@4.2.11': - resolution: {integrity: sha512-3rEpo3G6f/nRS7fQDsZmxw/ius6rnlIpz4UX6FlALEzz8JoSxFmdBt0SZnthis+km7sQo6q5/3e+UJcuQivoXA==} - engines: {node: '>=18.0.0'} + '@textlint/module-interop@15.7.1': + resolution: {integrity: sha1-Vdha/cscgg/9tQ+R3jU7IM8k+Vc=} - '@smithy/eventstream-serde-config-resolver@4.3.11': - resolution: {integrity: sha512-XeNIA8tcP/GDWnnKkO7qEm/bg0B/bP9lvIXZBXcGZwZ+VYM8h8k9wuDvUODtdQ2Wcp2RcBkPTCSMmaniVHrMlA==} - engines: {node: '>=18.0.0'} + '@textlint/resolver@15.7.1': + resolution: {integrity: sha1-hYy85448O2Y1Sw6x/sd7+o+e5dk=} - '@smithy/eventstream-serde-node@4.2.11': - resolution: {integrity: sha512-fzbCh18rscBDTQSCrsp1fGcclLNF//nJyhjldsEl/5wCYmgpHblv5JSppQAyQI24lClsFT0wV06N1Porn0IsEw==} - engines: {node: '>=18.0.0'} + '@textlint/types@15.7.1': + resolution: {integrity: sha1-4eQzVw3HaJNJkkKXSDbYxf18G+I=} - '@smithy/eventstream-serde-universal@4.2.11': - resolution: {integrity: sha512-MJ7HcI+jEkqoWT5vp+uoVaAjBrmxBtKhZTeynDRG/seEjJfqyg3SiqMMqyPnAMzmIfLaeJ/uiuSDP/l9AnMy/Q==} - engines: {node: '>=18.0.0'} + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha1-207P1JmpdlqyQALDtpbQLm0yoSw=} - '@smithy/fetch-http-handler@5.3.13': - resolution: {integrity: sha512-U2Hcfl2s3XaYjikN9cT4mPu8ybDbImV3baXR0PkVlC0TTx808bRP3FaPGAzPtB8OByI+JqJ1kyS+7GEgae7+qQ==} - engines: {node: '>=18.0.0'} + '@ts-graphviz/adapter@2.0.6': + resolution: {integrity: sha1-GNWkIwTcp///dg/K8xGjFI70o70=} + engines: {node: '>=18'} - '@smithy/hash-blob-browser@4.2.12': - resolution: {integrity: sha512-1wQE33DsxkM/waftAhCH9VtJbUGyt1PJ9YRDpOu+q9FUi73LLFUZ2fD8A61g2mT1UY9k7b99+V1xZ41Rz4SHRQ==} - engines: {node: '>=18.0.0'} + '@ts-graphviz/ast@2.0.7': + resolution: {integrity: sha1-TsM0kuS06ZjUYyAw6XqffhSa+4Y=} + engines: {node: '>=18'} - '@smithy/hash-node@4.2.11': - resolution: {integrity: sha512-T+p1pNynRkydpdL015ruIoyPSRw9e/SQOWmSAMmmprfswMrd5Ow5igOWNVlvyVFZlxXqGmyH3NQwfwy8r5Jx0A==} - engines: {node: '>=18.0.0'} + '@ts-graphviz/common@2.1.5': + resolution: {integrity: sha1-olbfrqAJpbFH2Pc/JeV/tE9kYqI=} + engines: {node: '>=18'} - '@smithy/hash-stream-node@4.2.11': - resolution: {integrity: sha512-hQsTjwPCRY8w9GK07w1RqJi3e+myh0UaOWBBhZ1UMSDgofH/Q1fEYzU1teaX6HkpX/eWDdm7tAGR0jBPlz9QEQ==} - engines: {node: '>=18.0.0'} + '@ts-graphviz/core@2.0.7': + resolution: {integrity: sha1-IYXjkJkAOLJnojQcPbHO82gLvug=} + engines: {node: '>=18'} - '@smithy/invalid-dependency@4.2.11': - resolution: {integrity: sha512-cGNMrgykRmddrNhYy1yBdrp5GwIgEkniS7k9O1VLB38yxQtlvrxpZtUVvo6T4cKpeZsriukBuuxfJcdZQc/f/g==} - engines: {node: '>=18.0.0'} + '@tsconfig/node10@1.0.12': + resolution: {integrity: sha1-vlfOrB5GkrQb6d5r6MMqEGY226Q=} - '@smithy/is-array-buffer@2.2.0': - resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} - engines: {node: '>=14.0.0'} + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha1-7j3vHyfZ7WbaxuRqKVz/sBUuBY0=} - '@smithy/is-array-buffer@4.2.2': - resolution: {integrity: sha512-n6rQ4N8Jj4YTQO3YFrlgZuwKodf4zUFs7EJIWH86pSCWBaAtAGBFfCM7Wx6D2bBJ2xqFNxGBSrUWswT3M0VJow==} - engines: {node: '>=18.0.0'} + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha1-5DhjFihPALmENb9A9y91oJ2r9sE=} - '@smithy/is-array-buffer@4.4.11': - resolution: {integrity: sha512-nqehbFTACqa9NGsMTn0eRbgB8V7AGUGdmGYGSFPO4EPVvdSyMVRx0HpMVvq41OA+cF7Bn+ptmXnYrLIu28BgqQ==} - engines: {node: '>=18.0.0'} + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha1-C5LcwMwcgfbzBqOB8o4xsaVlNuk=} - '@smithy/md5-js@4.2.11': - resolution: {integrity: sha512-350X4kGIrty0Snx2OWv7rPM6p6vM7RzryvFs6B/56Cux3w3sChOb3bymo5oidXJlPcP9fIRxGUCk7GqpiSOtng==} - engines: {node: '>=18.0.0'} + '@tybys/wasm-util@0.10.3': + resolution: {integrity: sha1-AVy6np3UfOFNA9KoxdVHv7FpZl0=} - '@smithy/middleware-content-length@4.2.11': - resolution: {integrity: sha512-UvIfKYAKhCzr4p6jFevPlKhQwyQwlJ6IeKLDhmV1PlYfcW3RL4ROjNEDtSik4NYMi9kDkH7eSwyTP3vNJ/u/Dw==} - engines: {node: '>=18.0.0'} + '@types/accepts@1.3.7': + resolution: {integrity: sha1-O5ixiJ0rI4ZgTCu75i5PtR6VsmU=} - '@smithy/middleware-endpoint@4.4.23': - resolution: {integrity: sha512-UEFIejZy54T1EJn2aWJ45voB7RP2T+IRzUqocIdM6GFFa5ClZncakYJfcYnoXt3UsQrZZ9ZRauGm77l9UCbBLw==} - engines: {node: '>=18.0.0'} + '@types/async@3.2.25': + resolution: {integrity: sha1-hDn3zeJifjShWJfrgIeINdvqJCE=} - '@smithy/middleware-retry@4.4.40': - resolution: {integrity: sha512-YhEMakG1Ae57FajERdHNZ4ShOPIY7DsgV+ZoAxo/5BT0KIe+f6DDU2rtIymNNFIj22NJfeeI6LWIifrwM0f+rA==} - engines: {node: '>=18.0.0'} + '@types/babel__code-frame@7.27.0': + resolution: {integrity: sha1-R5n1l+yee73TnhN09DQjdC3P+pk=} - '@smithy/middleware-serde@4.2.12': - resolution: {integrity: sha512-W9g1bOLui7Xn5FABRVS0o3rXL0gfN37d/8I/W7i0N7oxjx9QecUmXEMSUMADTODwdtka9cN43t5BI2CodLJpng==} - engines: {node: '>=18.0.0'} + '@types/babel__core@7.20.5': + resolution: {integrity: sha1-PfFfJ7qFMZyqB7oI0HIYibs5wBc=} - '@smithy/middleware-stack@4.2.11': - resolution: {integrity: sha512-s+eenEPW6RgliDk2IhjD2hWOxIx1NKrOHxEwNUaUXxYBxIyCcDfNULZ2Mu15E3kwcJWBedTET/kEASPV1A1Akg==} - engines: {node: '>=18.0.0'} + '@types/babel__generator@7.27.0': + resolution: {integrity: sha1-tYGSlMUReZV6+uw0FEL5NB5BCKk=} - '@smithy/node-config-provider@4.3.11': - resolution: {integrity: sha512-xD17eE7kaLgBBGf5CZQ58hh2YmwK1Z0O8YhffwB/De2jsL0U3JklmhVYJ9Uf37OtUDLF2gsW40Xwwag9U869Gg==} - engines: {node: '>=18.0.0'} - - '@smithy/node-http-handler@4.4.14': - resolution: {integrity: sha512-DamSqaU8nuk0xTJDrYnRzZndHwwRnyj/n/+RqGGCcBKB4qrQem0mSDiWdupaNWdwxzyMU91qxDmHOCazfhtO3A==} - engines: {node: '>=18.0.0'} - - '@smithy/property-provider@4.2.11': - resolution: {integrity: sha512-14T1V64o6/ndyrnl1ze1ZhyLzIeYNN47oF/QU6P5m82AEtyOkMJTb0gO1dPubYjyyKuPD6OSVMPDKe+zioOnCg==} - engines: {node: '>=18.0.0'} - - '@smithy/protocol-http@5.3.11': - resolution: {integrity: sha512-hI+barOVDJBkNt4y0L2mu3Ugc0w7+BpJ2CZuLwXtSltGAAwCb3IvnalGlbDV/UCS6a9ZuT3+exd1WxNdLb5IlQ==} - engines: {node: '>=18.0.0'} - - '@smithy/querystring-builder@4.2.11': - resolution: {integrity: sha512-7spdikrYiljpket6u0up2Ck2mxhy7dZ0+TDd+S53Dg2DHd6wg+YNJrTCHiLdgZmEXZKI7LJZcwL3721ZRDFiqA==} - engines: {node: '>=18.0.0'} - - '@smithy/querystring-parser@4.2.11': - resolution: {integrity: sha512-nE3IRNjDltvGcoThD2abTozI1dkSy8aX+a2N1Rs55en5UsdyyIXgGEmevUL3okZFoJC77JgRGe99xYohhsjivQ==} - engines: {node: '>=18.0.0'} - - '@smithy/service-error-classification@4.2.11': - resolution: {integrity: sha512-HkMFJZJUhzU3HvND1+Yw/kYWXp4RPDLBWLcK1n+Vqw8xn4y2YiBhdww8IxhkQjP/QlZun5bwm3vcHc8AqIU3zw==} - engines: {node: '>=18.0.0'} - - '@smithy/shared-ini-file-loader@4.4.6': - resolution: {integrity: sha512-IB/M5I8G0EeXZTHsAxpx51tMQ5R719F3aq+fjEB6VtNcCHDc0ajFDIGDZw+FW9GxtEkgTduiPpjveJdA/CX7sw==} - engines: {node: '>=18.0.0'} - - '@smithy/signature-v4@5.3.11': - resolution: {integrity: sha512-V1L6N9aKOBAN4wEHLyqjLBnAz13mtILU0SeDrjOaIZEeN6IFa6DxwRt1NNpOdmSpQUfkBj0qeD3m6P77uzMhgQ==} - engines: {node: '>=18.0.0'} - - '@smithy/smithy-client@4.12.3': - resolution: {integrity: sha512-7k4UxjSpHmPN2AxVhvIazRSzFQjWnud3sOsXcFStzagww17j1cFQYqTSiQ8xuYK3vKLR1Ni8FzuT3VlKr3xCNw==} - engines: {node: '>=18.0.0'} - - '@smithy/types@4.13.0': - resolution: {integrity: sha512-COuLsZILbbQsdrwKQpkkpyep7lCsByxwj7m0Mg5v66/ZTyenlfBc40/QFQ5chO0YN/PNEH1Bi3fGtfXPnYNeDw==} - engines: {node: '>=18.0.0'} - - '@smithy/types@4.16.1': - resolution: {integrity: sha512-0JFs3V2y2M9tKW5na/qxe69Zv+uxLMO7QBbhxF/FHu/Gp2NFZAAL9tWl9PU02xxo07pb3G9FTyjNc6D5uZrJIg==} - engines: {node: '>=18.0.0'} - - '@smithy/url-parser@4.2.11': - resolution: {integrity: sha512-oTAGGHo8ZYc5VZsBREzuf5lf2pAurJQsccMusVZ85wDkX66ojEc/XauiGjzCj50A61ObFTPe6d7Pyt6UBYaing==} - engines: {node: '>=18.0.0'} - - '@smithy/util-base64@4.3.2': - resolution: {integrity: sha512-XRH6b0H/5A3SgblmMa5ErXQ2XKhfbQB+Fm/oyLZ2O2kCUrwgg55bU0RekmzAhuwOjA9qdN5VU2BprOvGGUkOOQ==} - engines: {node: '>=18.0.0'} - - '@smithy/util-body-length-browser@4.2.2': - resolution: {integrity: sha512-JKCrLNOup3OOgmzeaKQwi4ZCTWlYR5H4Gm1r2uTMVBXoemo1UEghk5vtMi1xSu2ymgKVGW631e2fp9/R610ZjQ==} - engines: {node: '>=18.0.0'} - - '@smithy/util-body-length-node@4.2.3': - resolution: {integrity: sha512-ZkJGvqBzMHVHE7r/hcuCxlTY8pQr1kMtdsVPs7ex4mMU+EAbcXppfo5NmyxMYi2XU49eqaz56j2gsk4dHHPG/g==} - engines: {node: '>=18.0.0'} - - '@smithy/util-buffer-from@2.2.0': - resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} - engines: {node: '>=14.0.0'} - - '@smithy/util-buffer-from@4.2.2': - resolution: {integrity: sha512-FDXD7cvUoFWwN6vtQfEta540Y/YBe5JneK3SoZg9bThSoOAC/eGeYEua6RkBgKjGa/sz6Y+DuBZj3+YEY21y4Q==} - engines: {node: '>=18.0.0'} - - '@smithy/util-config-provider@4.2.2': - resolution: {integrity: sha512-dWU03V3XUprJwaUIFVv4iOnS1FC9HnMHDfUrlNDSh4315v0cWyaIErP8KiqGVbf5z+JupoVpNM7ZB3jFiTejvQ==} - engines: {node: '>=18.0.0'} - - '@smithy/util-defaults-mode-browser@4.3.39': - resolution: {integrity: sha512-ui7/Ho/+VHqS7Km2wBw4/Ab4RktoiSshgcgpJzC4keFPs6tLJS4IQwbeahxQS3E/w98uq6E1mirCH/id9xIXeQ==} - engines: {node: '>=18.0.0'} - - '@smithy/util-defaults-mode-node@4.2.42': - resolution: {integrity: sha512-QDA84CWNe8Akpj15ofLO+1N3Rfg8qa2K5uX0y6HnOp4AnRYRgWrKx/xzbYNbVF9ZsyJUYOfcoaN3y93wA/QJ2A==} - engines: {node: '>=18.0.0'} - - '@smithy/util-endpoints@3.3.2': - resolution: {integrity: sha512-+4HFLpE5u29AbFlTdlKIT7jfOzZ8PDYZKTb3e+AgLz986OYwqTourQ5H+jg79/66DB69Un1+qKecLnkZdAsYcA==} - engines: {node: '>=18.0.0'} - - '@smithy/util-hex-encoding@4.2.2': - resolution: {integrity: sha512-Qcz3W5vuHK4sLQdyT93k/rfrUwdJ8/HZ+nMUOyGdpeGA1Wxt65zYwi3oEl9kOM+RswvYq90fzkNDahPS8K0OIg==} - engines: {node: '>=18.0.0'} - - '@smithy/util-hex-encoding@4.4.11': - resolution: {integrity: sha512-oCnZKHTS2xUGjOLo2RmzDI19ReaC0aXWJ/u8FuvgYahHD0BvkEzXB3zJz1idgbk1sWjQdVRmaFMOvaQEMCQKBA==} - engines: {node: '>=18.0.0'} - - '@smithy/util-middleware@4.2.11': - resolution: {integrity: sha512-r3dtF9F+TpSZUxpOVVtPfk09Rlo4lT6ORBqEvX3IBT6SkQAdDSVKR5GcfmZbtl7WKhKnmb3wbDTQ6ibR2XHClw==} - engines: {node: '>=18.0.0'} - - '@smithy/util-retry@4.2.11': - resolution: {integrity: sha512-XSZULmL5x6aCTTii59wJqKsY1l3eMIAomRAccW7Tzh9r8s7T/7rdo03oektuH5jeYRlJMPcNP92EuRDvk9aXbw==} - engines: {node: '>=18.0.0'} - - '@smithy/util-stream@4.5.17': - resolution: {integrity: sha512-793BYZ4h2JAQkNHcEnyFxDTcZbm9bVybD0UV/LEWmZ5bkTms7JqjfrLMi2Qy0E5WFcCzLwCAPgcvcvxoeALbAQ==} - engines: {node: '>=18.0.0'} - - '@smithy/util-uri-escape@4.2.2': - resolution: {integrity: sha512-2kAStBlvq+lTXHyAZYfJRb/DfS3rsinLiwb+69SstC9Vb0s9vNWkRwpnj918Pfi85mzi42sOqdV72OLxWAISnw==} - engines: {node: '>=18.0.0'} - - '@smithy/util-utf8@2.3.0': - resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} - engines: {node: '>=14.0.0'} - - '@smithy/util-utf8@4.2.2': - resolution: {integrity: sha512-75MeYpjdWRe8M5E3AW0O4Cx3UadweS+cwdXjwYGBW5h/gxxnbeZ877sLPX/ZJA9GVTlL/qG0dXP29JWFCD1Ayw==} - engines: {node: '>=18.0.0'} - - '@smithy/util-waiter@4.2.11': - resolution: {integrity: sha512-x7Rh2azQPs3XxbvCzcttRErKKvLnbZfqRf/gOjw2pb+ZscX88e5UkRPCB67bVnsFHxayvMvmePfKTqsRb+is1A==} - engines: {node: '>=18.0.0'} - - '@smithy/uuid@1.1.2': - resolution: {integrity: sha512-O/IEdcCUKkubz60tFbGA7ceITTAJsty+lBjNoorP4Z6XRqaFb/OjQjZODophEcuq68nKm6/0r+6/lLQ+XVpk8g==} - engines: {node: '>=18.0.0'} - - '@swc/helpers@0.5.15': - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} - - '@szmarczak/http-timer@4.0.6': - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - - '@textlint/ast-node-types@14.7.1': - resolution: {integrity: sha512-7C/xYNZtaG+erIMjNZbRz7av9/S5eC+GAMh0rJ6A9Hik6nS4WyWKblutw2p+O2YWWT2tmOjzu/81fWzzDzmtRg==} - - '@textlint/linter-formatter@14.7.1': - resolution: {integrity: sha512-saAE+e4RZFInRmCF9pu7ukZAHxWaYw9WIA1PptYHItCnlyGS7WB7cYHilkj4coWGr3xGaQ2qAjqX/QIbVE7QGA==} - - '@textlint/module-interop@14.7.1': - resolution: {integrity: sha512-9mfLErTFx8N+tZNTL+46YCY/jnCDOJKpceng5WVwDeZeMJbewhjY3PVcxMoPnvPT10QnE/hDk3b6riUYckgHgw==} - - '@textlint/resolver@14.7.1': - resolution: {integrity: sha512-lQ5ATfpsOgiYnwe2aoS0t9uJ4SrvyiCJpfJdqUQZCVL161O/yMKZBc6nwsyBlruEcFoNxK06F3s3IIV4EsI12A==} - - '@textlint/types@14.7.1': - resolution: {integrity: sha512-j10OEEHRAaqGMC6dK3+H1Eg3bksASGTmGDozsSepYs7qInY+lYBCe5m3JTrKkDnAX4nNy8ninnKzrYKcVkWahw==} - - '@tootallnate/quickjs-emscripten@0.23.0': - resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - - '@ts-graphviz/adapter@2.0.6': - resolution: {integrity: sha512-kJ10lIMSWMJkLkkCG5gt927SnGZcBuG0s0HHswGzcHTgvtUe7yk5/3zTEr0bafzsodsOq5Gi6FhQeV775nC35Q==} - engines: {node: '>=18'} - - '@ts-graphviz/ast@2.0.7': - resolution: {integrity: sha512-e6+2qtNV99UT6DJSoLbHfkzfyqY84aIuoV8Xlb9+hZAjgpum8iVHprGeAMQ4rF6sKUAxrmY8rfF/vgAwoPc3gw==} - engines: {node: '>=18'} - - '@ts-graphviz/common@2.1.5': - resolution: {integrity: sha512-S6/9+T6x8j6cr/gNhp+U2olwo1n0jKj/682QVqsh7yXWV6ednHYqxFw0ZsY3LyzT0N8jaZ6jQY9YD99le3cmvg==} - engines: {node: '>=18'} - - '@ts-graphviz/core@2.0.7': - resolution: {integrity: sha512-w071DSzP94YfN6XiWhOxnLpYT3uqtxJBDYdh6Jdjzt+Ce6DNspJsPQgpC7rbts/B8tEkq0LHoYuIF/O5Jh5rPg==} - engines: {node: '>=18'} - - '@tsconfig/node10@1.0.12': - resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==} - - '@tsconfig/node12@1.0.11': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - - '@tsconfig/node14@1.0.3': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - - '@tsconfig/node16@1.0.4': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - - '@tybys/wasm-util@0.10.3': - resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} - - '@types/accepts@1.3.7': - resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} - - '@types/async@3.2.24': - resolution: {integrity: sha512-8iHVLHsCCOBKjCF2KwFe0p9Z3rfM9mL+sSP8btyR5vTjJRAqpBYD28/ZLgXPf0pjG1VxOvtCV/BgXkQbpSe8Hw==} - - '@types/babel__code-frame@7.27.0': - resolution: {integrity: sha512-Dwlo+LrxDx/0SpfmJ/BKveHf7QXWvLBLc+x03l5sbzykj3oB9nHygCpSECF1a+s+QIxbghe+KHqC90vGtxLRAA==} - - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - - '@types/babel__generator@7.27.0': - resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} - - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': + resolution: {integrity: sha1-VnJRNwHBshmbxtrWNqnXSRWGdm8=} '@types/babel__traverse@7.28.0': - resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} - - '@types/better-sqlite3@7.6.11': - resolution: {integrity: sha512-i8KcD3PgGtGBLl3+mMYA8PdKkButvPyARxA7IQAd6qeslht13qxb1zzO8dRCtE7U3IoJS782zDBAeoKiM695kg==} + resolution: {integrity: sha1-B9cT1szg0mXJhJ2wy+YtP2Hzb3Q=} '@types/better-sqlite3@7.6.13': - resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==} + resolution: {integrity: sha1-pyOH8A0vU8q2meY/LiwFRTz5U/A=} '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - - '@types/body-parser@1.19.6': - resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} + resolution: {integrity: sha1-BM6aO2d9yL1oGhfaGrmDXcnT7eQ=} '@types/bonjour@3.5.13': - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + resolution: {integrity: sha1-rfkM4aEF6B3R+cYf3Fr9ob+5KVY=} '@types/cacheable-request@6.0.3': - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + resolution: {integrity: sha1-pDCzJgRmyntcpb/XNWk7Nuep0YM=} '@types/chai-dom@1.11.3': - resolution: {integrity: sha512-EUEZI7uID4ewzxnU7DJXtyvykhQuwe+etJ1wwOiJyQRTH/ifMWKX+ghiXkxCUvNJ6IQDodf0JXhuP6zZcy2qXQ==} + resolution: {integrity: sha1-Flms4mmM3NntiywAeHb1PjfZzIk=} '@types/chai@4.3.20': - resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==} + resolution: {integrity: sha1-yykVd+00LKkmAEMIQaADKboFzsw=} '@types/chai@5.2.3': - resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + resolution: {integrity: sha1-jpzZ4cNYH6azQaWu1ViOsoW+C0o=} '@types/chrome@0.0.114': - resolution: {integrity: sha512-i7qRr74IrxHtbnrZSKUuP5Uvd5EOKwlwJq/yp7+yTPihOXnPhNQO4Z5bqb1XTnrjdbUKEJicaVVbhcgtRijmLA==} + resolution: {integrity: sha1-jOsz+iYfS54wf6c0S6gYLY1BDU4=} '@types/chrome@0.0.256': - resolution: {integrity: sha512-NleTQw4DNzhPwObLNuQ3i3nvX1rZ1mgnx5FNHc2KP+Cj1fgd3BrT5yQ6Xvs+7H0kNsYxCY+lxhiCwsqq3JwtEg==} + resolution: {integrity: sha1-NmtS+PWi2BGa3p7vJRlpLm+Yf/g=} '@types/chrome@0.0.278': - resolution: {integrity: sha512-PDIJodOu7o54PpSOYLybPW/MDZBCjM1TKgf31I3Q/qaEbNpIH09rOM3tSEH3N7Q+FAqb1933LhF8ksUPYeQLNg==} + resolution: {integrity: sha1-9/78DdS2alS96ilQxf1zl8cpk40=} '@types/co-body@6.1.3': - resolution: {integrity: sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA==} + resolution: {integrity: sha1-IBeWxjiQZrQAz8tOHsXD23mCZaI=} '@types/command-line-args@5.2.3': - resolution: {integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==} - - '@types/command-line-usage@5.0.4': - resolution: {integrity: sha512-BwR5KP3Es/CSht0xqBcUXS3qCAUVXwpRKsV2+arxeb65atasuXG9LykC9Ab10Cw3s2raH92ZqOeILaQbsB2ACg==} + resolution: {integrity: sha1-VTzi/VrPFgtEjTB2SbOP/GDTljk=} '@types/connect-history-api-fallback@1.5.4': - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + resolution: {integrity: sha1-fecWRaEDBWtIrDzgezUguBnB1bM=} '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + resolution: {integrity: sha1-W6fzvE+73q/43e2VLl/yzFP42Fg=} '@types/content-disposition@0.5.9': - resolution: {integrity: sha512-8uYXI3Gw35MhiVYhG3s295oihrxRyytcRHjSjqnqZVDDy/xcGBRny7+Xj1Wgfhv5QzRtN2hB2dVRBUX9XW3UcQ==} + resolution: {integrity: sha1-AMoUk5Qyhp3oKaTM9v04D6kYF1A=} '@types/convert-source-map@2.0.3': - resolution: {integrity: sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==} + resolution: {integrity: sha1-5YbCLKSvLWcNR9Mtf+Nl1cVVhpU=} '@types/cookies@0.9.2': - resolution: {integrity: sha512-1AvkDdZM2dbyFybL4fxpuNCaWyv//0AwsuUk2DWeXyM1/5ZKm6W3z6mQi24RZ4l2ucY+bkSHzbDVpySqPGuV8A==} + resolution: {integrity: sha1-zN+G14Ly3qNFMd0yczolvkgXfNQ=} - '@types/cors@2.8.18': - resolution: {integrity: sha512-nX3d0sxJW41CqQvfOzVG1NCTXfFDrDWIghCZncpHeWlVFd81zxB/DLhg7avFg6eHLCRX7ckBmoIIcqa++upvJA==} + '@types/cors@2.8.19': + resolution: {integrity: sha1-2T6iZz/YyfaXNn9e7vwrv6lPA0I=} - '@types/cytoscape-dagre@2.3.3': - resolution: {integrity: sha512-FJBsNMbBZpqNwT6rp5leVYMevWUjnyD1QS8erNMAMWoBifvaVUklXIjE+bllLDSowjM3abXuRvljliSXUU+d1A==} + '@types/cytoscape-dagre@2.3.4': + resolution: {integrity: sha1-0FKUVDtPc0Af3feNF7qJCSAc4Co=} - '@types/cytoscape@3.21.9': - resolution: {integrity: sha512-JyrG4tllI6jvuISPjHK9j2Xv/LTbnLekLke5otGStjFluIyA9JjgnvgZrSBsp8cEDpiTjwgZUZwpPv8TSBcoLw==} + '@types/cytoscape@3.31.0': + resolution: {integrity: sha1-TLPsB8LzMcGriv+SouUnFkM9zk4=} + deprecated: This is a stub types definition. cytoscape provides its own type definitions, so you do not need this installed. '@types/d3-array@3.2.2': - resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==} + resolution: {integrity: sha1-4CFRRk0C1KG0RkbQ/NuT+viP3ow=} '@types/d3-axis@3.0.6': - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + resolution: {integrity: sha1-52DldluBiLHe+jK8i7YGL4Hkx5U=} '@types/d3-brush@3.0.6': - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + resolution: {integrity: sha1-wvQ2KwRdRy4bGGzb7DKbpSva7mw=} '@types/d3-chord@3.0.6': - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + resolution: {integrity: sha1-FwbKQM9+pZoK3Y9EVu//j4d1eT0=} '@types/d3-color@3.1.3': - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + resolution: {integrity: sha1-NoyWGhjech2oIA6AvzlD+1MTavI=} '@types/d3-contour@3.0.6': - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + resolution: {integrity: sha1-mto/qcTQDjpQk/7QNWx6uSlgQjE=} '@types/d3-delaunay@6.0.4': - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + resolution: {integrity: sha1-GFwagMyAf92io/6WD3wRxKJ5UuE=} '@types/d3-dispatch@3.0.7': - resolution: {integrity: sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==} + resolution: {integrity: sha1-7wBNihKARs/OQ00XGC+DTkTvlbI=} '@types/d3-drag@3.0.7': - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + resolution: {integrity: sha1-sTq6iyRCtAaMmp5tHYL4vOp3/AI=} '@types/d3-dsv@3.0.7': - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + resolution: {integrity: sha1-CjUfmW3Jmzf0+li0ksLRwE49rBc=} '@types/d3-ease@3.0.2': - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + resolution: {integrity: sha1-4o2xv7+mFwdvd3DdHZpI6qO2xRs=} '@types/d3-fetch@3.0.7': - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + resolution: {integrity: sha1-wEorTyMYGqN28wrwKD28eztWmYA=} '@types/d3-force@3.0.10': - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + resolution: {integrity: sha1-bcj8bh81cE87BXCQvu63rGdL/xo=} '@types/d3-format@3.0.4': - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + resolution: {integrity: sha1-seRGVkTds/3zomP+uyQKbNYW3pA=} '@types/d3-geo@3.1.0': - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + resolution: {integrity: sha1-ueVqB5RJF08KLIaEqaTfP2BSJEA=} '@types/d3-hierarchy@3.1.7': - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + resolution: {integrity: sha1-YCP7Oy1GMiny1oD5rEtHRm9x8Xs=} '@types/d3-interpolate@3.0.4': - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + resolution: {integrity: sha1-QSuQ6EhwKF8v+KhGxutgNE8SpBw=} '@types/d3-path@3.1.1': - resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==} + resolution: {integrity: sha1-9jKzgMOsoduo40qgSbzWpK8j34o=} '@types/d3-polygon@3.0.2': - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + resolution: {integrity: sha1-365UptNdGedqyVZbyzKo5UaTGJw=} '@types/d3-quadtree@3.0.6': - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + resolution: {integrity: sha1-1HQLD+NbHFi2bhSI9OftApUvVw8=} - '@types/d3-random@3.0.3': - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + '@types/d3-random@3.0.4': + resolution: {integrity: sha1-a9NoO4My/A8B5wWbdja8XH7eczc=} '@types/d3-scale-chromatic@3.1.0': - resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==} + resolution: {integrity: sha1-3G1Pmpg3bxjqULrWw5U38bVGPDk=} '@types/d3-scale@4.0.9': - resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==} + resolution: {integrity: sha1-V6L3ByQub+Hega17/Myq9gYXmvs=} '@types/d3-selection@3.0.11': - resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==} + resolution: {integrity: sha1-vXpF/AqMMWemMWdeYbwsorBY1KM=} '@types/d3-shape@3.1.8': - resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==} + resolution: {integrity: sha1-0VFsxQh1O+BoUs0GdY47tUoisOM=} '@types/d3-time-format@4.0.3': - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + resolution: {integrity: sha1-1rwea2p9tpzM+73Uw0twYy2enbI=} '@types/d3-time@3.0.4': - resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==} + resolution: {integrity: sha1-hHL+7NY5aRRQ3YAA6zPt1EThMj8=} '@types/d3-timer@3.0.2': - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + resolution: {integrity: sha1-cLvad9wjqnJ0E+IuIUr6Pw6FL3A=} '@types/d3-transition@3.0.9': - resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==} + resolution: {integrity: sha1-ETa8V+nds8OQ3MybX/O30rjZRwY=} '@types/d3-zoom@3.0.8': - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + resolution: {integrity: sha1-3Msy0cVrHhxuDxGA2ZSJbwOLxAs=} '@types/d3@7.4.3': - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + resolution: {integrity: sha1-1FUKhdCPSXj68KTDa4SMYeqsB+I=} - '@types/dagre@0.7.52': - resolution: {integrity: sha512-XKJdy+OClLk3hketHi9Qg6gTfe1F3y+UFnHxKA2rn9Dw+oXa4Gb378Ztz9HlMgZKSxpPmn4BNVh9wgkpvrK1uw==} + '@types/dagre@0.7.54': + resolution: {integrity: sha1-Tzvio/iZOLBIMBNzk2Kkd+yXioQ=} '@types/debounce@1.2.4': - resolution: {integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + resolution: {integrity: sha1-y36F2a1aur+sLycYPorItXayq7M=} '@types/debug@4.1.13': - resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==} + resolution: {integrity: sha1-ItHMnVQtNZPK6nZPl0MGqzYobuc=} '@types/deep-eql@4.0.2': - resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} - - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - - '@types/eslint@9.6.1': - resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + resolution: {integrity: sha1-M0MRlx06BxIefrkbaEpgXn7qnL0=} '@types/esrecurse@4.3.1': - resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==} - - '@types/estree@1.0.8': - resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + resolution: {integrity: sha1-b2Nq+WL75hkbgwvWdrpZhpJrzOw=} '@types/estree@1.0.9': - resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} - - '@types/express-serve-static-core@4.17.41': - resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} - - '@types/express-serve-static-core@4.19.8': - resolution: {integrity: sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==} + resolution: {integrity: sha1-zz8Oh2177hWpOrkluCv1cKOQSiQ=} - '@types/express-serve-static-core@5.1.2': - resolution: {integrity: sha512-d3KvEXBSo/lOAMc2u6fkyDHBvetBHeqD7wm/AcXfLpSOQwlmG9D/aQ0SFswVjv05p7ullQS7Mjohj6/VdbZuTg==} - - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/express-serve-static-core@4.19.9': + resolution: {integrity: sha1-t0aou2w4mvejEUE5e7U593WwroQ=} '@types/express@4.17.25': - resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==} - - '@types/express@5.0.6': - resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==} + resolution: {integrity: sha1-BwyMc6b+5pNtZcGV27+32lAmZJs=} '@types/fast-levenshtein@0.0.4': - resolution: {integrity: sha512-tkDveuitddQCxut1Db8eEFfMahTjOumTJGPHmT9E7KUH+DkVq9WTpVvlfenf3S+uCBeu8j5FP2xik/KfxOEjeA==} + resolution: {integrity: sha1-oW/2YHGJ7fCKxjHlS1d0sPrxLYc=} '@types/file-size@1.0.3': - resolution: {integrity: sha512-2HOqIo9ng92X1aGRF7Sz3fn1LWA4aU9gAKotykOcXHIFDOKgB4kTYMiFmhdK+X1SBiaqmq2uakpSYQn6QJCnyg==} - - '@types/filesystem@0.0.35': - resolution: {integrity: sha512-1eKvCaIBdrD2mmMgy5dwh564rVvfEhZTWVQQGRNn0Nt4ZEnJ0C8oSUCzvMKRA4lGde5oEVo+q2MrTTbV/GHDCQ==} + resolution: {integrity: sha1-mlzeIQ9nxaoV1bIlH2cZ8vgCDWo=} '@types/filesystem@0.0.36': - resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} + resolution: {integrity: sha1-cifC12v+0bIYGdsxCBbHgh0wOFc=} '@types/filewriter@0.0.33': - resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} + resolution: {integrity: sha1-2dYR252c2Zrk5FjeQg7rZK1gTqg=} '@types/find-config@1.0.4': - resolution: {integrity: sha512-BCXaKgzHK7KnfCQBRQBWGTA+QajOE9uFolXPt+9EktiiMS56D8oXF2ZCh9eCxuEyfqDmX/mYIcmWg9j9f659eg==} + resolution: {integrity: sha1-a/kJOC3hqJgjP4pvgtg+5zntpWs=} - '@types/firefox-webext-browser@120.0.4': - resolution: {integrity: sha512-lBrpf08xhiZBigrtdQfUaqX1UauwZ+skbFiL8u2Tdra/rklkKadYmIzTwkNZSWtuZ7OKpFqbE2HHfDoFqvZf6w==} + '@types/firefox-webext-browser@120.0.5': + resolution: {integrity: sha1-avYykecND9x8TsQLFfcAJstkRyQ=} '@types/fs-extra@11.0.4': - resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + resolution: {integrity: sha1-4WqGO7iEP7qMUAQ2K1pz4XvsykU=} '@types/fs-extra@9.0.13': - resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} + resolution: {integrity: sha1-dZT7rgT+fxkYzos9IT90/0SsH0U=} '@types/geojson@7946.0.16': - resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} + resolution: {integrity: sha1-jr5T1p762nBERU4zBcGQF9l87So=} '@types/glob@7.2.0': - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + resolution: {integrity: sha1-vBtb86qS8lvV3TnzXFc2G9zlsus=} '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - - '@types/har-format@1.2.15': - resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==} + resolution: {integrity: sha1-Kga8D2iiCrN7PjaqI4vmq99J6LQ=} '@types/har-format@1.2.16': - resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} + resolution: {integrity: sha1-tx7ehoFADMCLNoXwYcMeQWz5SUQ=} - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/hast@3.0.5': + resolution: {integrity: sha1-SAIN5MDmNJL0yp20IGjBCPaLf48=} '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + resolution: {integrity: sha1-T8M6AMHQwWmHsaIM+S0gYUxVrDU=} '@types/html-to-text@9.0.4': - resolution: {integrity: sha512-pUY3cKH/Nm2yYrEmDlPR1mR7yszjGx4DrwPjQ702C4/D5CwHuZTgZdIdwPkRbcuhs7BAh2L5rg3CL5cbRiGTCQ==} + resolution: {integrity: sha1-SoPdiui/qRRX0LH/wm9NBTfv9Yw=} '@types/http-assert@1.5.6': - resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==} + resolution: {integrity: sha1-trZXw4ojUNIc4hMTnzOwOytfpDE=} '@types/http-cache-semantics@4.2.0': - resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} - - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + resolution: {integrity: sha1-9qd4j0OMv94V8prK1GUStMAZE7M=} '@types/http-errors@2.0.5': - resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} + resolution: {integrity: sha1-W3SasrFroRNCP+saZKldzTA5hHI=} '@types/http-proxy@1.17.17': - resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==} + resolution: {integrity: sha1-2eLEVx/jUHNDyyEM1BeQN15ZpTM=} '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/istanbul-lib-report@3.0.2': - resolution: {integrity: sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==} + resolution: {integrity: sha1-dznCMqH+6bTTzomF8xTAxtM1Sdc=} '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - - '@types/istanbul-reports@3.0.3': - resolution: {integrity: sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==} + resolution: {integrity: sha1-UwR2FK5y4Z/AQB2HLeOuK0zjUL8=} '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + resolution: {integrity: sha1-DwPj0vZw+9rFhuNLQzeDBwzBb1Q=} '@types/jest@29.5.14': - resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} + resolution: {integrity: sha1-K5EJEvodaFbK3NDB+Vr33x1gSeU=} - '@types/jquery@3.5.32': - resolution: {integrity: sha512-b9Xbf4CkMqS02YH8zACqN1xzdxc3cO735Qe5AbSUFmyOiaWAbcpqh9Wna+Uk0vgACvoQHpWDg2rGdHkYPLmCiQ==} + '@types/jquery@3.5.34': + resolution: {integrity: sha1-wZk+qsDbA8+duXSXbdjwe798Vwg=} '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} + resolution: {integrity: sha1-zYI4LE+QL+2WkaLteexoxYmK9MI=} '@types/jsdom@20.0.1': - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + resolution: {integrity: sha1-B8FLwZvS+RjBkpVBzarK6JR0SAg=} - '@types/jsdom@28.0.0': - resolution: {integrity: sha512-A8TBQQC/xAOojy9kM8E46cqT00sF0h7dWjV8t8BJhUi2rG6JRh7XXQo/oLoENuZIQEpXsxLccLCnknyQd7qssQ==} + '@types/jsdom@28.0.3': + resolution: {integrity: sha1-pakArk1bsdh03uJKia/AazTTwaA=} '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + resolution: {integrity: sha1-WWoXRyM2lNUPatinhp/Lb1bPWEE=} '@types/jsonfile@6.1.4': - resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + resolution: {integrity: sha1-YUr+waEWTn1nC0p61k3z5763twI=} '@types/jsonpath@0.2.4': - resolution: {integrity: sha512-K3hxB8Blw0qgW6ExKgMbXQv2UPZBoE2GqLpVY+yr7nMD2Pq86lsuIzyAaiQ7eMqFL5B6di6pxSkogLJEyEHoGA==} + resolution: {integrity: sha1-BlvlmYHBQggyg1r2Vjd2IicRVL4=} - '@types/katex@0.16.7': - resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} + '@types/katex@0.16.8': + resolution: {integrity: sha1-gL8+CBTQmoRkEqCw8UCUa3nDbD4=} '@types/keygrip@1.0.6': - resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} + resolution: {integrity: sha1-F0lTUYGiqbAqwEp5dVCoeHNFt0A=} '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + resolution: {integrity: sha1-PM2xxnUbDH5SMAvNrNW8v4+qdbY=} '@types/koa-compose@3.2.9': - resolution: {integrity: sha512-BroAZ9FTvPiCy0Pi8tjD1OfJ7bgU1gQf0eR6e1Vm+JJATy9eKOG3hQMFtMciMawiSOVnLMdmUOC46s7HBhSTsA==} + resolution: {integrity: sha1-bvuUXuVXO+D07dtyii9oJvej85U=} - '@types/koa@2.15.0': - resolution: {integrity: sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==} + '@types/koa@2.15.2': + resolution: {integrity: sha1-zFcKcBcHE7Gra5M4TKv0lDolZ4s=} '@types/linkify-it@5.0.0': - resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} + resolution: {integrity: sha1-IUEwAZcxBs2hw6m5Hu3UzNVGnXY=} '@types/lodash-es@4.17.12': - resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} - - '@types/lodash.debounce@4.0.9': - resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==} - - '@types/lodash.throttle@4.1.9': - resolution: {integrity: sha512-PCPVfpfueguWZQB7pJQK890F2scYKoDUL3iM522AptHWn7d5NQmeS/LTEHIcLr5PaTzl3dK2Z0xSUHHTHwaL5g==} - - '@types/lodash@4.17.17': - resolution: {integrity: sha512-RRVJ+J3J+WmyOTqnz3PiBLA501eKwXl2noseKOrNo/6+XEHjTAxO4xHvxQB6QuNm+s4WRbn6rSiap8+EA+ykFQ==} + resolution: {integrity: sha1-ZfbR5fgFOap8+/yWLeXe8M9PNBs=} '@types/lodash@4.17.24': - resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==} + resolution: {integrity: sha1-SuM0/GLA6RXKjtjjXcxtTuspIV8=} '@types/mailparser@3.4.6': - resolution: {integrity: sha512-wVV3cnIKzxTffaPH8iRnddX1zahbYB1ZEoAxyhoBo3TBCBuK6nZ8M8JYO/RhsCuuBVOw/DEN/t/ENbruwlxn6Q==} + resolution: {integrity: sha1-/MqZ/p+Rnz2mkaC/XjAixig8MGg=} '@types/markdown-it@14.1.2': - resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} + resolution: {integrity: sha1-V/JTKggABn2bk081IUKaLov7TGE=} '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + resolution: {integrity: sha1-fM9y7dLxqn3TQ34YDGQ3NYWATdY=} '@types/mdurl@2.0.0': - resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} + resolution: {integrity: sha1-1Dh4tbICImghY65viXsgRHIzvf0=} '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - - '@types/mime@3.0.4': - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} + resolution: {integrity: sha1-HvMC4Bz30rWg+lJnkMkSO/HQZpA=} '@types/minimatch@3.0.5': - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + resolution: {integrity: sha1-EAHMXmo3BLg8I2An538vWOoBD0A=} '@types/minimatch@6.0.0': - resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==} + resolution: {integrity: sha1-TSB7HMlBNnvc0ZWjp4Gn5Pw7HgM=} deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed. '@types/mocha@10.0.10': - resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==} - - '@types/ms@0.7.33': - resolution: {integrity: sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==} + resolution: {integrity: sha1-kfYpBejSPL1mIlMS8jlFSiO+v6A=} '@types/ms@2.1.0': - resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + resolution: {integrity: sha1-BSqmekjszEMJ1/AZG35BQ0uQu3g=} - '@types/node-fetch@2.6.12': - resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==} + '@types/node-fetch@2.6.13': + resolution: {integrity: sha1-4Mm3te29sbUM4ywSfoXogIctVu4=} '@types/node@18.19.130': - resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==} - - '@types/node@20.19.40': - resolution: {integrity: sha512-xxx6M2IpSTnnKcR0cMvIiohkiCx20/oRPtWGbenFygKCGl3zqUzdNjQ/1V4solq1LU+dgv0nQzeGOuqkqZGg0Q==} + resolution: {integrity: sha1-2kxjJHk6ed77emLLo5R+xa3QDVk=} '@types/node@20.19.43': - resolution: {integrity: sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==} - - '@types/node@22.15.18': - resolution: {integrity: sha512-v1DKRfUdyW+jJhZNEI1PYy29S2YRxMV5AOO/x/SjKmW0acCIOqmbj6Haf9eHAhsPmrhlHSxEhv/1WszcLWV4cg==} - - '@types/node@22.19.19': - resolution: {integrity: sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==} + resolution: {integrity: sha1-/Oz1gLpCoNtVz0BMNyyXlzw3bJc=} '@types/node@22.20.1': - resolution: {integrity: sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==} + resolution: {integrity: sha1-hOfN9jzaogwTSqMXzMkBqiHhbw4=} '@types/node@24.13.3': - resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==} - - '@types/node@26.1.1': - resolution: {integrity: sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw==} + resolution: {integrity: sha1-SfGL08ZHhm3NpRoHVsFF4UWQzhY=} '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + resolution: {integrity: sha1-VuLMJsOXwDj6sOOpF6EtXFkJ6QE=} '@types/parse5@6.0.3': - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} + resolution: {integrity: sha1-cFuzSeeJ76BvQ/EozvUSQHU0JMs=} '@types/plist@3.0.5': - resolution: {integrity: sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==} + resolution: {integrity: sha1-mgxJwPmIbIyGlqeQTdcD9ihANuA=} - '@types/prismjs@1.26.5': - resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==} + '@types/prismjs@1.26.6': + resolution: {integrity: sha1-bqJ8Em1kUxmuT3BV7aY6noNcAYc=} - '@types/prop-types@15.7.14': - resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==} + '@types/prop-types@15.7.15': + resolution: {integrity: sha1-5uWobWAr6spxzlFj+t9fldcJMcc=} '@types/proper-lockfile@4.1.4': - resolution: {integrity: sha512-uo2ABllncSqg9F1D4nugVl9v93RmjxF6LJzQLMLDdPaXCUIDPeOJ21Gbqi43xNKzBi/WQ0Q0dICqufzQbMjipQ==} - - '@types/qs@6.15.0': - resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==} + resolution: {integrity: sha1-zZ+rkr2wRzDBraVCw1bwNiD4QAg=} '@types/qs@6.15.1': - resolution: {integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==} + resolution: {integrity: sha1-hgaIQnLGPw25aYa9NUhlDYqTiL8=} '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + resolution: {integrity: sha1-UK5DU+qt3AQEQnmBL1LIxlhX28s=} - '@types/react@18.3.18': - resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==} + '@types/react@18.3.31': + resolution: {integrity: sha1-teleKP/M6rjZgvM/LrB24XZTwqQ=} '@types/regexp.escape@2.0.0': - resolution: {integrity: sha512-L0+4KOC47zH0AE/27YhzECRlE4HxHycQy0ng8P4SMmsYIdUqJFzKlk4LameozRQ2mRozPRwRAzpXsDsUgb6ezA==} + resolution: {integrity: sha1-ojtCHip/dOJQ4yHByZF3ua/1aNY=} '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + resolution: {integrity: sha1-l9JuAM1KBCO0r2IKvs8+b0QreXU=} '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + resolution: {integrity: sha1-zClwbwo5fP5t+J3r/kv1zqFZ21A=} '@types/retry@0.12.2': - resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} + resolution: {integrity: sha1-7SeaZPpDi7afJIDtpEk3kSu3SAo=} + + '@types/retry@0.12.5': + resolution: {integrity: sha1-8JD/S9jS5blA/ycKs5/Vyhg0oH4=} '@types/sarif@2.1.7': - resolution: {integrity: sha512-kRz0VEkJqWLf1LLVN4pT1cg1Z9wAuvI6L97V3m2f5B76Tg8d413ddvLBPTEHAZJlnn4XSvu0FkZtViCQGVyrXQ==} + resolution: {integrity: sha1-2rTRa6dWjphGxFSodk8zxdmOVSQ=} '@types/semver@7.7.1': - resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} - - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + resolution: {integrity: sha1-POOvGlUk7zJ9Lank/YttlcjXBSg=} '@types/send@0.17.6': - resolution: {integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==} + resolution: {integrity: sha1-rrU4W+Yv9YpSzVRZ2qUJrpFlHSU=} '@types/send@1.2.1': - resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==} + resolution: {integrity: sha1-anhORVQ8GMd0wEm/9tPbrwRcnHQ=} '@types/serve-index@1.9.4': - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + resolution: {integrity: sha1-5q4T1QU8sG7TY5IRC0+aSaxOyJg=} '@types/serve-static@1.15.10': - resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==} - - '@types/serve-static@1.15.5': - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - - '@types/serve-static@2.2.0': - resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} + resolution: {integrity: sha1-doFpFFp3j49d/LY2CurUFKOZT+4=} '@types/sinon-chai@3.2.12': - resolution: {integrity: sha512-9y0Gflk3b0+NhQZ/oxGtaAJDvRywCa5sIyaVnounqLvmf93yBF4EgIRspePtkMs3Tr844nCclYMlcCNmLCvjuQ==} + resolution: {integrity: sha1-x8sGvuRKU07ITzpVNMOjpG/XebY=} - '@types/sinon@21.0.1': - resolution: {integrity: sha512-5yoJSqLbjH8T9V2bksgRayuhpZy+723/z6wBOR+Soe4ZlXC0eW8Na71TeaZPUWDQvM7LYKa9UGFc6LRqxiR5fQ==} + '@types/sinon@22.0.0': + resolution: {integrity: sha1-OWrwfERS77V5UOwmDUUKzt8CVQg=} '@types/sinonjs__fake-timers@15.0.1': - resolution: {integrity: sha512-Ko2tjWJq8oozHzHV+reuvS5KYIRAokHnGbDwGh/J64LntgpbuylF74ipEL24HCyRjf9FOlBiBHWBR1RlVKsI1w==} + resolution: {integrity: sha1-Sfcx2UU/UtZN159aVibBzxuBvqQ=} - '@types/sizzle@2.3.8': - resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + '@types/sizzle@2.3.10': + resolution: {integrity: sha1-J3pUKv9ndtipsV8qxoKmY+PpS70=} '@types/sockjs@0.3.36': - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + resolution: {integrity: sha1-zjIs8HvMEZ1Mv3+IlU86O9D2dTU=} '@types/spotify-api@0.0.25': - resolution: {integrity: sha512-okhoy0U9fPWtwqCfbDyW8VxamhqvXE0gXIVeMOh5HcvEFQvWW2X0VsvdiX/OyiGQpZbZiOJXIGrbnIPfK0AIpA==} + resolution: {integrity: sha1-nauzsKHwUn7WGTbr+KgMHROMJ8M=} - '@types/stack-utils@2.0.2': - resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==} + '@types/stack-utils@2.0.3': + resolution: {integrity: sha1-YgkyHrLBcSp+dGZCK4yx/A2d1dg=} '@types/tough-cookie@4.0.5': - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + resolution: {integrity: sha1-y24qaRtwyxd8bjrpwdLosuqM0wQ=} '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + resolution: {integrity: sha1-usywepcLkXB986PoumiWxX6tLRE=} '@types/unist@2.0.11': - resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + resolution: {integrity: sha1-Ea9XsSfjJId3SEH3pOVOqxZtA8Q=} '@types/unist@3.0.3': - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + resolution: {integrity: sha1-rKqw+RnOaczmKcLU7S60rcG2wgw=} '@types/verror@1.10.11': - resolution: {integrity: sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==} + resolution: {integrity: sha1-09a0GJeMiqIC1B5bs0gyJ7bswbs=} - '@types/vscode@1.100.0': - resolution: {integrity: sha512-4uNyvzHoraXEeCamR3+fzcBlh7Afs4Ifjs4epINyUX/jvdk0uzLnwiDY35UKDKnkCHP5Nu3dljl2H8lR6s+rQw==} + '@types/vscode@1.125.0': + resolution: {integrity: sha1-lEdV/hb8rxUGCJm/IUVWx1SeTNY=} '@types/webidl-conversions@7.0.3': - resolution: {integrity: sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==} + resolution: {integrity: sha1-Ewbb+lN2i8vPyVocjN42eXVYGFk=} '@types/webrtc@0.0.37': - resolution: {integrity: sha512-JGAJC/ZZDhcrrmepU4sPLQLIOIAgs5oIK+Ieq90K8fdaNMhfdfqmYatJdgif1NDQtvrSlTOGJDUYHIDunuufOg==} + resolution: {integrity: sha1-aTZj3F3oxshUBvbPVmHMwehOTGg=} '@types/webvtt-parser@2.2.0': - resolution: {integrity: sha512-T8n08m3VWAOCVDHWPOtEehnLcVSyQaUmyjIvGCERWRPMyVooUjqWaDsvKD3bcwQSU8TLBW19YTSRx9UxBNfckA==} + resolution: {integrity: sha1-xWYAxswfAGt1FhW8GPXL94ZNNnY=} - '@types/whatwg-url@11.0.4': - resolution: {integrity: sha512-lXCmTWSHJvf0TRSO58nm978b8HJ/EdsSsEKLd3ODHFjo+3VGAyyTp4v50nWvwtzBxSMQrVOK7tcuN0zGPLICMw==} + '@types/whatwg-url@11.0.5': + resolution: {integrity: sha1-qqJUbmDwyZIJyhM2DDLHjK8sQJ8=} '@types/winreg@1.2.36': - resolution: {integrity: sha512-DtafHy5A8hbaosXrbr7YdjQZaqVewXmiasRS5J4tYMzt3s1gkh40ixpxgVFfKiQ0JIYetTJABat47v9cpr/sQg==} + resolution: {integrity: sha1-8dmpkYyukKY8YQbJgiSspqNpg/w=} '@types/ws@7.4.7': - resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} + resolution: {integrity: sha1-98OQo296Bnmqad4tUBMZ9PjZtwI=} '@types/ws@8.18.1': - resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + resolution: {integrity: sha1-SEZOS/Ld/RfbE9hFRn9gcP/qSqk=} '@types/xml2js@0.4.14': - resolution: {integrity: sha512-4YnrRemBShWRO2QjvUin8ESA41rH+9nQGLUGZV/1IDhi3SL9OhdpNC/MrulTWuptXKwhx/aDxE7toV0f/ypIXQ==} + resolution: {integrity: sha1-XUYqKnMwNF4jCca1SaGDo3bej5o=} '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + resolution: {integrity: sha1-gV4wt4bS6PDc2F/VvPXhoE0AjxU=} '@types/yargs@17.0.35': - resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} + resolution: {integrity: sha1-BwE+RqpNfX1QpJ4VYEwcU0DU6yQ=} '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + resolution: {integrity: sha1-6bKAi08QlQSgPNqVglmHb2EBeZk=} - '@typescript-eslint/eslint-plugin@8.62.1': - resolution: {integrity: sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==} + '@typescript-eslint/eslint-plugin@8.65.0': + resolution: {integrity: sha1-Cljfb+qMC/azlvUYB3CZvIt2K7U=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.62.1 + '@typescript-eslint/parser': ^8.65.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/parser@8.62.1': - resolution: {integrity: sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==} + '@typescript-eslint/parser@8.65.0': + resolution: {integrity: sha1-UpXBBYwKHddG7yi6r5wDQdvfA9w=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/project-service@8.62.1': - resolution: {integrity: sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/project-service@8.65.0': - resolution: {integrity: sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==} + resolution: {integrity: sha1-Zfu8mhWRq/+uq1UTIA+EgnHLCqU=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/scope-manager@8.62.1': - resolution: {integrity: sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/tsconfig-utils@8.62.1': - resolution: {integrity: sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==} + '@typescript-eslint/scope-manager@8.65.0': + resolution: {integrity: sha1-lUcgLOfmCOe2KD31hXA7mAoOpw0=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/tsconfig-utils@8.65.0': - resolution: {integrity: sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==} + resolution: {integrity: sha1-NvFo/NuxKV90Rv8DeWZ/mMPPG/M=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/type-utils@8.62.1': - resolution: {integrity: sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==} + '@typescript-eslint/type-utils@8.65.0': + resolution: {integrity: sha1-0xbXUi2Tz/TNFPMF4C898tgE+cE=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/types@8.62.1': - resolution: {integrity: sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.65.0': - resolution: {integrity: sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@8.62.1': - resolution: {integrity: sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==} + resolution: {integrity: sha1-PoZzhBand8i4klq0Z0X0js+QTJ8=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.1.0' '@typescript-eslint/typescript-estree@8.65.0': - resolution: {integrity: sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==} + resolution: {integrity: sha1-8fUUgI9qpxPi1niuj/WSpl4WMq8=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/utils@8.62.1': - resolution: {integrity: sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==} + '@typescript-eslint/utils@8.65.0': + resolution: {integrity: sha1-r+3ZdKDI3u71U7UJ31gAuv1hWnI=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/visitor-keys@8.62.1': - resolution: {integrity: sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.65.0': - resolution: {integrity: sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==} + resolution: {integrity: sha1-43BME8tKHCJFTBq/KP9HN+FQGMY=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typespec/ts-http-runtime@0.2.2': - resolution: {integrity: sha512-Gz/Sm64+Sq/vklJu1tt9t+4R2lvnud8NbTD/ZfpZtMiUX7YeVpCA8j6NSW8ptwcoLL+NmYANwqP8DV0q/bwl2w==} - engines: {node: '>=18.0.0'} - - '@typespec/ts-http-runtime@0.3.3': - resolution: {integrity: sha512-91fp6CAAJSRtH5ja95T1FHSKa8aPW9/Zw6cta81jlZTUw/+Vq8jM/AfF/14h2b71wwR84JUTW/3Y8QPhDAawFA==} - engines: {node: '>=20.0.0'} - '@typespec/ts-http-runtime@0.3.7': - resolution: {integrity: sha512-JVUD8X2tfDMWjcjLs4yVxxVrS8yR5vnh386GAXT9Qj79nBxxXSaHFQZg5FweLmT8HlPQ3kii6noUB+Z9RN7DvQ==} + resolution: {integrity: sha1-mrJ1NYmDu9MLyJUM9NxX5kcGcPM=} engines: {node: '>=22.0.0'} '@upsetjs/venn.js@2.0.0': - resolution: {integrity: sha512-WbBhLrooyePuQ1VZxrJjtLvTc4NVfpOyKx0sKqioq9bX1C1m7Jgykkn8gLrtwumBioXIqam8DLxp88Adbue6Hw==} + resolution: {integrity: sha1-O+GSA4zdqSeqT4siq1Gvgqv0fzQ=} '@vscode/codicons@0.0.42': - resolution: {integrity: sha512-PlWPUA32rdiJE6250ltFGMzM3GyC1L9OaryDGOpxiMU0H9lBtEJrSFxpRvefdgJuQRcyUenGFTYzFuFbR9qzjg==} + resolution: {integrity: sha1-eLbIwCfvQBdie4Qr7iuF1lYi4sU=} '@vscode/test-cli@0.0.12': - resolution: {integrity: sha512-iYN0fDg29+a2Xelle/Y56Xvv7Nc8Thzq4VwpzAF/SIE6918rDicqfsQxV6w1ttr2+SOm+10laGuY9FG2ptEKsQ==} + resolution: {integrity: sha1-OMFAVDahyWDhq8CHkOqCL8mz5BI=} engines: {node: '>=18'} hasBin: true '@vscode/test-electron@2.5.2': - resolution: {integrity: sha512-8ukpxv4wYe0iWMRQU18jhzJOHkeGKbnw7xWRX3Zw1WJA4cEKbHcmmLPdPrPtL6rhDcrlCZN+xKRpv09n4gRHYg==} + resolution: {integrity: sha1-99QHjoIwzpyUMi8qKcwWwXlUCF0=} engines: {node: '>=16'} - '@vscode/vsce-sign-alpine-arm64@2.0.2': - resolution: {integrity: sha512-E80YvqhtZCLUv3YAf9+tIbbqoinWLCO/B3j03yQPbjT3ZIHCliKZlsy1peNc4XNZ5uIb87Jn0HWx/ZbPXviuAQ==} + '@vscode/vsce-sign-alpine-arm64@2.0.6': + resolution: {integrity: sha1-LNJEyvXo7FQ/QvuR1N87kzZByPo=} cpu: [arm64] os: [alpine] - '@vscode/vsce-sign-alpine-x64@2.0.2': - resolution: {integrity: sha512-n1WC15MSMvTaeJ5KjWCzo0nzjydwxLyoHiMJHu1Ov0VWTZiddasmOQHekA47tFRycnt4FsQrlkSCTdgHppn6bw==} + '@vscode/vsce-sign-alpine-x64@2.0.6': + resolution: {integrity: sha1-sOgKR5IAHGbif+7iwR6CGtH6FoA=} cpu: [x64] os: [alpine] - '@vscode/vsce-sign-darwin-arm64@2.0.2': - resolution: {integrity: sha512-rz8F4pMcxPj8fjKAJIfkUT8ycG9CjIp888VY/6pq6cuI2qEzQ0+b5p3xb74CJnBbSC0p2eRVoe+WgNCAxCLtzQ==} + '@vscode/vsce-sign-darwin-arm64@2.0.6': + resolution: {integrity: sha1-S4+hq1XygKmZhb48BvtzDleBDM4=} cpu: [arm64] os: [darwin] - '@vscode/vsce-sign-darwin-x64@2.0.2': - resolution: {integrity: sha512-MCjPrQ5MY/QVoZ6n0D92jcRb7eYvxAujG/AH2yM6lI0BspvJQxp0o9s5oiAM9r32r9tkLpiy5s2icsbwefAQIw==} + '@vscode/vsce-sign-darwin-x64@2.0.6': + resolution: {integrity: sha1-0skYbZUFSYJyy93YODuwOOvPWCA=} cpu: [x64] os: [darwin] - '@vscode/vsce-sign-linux-arm64@2.0.2': - resolution: {integrity: sha512-Ybeu7cA6+/koxszsORXX0OJk9N0GgfHq70Wqi4vv2iJCZvBrOWwcIrxKjvFtwyDgdeQzgPheH5nhLVl5eQy7WA==} + '@vscode/vsce-sign-linux-arm64@2.0.6': + resolution: {integrity: sha1-s9hWAUQEC5INjG7dQ3QxS1glVIE=} cpu: [arm64] os: [linux] - '@vscode/vsce-sign-linux-arm@2.0.2': - resolution: {integrity: sha512-Fkb5jpbfhZKVw3xwR6t7WYfwKZktVGNXdg1m08uEx1anO0oUPUkoQRsNm4QniL3hmfw0ijg00YA6TrxCRkPVOQ==} + '@vscode/vsce-sign-linux-arm@2.0.6': + resolution: {integrity: sha1-CifEKkrbN+lu7HjNe/o4jNTp++8=} cpu: [arm] os: [linux] - '@vscode/vsce-sign-linux-x64@2.0.2': - resolution: {integrity: sha512-NsPPFVtLaTlVJKOiTnO8Cl78LZNWy0Q8iAg+LlBiCDEgC12Gt4WXOSs2pmcIjDYzj2kY4NwdeN1mBTaujYZaPg==} + '@vscode/vsce-sign-linux-x64@2.0.6': + resolution: {integrity: sha1-reEcru7VJPwWvWxDykmuoAKV3ow=} cpu: [x64] os: [linux] - '@vscode/vsce-sign-win32-arm64@2.0.2': - resolution: {integrity: sha512-wPs848ymZ3Ny+Y1Qlyi7mcT6VSigG89FWQnp2qRYCyMhdJxOpA4lDwxzlpL8fG6xC8GjQjGDkwbkWUcCobvksQ==} + '@vscode/vsce-sign-win32-arm64@2.0.6': + resolution: {integrity: sha1-BoiWgUjgPrOSR5yEkcclBnIb7/w=} cpu: [arm64] os: [win32] - '@vscode/vsce-sign-win32-x64@2.0.2': - resolution: {integrity: sha512-pAiRN6qSAhDM5SVOIxgx+2xnoVUePHbRNC7OD2aOR3WltTKxxF25OfpK8h8UQ7A0BuRkSgREbB59DBlFk4iAeg==} + '@vscode/vsce-sign-win32-x64@2.0.6': + resolution: {integrity: sha1-dEMO/0HSaBjCP5gmsEXYx1cy6us=} cpu: [x64] os: [win32] - '@vscode/vsce-sign@2.0.5': - resolution: {integrity: sha512-GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q==} + '@vscode/vsce-sign@2.0.9': + resolution: {integrity: sha1-KtSLtlNzwa6rsL6v3bKespi9YDA=} - '@vscode/vsce@3.4.0': - resolution: {integrity: sha512-vKyQxFSipqO4e1vUM3iDzOzMSXIKVhrJlWuGgYv/GF1ihAM/zzs2MVSGFC4CfdhF1ep+5AoLn1aRFn96CGhEWA==} + '@vscode/vsce@3.9.2': + resolution: {integrity: sha1-kmLRc326bGHZHcVq4pAa8+HgKUo=} engines: {node: '>= 20'} hasBin: true - '@vue/compiler-core@3.5.16': - resolution: {integrity: sha512-AOQS2eaQOaaZQoL1u+2rCJIKDruNXVBZSiUD3chnUrsoX5ZTQMaCvXlWNIfxBJuU15r1o7+mpo5223KVtIhAgQ==} - '@vue/compiler-core@3.5.40': - resolution: {integrity: sha512-39E8IgOhTbVDnoJFMKc2DvYnypcZwUqgUhQkccva/0m6FUwtIKSGV7n1hpVmYcFaoRAwf9pBcwnKlCEsN63ZEQ==} - - '@vue/compiler-dom@3.5.16': - resolution: {integrity: sha512-SSJIhBr/teipXiXjmWOVWLnxjNGo65Oj/8wTEQz0nqwQeP75jWZ0n4sF24Zxoht1cuJoWopwj0J0exYwCJ0dCQ==} + resolution: {integrity: sha1-o+nigO89zLbeTHcHulDX4Q/VmKU=} '@vue/compiler-dom@3.5.40': - resolution: {integrity: sha512-pwkx4vqlqOspFstrcmzwkKLePVMD3PT65imRzLhanU2V1Fj4K13g6OXjanOyzw3aTAuRk84BOmY8f3rEHqPaVA==} - - '@vue/compiler-sfc@3.5.16': - resolution: {integrity: sha512-rQR6VSFNpiinDy/DVUE0vHoIDUF++6p910cgcZoaAUm3POxgNOOdS/xgoll3rNdKYTYPnnbARDCZOyZ+QSe6Pw==} + resolution: {integrity: sha1-rAV51Nwle/XhDOMkp84Kf5/Fwzg=} '@vue/compiler-sfc@3.5.40': - resolution: {integrity: sha512-gIf497P4kpuALcvs5n3AEg1Vdn0pSY4XbjASIfHNYF1/MP3T2Mf2STERTubysBxCRxzJGJYtF/O7vwJrxFB3Vw==} - - '@vue/compiler-ssr@3.5.16': - resolution: {integrity: sha512-d2V7kfxbdsjrDSGlJE7my1ZzCXViEcqN6w14DOsDrUCHEA6vbnVCpRFfrc4ryCP/lCKzX2eS1YtnLE/BuC9f/A==} + resolution: {integrity: sha1-IiUrLlpYprak9xVlz6kScb3b54I=} '@vue/compiler-ssr@3.5.40': - resolution: {integrity: sha512-rrE5xiXG663+vHCHa3J9p2z5OcBRjXmoqenprJxAFQxg5pSshzeBiCE6pu46axapRJ2Adk0YDA2BRZVjiHXnhg==} - - '@vue/reactivity@3.5.16': - resolution: {integrity: sha512-FG5Q5ee/kxhIm1p2bykPpPwqiUBV3kFySsHEQha5BJvjXdZTUfmya7wP7zC39dFuZAcf/PD5S4Lni55vGLMhvA==} + resolution: {integrity: sha1-yMgO/SL12F6nddbq14ehCNyGzVg=} - '@vue/runtime-core@3.5.16': - resolution: {integrity: sha512-bw5Ykq6+JFHYxrQa7Tjr+VSzw7Dj4ldR/udyBZbq73fCdJmyy5MPIFR9IX/M5Qs+TtTjuyUTCnmK3lWWwpAcFQ==} + '@vue/reactivity@3.5.40': + resolution: {integrity: sha1-kTeRcqnp2rpnN8aTE4ISeXbIMLo=} - '@vue/runtime-dom@3.5.16': - resolution: {integrity: sha512-T1qqYJsG2xMGhImRUV9y/RseB9d0eCYZQ4CWca9ztCuiPj/XWNNN+lkNBuzVbia5z4/cgxdL28NoQCvC0Xcfww==} + '@vue/runtime-core@3.5.40': + resolution: {integrity: sha1-q90gvBkkQVTqx7yvXsaOldXYsbw=} - '@vue/server-renderer@3.5.16': - resolution: {integrity: sha512-BrX0qLiv/WugguGsnQUJiYOE0Fe5mZTwi6b7X/ybGB0vfrPH9z0gD/Y6WOR1sGCgX4gc25L1RYS5eYQKDMoNIg==} - peerDependencies: - vue: 3.5.16 + '@vue/runtime-dom@3.5.40': + resolution: {integrity: sha1-7XLwcsMeeGjAxZrViDE4zX4NiKU=} - '@vue/shared@3.5.16': - resolution: {integrity: sha512-c/0fWy3Jw6Z8L9FmTyYfkpM5zklnqqa9+a6dz3DvONRKW2NEbh46BP0FHuLFSWi2TnQEtp91Z6zOWNrU6QiyPg==} + '@vue/server-renderer@3.5.40': + resolution: {integrity: sha1-lMfM0L8U7DsZBH5WuG95i+Zzb9o=} '@vue/shared@3.5.40': - resolution: {integrity: sha512-WxnBtruIqOoV3rA4jeKDWzrYI5h7Cp4+pjwDi8kWGHz+IslhiN+wguLVVhtv2l8VoU02rzDCVfDjgCl1lNpZVg==} + resolution: {integrity: sha1-/AnRhx1mzZsBlZpZe0HXy2H3Fqg=} '@web/browser-logs@0.4.1': - resolution: {integrity: sha512-ypmMG+72ERm+LvP+loj9A64MTXvWMXHUOu773cPO4L1SV/VWg6xA9Pv7vkvkXQX+ItJtCJt+KQ+U6ui2HhSFUw==} + resolution: {integrity: sha1-G+RGTJs9ylN7RZ1Jyxhzpt7vBgk=} engines: {node: '>=18.0.0'} '@web/config-loader@0.3.3': - resolution: {integrity: sha512-ilzeQzrPpPLWZhzFCV+4doxKDGm7oKVfdKpW9wiUNVgive34NSzCw+WzXTvjE4Jgr5CkyTDIObEmMrqQEjhT0g==} + resolution: {integrity: sha1-E9SFLEedHzrbwfJNecfm7u3rbl0=} engines: {node: '>=18.0.0'} '@web/dev-server-core@0.7.5': - resolution: {integrity: sha512-Da65zsiN6iZPMRuj4Oa6YPwvsmZmo5gtPWhW2lx3GTUf5CAEapjVpZVlUXnKPL7M7zRuk72jSsIl8lo+XpTCtw==} + resolution: {integrity: sha1-soPUbrLAOE6EgxHsnaJdBru8R98=} engines: {node: '>=18.0.0'} '@web/dev-server-rollup@0.6.4': - resolution: {integrity: sha512-sJZfTGCCrdku5xYnQQG51odGI092hKY9YFM0X3Z0tRY3iXKXcYRaLZrErw5KfCxr6g0JRuhe4BBhqXTA5Q2I3Q==} + resolution: {integrity: sha1-0KT2nkplnSt58XLoYjbOpshy6Bw=} engines: {node: '>=18.0.0'} '@web/dev-server@0.4.6': - resolution: {integrity: sha512-jj/1bcElAy5EZet8m2CcUdzxT+CRvUjIXGh8Lt7vxtthkN9PzY9wlhWx/9WOs5iwlnG1oj0VGo6f/zvbPO0s9w==} + resolution: {integrity: sha1-GKRCHUdKm9G/yQQZp6eY7QtVOMU=} engines: {node: '>=18.0.0'} hasBin: true '@web/parse5-utils@2.1.1': - resolution: {integrity: sha512-7rBVZEMGfrq2iPcAEwJ0KSNSvmA2a6jT2CK8/gyIOHgn4reg7bSSRbzyWIEYWyIkeRoYEukX/aW+nAeCgSSqhQ==} + resolution: {integrity: sha1-oUEU7OYPf1V3JBCwgTWF4EZHj90=} engines: {node: '>=18.0.0'} '@web/test-runner-chrome@0.17.0': - resolution: {integrity: sha512-Il5N9z41NKWCrQM1TVgRaDWWYoJtG5Ha4fG+cN1MWL2OlzBS4WoOb4lFV3EylZ7+W3twZOFr1zy2Rx61yDYd/A==} + resolution: {integrity: sha1-kKQ1c1eBmP4GP+LYlkkWEeF6qmU=} engines: {node: '>=18.0.0'} '@web/test-runner-commands@0.9.0': - resolution: {integrity: sha512-zeLI6QdH0jzzJMDV5O42Pd8WLJtYqovgdt0JdytgHc0d1EpzXDsc7NTCJSImboc2NcayIsWAvvGGeRF69SMMYg==} + resolution: {integrity: sha1-7RWgISSZSCBLsnVZ60N/9s7u4Gc=} engines: {node: '>=18.0.0'} '@web/test-runner-core@0.13.4': - resolution: {integrity: sha512-84E1025aUSjvZU1j17eCTwV7m5Zg3cZHErV3+CaJM9JPCesZwLraIa0ONIQ9w4KLgcDgJFw9UnJ0LbFf42h6tg==} + resolution: {integrity: sha1-32p2s+lwrbvTujnocPS/ZX1txD8=} engines: {node: '>=18.0.0'} '@web/test-runner-coverage-v8@0.8.0': - resolution: {integrity: sha512-PskiucYpjUtgNfR2zF2AWqWwjXL7H3WW/SnCAYmzUrtob7X9o/+BjdyZ4wKbOxWWSbJO4lEdGIDLu+8X2Xw+lA==} + resolution: {integrity: sha1-eD6faF8Uyvw0pr8yP32SaMFHeTM=} engines: {node: '>=18.0.0'} '@web/test-runner-mocha@0.9.0': - resolution: {integrity: sha512-ZL9F6FXd0DBQvo/h/+mSfzFTSRVxzV9st/AHhpgABtUtV/AIpVE9to6+xdkpu6827kwjezdpuadPfg+PlrBWqQ==} + resolution: {integrity: sha1-T7+lwyIsjHh/3MBX3ZMqB2MmexA=} engines: {node: '>=18.0.0'} '@web/test-runner-playwright@0.11.1': - resolution: {integrity: sha512-l9tmX0LtBqMaKAApS4WshpB87A/M8sOHZyfCobSGuYqnREgz5rqQpX314yx+4fwHXLLTa5N64mTrawsYkLjliw==} + resolution: {integrity: sha1-2ZMRKuISbrdMHFoXHW6kTC3SS04=} engines: {node: '>=18.0.0'} '@web/test-runner@0.19.0': - resolution: {integrity: sha512-qLUupi88OK1Kl52cWPD/2JewUCRUxYsZ1V1DyLd05P7u09zCdrUYrtkB/cViWyxlBe/TOvqkSNpcTv6zLJ9GoA==} + resolution: {integrity: sha1-6+gad/lC72kKNQRUZzJqk3/JfFo=} engines: {node: '>=18.0.0'} hasBin: true '@webassemblyjs/ast@1.14.1': - resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} + resolution: {integrity: sha1-qfagfysDyVyNOMRTah/ftSH/VbY=} '@webassemblyjs/floating-point-hex-parser@1.13.2': - resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} + resolution: {integrity: sha1-/Moe7dscxOe27tT8eVbWgTshufs=} '@webassemblyjs/helper-api-error@1.13.2': - resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} + resolution: {integrity: sha1-4KFhUiSLw42u523X4h8Vxe86sec=} '@webassemblyjs/helper-buffer@1.14.1': - resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} + resolution: {integrity: sha1-giqbxgMWZTH31d+E5ntb+ZtyuWs=} '@webassemblyjs/helper-numbers@1.13.2': - resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} + resolution: {integrity: sha1-29kyVI5xGfS4p4d/1ajSDmNJCy0=} '@webassemblyjs/helper-wasm-bytecode@1.13.2': - resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} + resolution: {integrity: sha1-5VYQh1j0SKroTIUOWTzhig6zHgs=} '@webassemblyjs/helper-wasm-section@1.14.1': - resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} + resolution: {integrity: sha1-lindqcRDDqtUtZEFPW3G87oFA0g=} '@webassemblyjs/ieee754@1.13.2': - resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + resolution: {integrity: sha1-HF6qzh1gatosf9cEXqk1bFnuDbo=} '@webassemblyjs/leb128@1.13.2': - resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} + resolution: {integrity: sha1-V8XD3rAQXQLOJfo/109OvJ/Qu7A=} '@webassemblyjs/utf8@1.13.2': - resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} + resolution: {integrity: sha1-kXog6T9xrVYClmwtaFrgxsIfYPE=} '@webassemblyjs/wasm-edit@1.14.1': - resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + resolution: {integrity: sha1-rGaJ9QIhm1kZjd7ELc1JaxAE1Zc=} '@webassemblyjs/wasm-gen@1.14.1': - resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} + resolution: {integrity: sha1-mR5/DAkMsLtiu6yIIHbj0hnalXA=} '@webassemblyjs/wasm-opt@1.14.1': - resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} + resolution: {integrity: sha1-5vce18yuRngcIGAX08FMUO+oEGs=} '@webassemblyjs/wasm-parser@1.14.1': - resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + resolution: {integrity: sha1-s+E/GJNgXKeLUsaOVM9qhl+Qufs=} '@webassemblyjs/wast-printer@1.14.1': - resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + resolution: {integrity: sha1-O7PpY4qK5f2vlhDnoGtNn5qm/gc=} '@webpack-cli/configtest@2.1.1': - resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} + resolution: {integrity: sha1-Oy+FLpHaxuO4X7KjFPuL70bZRkY=} engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x '@webpack-cli/info@2.0.2': - resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==} + resolution: {integrity: sha1-zD+/Iu/riP9iMQz4hcWwn0SuD90=} engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x '@webpack-cli/serve@2.0.5': - resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==} + resolution: {integrity: sha1-Ml20I5XNSf5sFAV/mpAOQn34gQ4=} engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x @@ -11041,95 +10330,91 @@ packages: optional: true '@xmldom/xmldom@0.8.13': - resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==} + resolution: {integrity: sha1-ANHdlAshjf8uSTCdQQ2LshIVkiU=} engines: {node: '>=10.0.0'} '@xmldom/xmldom@0.9.10': - resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==} + resolution: {integrity: sha1-oK1aJv6KqZYxCHBybhcEl392ne4=} engines: {node: '>=14.6'} '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + resolution: {integrity: sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=} '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + resolution: {integrity: sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=} '@yomguithereal/helpers@1.1.1': - resolution: {integrity: sha512-UYvAq/XCA7xoh1juWDYsq3W0WywOB+pz8cgVnE1b45ZfdMhBvHDrgmSFG3jXeZSr2tMTYLGHFHON+ekG05Jebg==} + resolution: {integrity: sha1-GF37D4jKK+7FPQrfbu0VwzscVJ0=} '@zone-eu/mailsplit@5.4.8': - resolution: {integrity: sha512-eEyACj4JZ7sjzRvy26QhLgKEMWwQbsw1+QZnlLX+/gihcNH07lVPOcnwf5U6UAL7gkc//J3jVd76o/WS+taUiA==} + resolution: {integrity: sha1-/D5DP1uBMhAzJNdyjz+gBCauqCI=} abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + resolution: {integrity: sha1-QbgPLIcdGWhiFrgjCSMc/Tyz0pE=} deprecated: Use your platform's native atob() and btoa() methods instead abbrev@4.0.0: - resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==} + resolution: {integrity: sha1-7JM/Die2zWDom1xrKjBK9CIJuwU=} engines: {node: ^20.17.0 || >=22.9.0} abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + resolution: {integrity: sha1-6vVNU7YrrkE46AnKIlyEOabvs5I=} engines: {node: '>=6.5'} accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + resolution: {integrity: sha1-C/C+EltnAUrcsLCSHmLbe//hay4=} engines: {node: '>= 0.6'} accepts@2.0.0: - resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + resolution: {integrity: sha1-u89LpQdUZ/PyEx6rPP/HPC9deJU=} engines: {node: '>= 0.6'} acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + resolution: {integrity: sha1-Db8FxE+nyUMykUwCBm1b7/YsQMM=} acorn-import-phases@1.0.4: - resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} + resolution: {integrity: sha1-FuuFC6maBWy3y/6HL/uJcuGMi9c=} engines: {node: '>=10.13.0'} peerDependencies: acorn: ^8.14.0 acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn-walk@8.3.5: - resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==} + resolution: {integrity: sha1-imuMqPxbNGha8V2rtEEYZjwpZJY=} engines: {node: '>=0.4.0'} acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + resolution: {integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=} engines: {node: '>=0.4.0'} hasBin: true acorn@8.17.0: - resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==} + resolution: {integrity: sha1-F4WtuE+vjYrdEDabk4Jvwr0I8f4=} engines: {node: '>=0.4.0'} hasBin: true agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + resolution: {integrity: sha1-6Ps/JClZ20TWO+Zl23qOc5U3oyw=} engines: {node: '>= 6.0.0'} agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + resolution: {integrity: sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=} engines: {node: '>= 6.0.0'} - agent-base@7.1.3: - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + agent-base@7.1.4: + resolution: {integrity: sha1-48121MVI7oldPD/Y3B9sW5Ay56g=} engines: {node: '>= 14'} agentkeepalive@4.6.0: - resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} + resolution: {integrity: sha1-Nfc+lLP0C/ZfEFIZxiOtGcE26mo=} engines: {node: '>= 8.0.0'} - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: {integrity: sha1-bmaUAGWet0lzu/LjMycYCgmWtSA=} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -11137,7 +10422,7 @@ packages: optional: true ajv-formats@3.0.1: - resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + resolution: {integrity: sha1-PV3HYryhdnnDwup+kK1rdTIwlXg=} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -11145,243 +10430,222 @@ packages: optional: true ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + resolution: {integrity: sha1-MfKdpatuANHC0yms97WSlhTVAU0=} peerDependencies: ajv: ^6.9.1 ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + resolution: {integrity: sha1-adTThaRzPNvqtElkoRcKiPh/DhY=} peerDependencies: ajv: ^8.8.2 ajv@6.15.0: - resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} - - ajv@8.18.0: - resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==} + resolution: {integrity: sha1-B+mCx0YmFnqnoklcU4F4ktcTlJI=} ajv@8.20.0: - resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==} + resolution: {integrity: sha1-MEs2Nq3Yi6fZNnYN1Q7OAG3qlfk=} ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + resolution: {integrity: sha1-N2ETQOsiQ+cMxgTK011jJw1IeBs=} engines: {node: '>=6'} ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + resolution: {integrity: sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=} engines: {node: '>=8'} - ansi-escapes@7.0.0: - resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} - engines: {node: '>=18'} - ansi-escapes@7.3.0: - resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==} + resolution: {integrity: sha1-U5W7dLIVCkodbjwlZfSuynjShic=} engines: {node: '>=18'} ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + resolution: {integrity: sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=} engines: {'0': node >= 0.8.0} hasBin: true ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=} engines: {node: '>=8'} ansi-regex@6.2.2: - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + resolution: {integrity: sha1-YCFu6kZNhkWXzigyAAc4oFiWUME=} engines: {node: '>=12'} - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=} engines: {node: '>=8'} ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + resolution: {integrity: sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=} engines: {node: '>=10'} ansi-styles@6.2.3: - resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + resolution: {integrity: sha1-wETV3MUhoHZBNHJZehrLHxA8QEE=} engines: {node: '>=12'} - ansi_up@6.0.5: - resolution: {integrity: sha512-bo4K8S5usgFivfgvgQozTC2EfusPf76o7w0LUVdAOkpISvVmQqtwCdF5c6okokrgIN13KhFIVB/0BhnNXueQeA==} - ansi_up@6.0.6: - resolution: {integrity: sha512-yIa1x3Ecf8jWP4UWEunNjqNX6gzE4vg2gGz+xqRGY+TBSucnYp6RRdPV4brmtg6bQ1ljD48mZ5iGSEj7QEpRKA==} + resolution: {integrity: sha1-gE+vMfA4XlYtL3EnXqjP8Nnc9tw=} ansis@3.17.0: - resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==} + resolution: {integrity: sha1-+o2cKpP+fRF34MF/nutWKlioMtc=} engines: {node: '>=14'} any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=} anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + resolution: {integrity: sha1-eQxYsZuhcgqEIFtXxhjVrYUklz4=} engines: {node: '>= 8'} anynum@1.0.1: - resolution: {integrity: sha512-N6//FLET/tXYNM/F6ABca1oH6fWB+KlTt909Le28WMDBk8oaT4vY17DCrwg2MvmuqUKt3Ni4N5dGJ/EoBgcO6A==} - - apache-arrow@18.1.0: - resolution: {integrity: sha512-v/ShMp57iBnBp4lDgV8Jx3d3Q5/Hac25FWmQ98eMahUiHPXcvwIMKJD0hBIgclm/FCG+LwPkAKtkRO1O/W0YGg==} - hasBin: true + resolution: {integrity: sha1-KqwA4I3603JsHUYuYNvC+DFlmkQ=} app-builder-bin@5.0.0-alpha.12: - resolution: {integrity: sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w==} + resolution: {integrity: sha1-La+C+LrcaY4K3Mlbo2r0/wZQ3IA=} app-builder-lib@26.8.1: - resolution: {integrity: sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw==} + resolution: {integrity: sha1-MVyJO/H1iCzGzRdM/NAFNdu3Z4Y=} engines: {node: '>=14.0.0'} peerDependencies: dmg-builder: 26.8.1 electron-builder-squirrel-windows: 26.8.1 app-module-path@2.2.0: - resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==} + resolution: {integrity: sha1-ZBqlXft9am8KgUHEucCqULbCTdU=} archiver-utils@2.1.0: - resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} + resolution: {integrity: sha1-6KRg6UtpPD49oYKgmMpihbqSSeI=} engines: {node: '>= 6'} archiver-utils@5.0.2: - resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} + resolution: {integrity: sha1-Y7xxnZUYA+/HLPlhpW74EHYN0U0=} engines: {node: '>= 14'} archiver@3.1.1: - resolution: {integrity: sha512-5Hxxcig7gw5Jod/8Gq0OneVgLYET+oNHcxgWItq4TbhOzRLKNAFUb9edAftiMKXvXfCB0vbGrJdZDNq0dWMsxg==} + resolution: {integrity: sha1-nbeBnU2vYK7BD+hrFsuSWM7WbqA=} engines: {node: '>= 6'} archiver@7.0.1: - resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} + resolution: {integrity: sha1-ydkcNQNiBAuJJzeceqacBlUSL2E=} engines: {node: '>= 14'} arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + resolution: {integrity: sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk=} argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: {integrity: sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=} argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: {integrity: sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=} arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=} engines: {node: '>=0.10.0'} array-back@3.1.0: - resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + resolution: {integrity: sha1-uIWdelCIccmnss9C+ZQo9l6Wv7A=} engines: {node: '>=6'} - array-back@6.2.2: - resolution: {integrity: sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==} + array-back@6.2.3: + resolution: {integrity: sha1-1B5nWYgF5hTyOzGbnllg37zXKuI=} engines: {node: '>=12.17'} array-buffer-byte-length@1.0.2: - resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + resolution: {integrity: sha1-OE0So3KVrsN2mrAirTI6GKUcz4s=} engines: {node: '>= 0.4'} array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + resolution: {integrity: sha1-PLs9DzFoEOr8xHYkc0I31q7krms=} engines: {node: '>=8'} array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + resolution: {integrity: sha1-t5hCCtvrHego2ErNii4j0+/oXo0=} engines: {node: '>=8'} arraybuffer.prototype.slice@1.0.4: - resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + resolution: {integrity: sha1-nXYNhNvdBtDL+SyISWFaGnqzGDw=} engines: {node: '>= 0.4'} arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + resolution: {integrity: sha1-yWVekzHgq81YjSp8rX6ZVvZnAfo=} engines: {node: '>=8'} asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=} asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + resolution: {integrity: sha1-DTp7tuZOAqkMAwOzHykoaOoJoI0=} asn1js@3.0.10: - resolution: {integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==} + resolution: {integrity: sha1-3ybIdMiotBymBe/qR7KtB1UQE90=} engines: {node: '>=12.0.0'} assert-never@1.4.0: - resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==} + resolution: {integrity: sha1-sNSYhijIfzXrlHFsxUQipjkn4XU=} assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + resolution: {integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=} engines: {node: '>=0.8'} assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + resolution: {integrity: sha1-9kGhlrM1aQsQcL8AtudZP+wZC/c=} engines: {node: '>=12'} ast-module-types@6.0.2: - resolution: {integrity: sha512-6KuK/7nZ/2Qh7sGuVEiwxjCxzTY2Pdb5mTo5z1e6/J8BA0tvjR7G8vQJKrQMTqwmnA3UPEyKIFX4YUS1DO1Hvw==} + resolution: {integrity: sha1-sYoH3ja85N+4jt8FHI1oCNT+PdY=} engines: {node: '>=18'} ast-types@0.13.4: - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + resolution: {integrity: sha1-7g13s0MmOWXsw/ti2hbnIisrZ4I=} engines: {node: '>=4'} astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + resolution: {integrity: sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=} engines: {node: '>=8'} async-exit-hook@2.0.1: - resolution: {integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==} + resolution: {integrity: sha1-i9iwJLDsmxwBzMua+dspvXF9+vM=} engines: {node: '>=0.12.0'} async-function@1.0.0: - resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + resolution: {integrity: sha1-UJyfymDq+FA0xoKYOBiOTkyP+ys=} engines: {node: '>= 0.4'} async-mutex@0.4.0: - resolution: {integrity: sha512-eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA==} + resolution: {integrity: sha1-roBIzU0ErOlDR1B1BLPPFeYxwl8=} async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + resolution: {integrity: sha1-cGt/9ghGZM1+rnE/b5ZUM7VQQiE=} async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + resolution: {integrity: sha1-Gwco4Ukp1RuFtEm38G4nwRReOM4=} asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + resolution: {integrity: sha1-YCzUtG6EStTv/JKoARo8RuAjjcI=} engines: {node: '>= 4.0.0'} auto-bind@5.0.1: - resolution: {integrity: sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg==} + resolution: {integrity: sha1-UNjmPqWh3dy15eNkUcGoJm/7sq4=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + resolution: {integrity: sha1-pcw3XWoDwu/IelU/PgsVIt7xSEY=} engines: {node: '>= 0.4'} - axe-core@4.11.4: - resolution: {integrity: sha512-KunSNx+TVpkAw/6ULfhnx+HWRecjqZGTOyquAoWHYLRSdK1tB5Ihce1ZW+UY3fj33bYAFWPu7W/GRSmmrCGuxA==} + axe-core@4.12.1: + resolution: {integrity: sha1-af4r9t/Asklzr5Gx2OlF954bfEQ=} engines: {node: '>=4'} azure-devops-node-api@12.5.0: - resolution: {integrity: sha512-R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og==} - - b4a@1.6.7: - resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} + resolution: {integrity: sha1-OLnv18WsdDVP5Ojb5CaX2wuOhaU=} b4a@1.8.1: - resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==} + resolution: {integrity: sha1-fxYzTKgBJ66yYGSiiEGsvxdIQKQ=} peerDependencies: react-native-b4a: '*' peerDependenciesMeta: @@ -11389,66 +10653,57 @@ packages: optional: true babel-jest@29.7.0: - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + resolution: {integrity: sha1-9DaZGSJbaExWCFmYrGPb0FvgINU=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + resolution: {integrity: sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=} engines: {node: '>=8'} babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + resolution: {integrity: sha1-qtvpQ0ZBgqiSLDySfDBn/0DSRiY=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} babel-preset-current-node-syntax@1.2.0: - resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==} + resolution: {integrity: sha1-IHMNbNx92l2JQByrEKxqMgZ6zeY=} peerDependencies: '@babel/core': ^7.0.0 || ^8.0.0-0 babel-preset-jest@29.6.3: - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + resolution: {integrity: sha1-+gX6UQ59STiW17DdIDNgHIQPFxw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 babel-walk@3.0.0-canary-5: - resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} + resolution: {integrity: sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE=} engines: {node: '>= 10.0.0'} badgen@3.3.2: - resolution: {integrity: sha512-fbQwK9norfdzbdsoPwbLIAmgBXDGEme3jeIyqPAH7o6vp9lmuLHS7uXULvOiQ6XnMLkYNG4gDjILf74hgtTAug==} + resolution: {integrity: sha1-jQhoC87/j+DFlouDqYw4MPHagV8=} bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + resolution: {integrity: sha1-0m9c2P5db4MqMVF7n3w1YEC6bV0=} balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=} - balanced-match@4.0.3: - resolution: {integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==} - engines: {node: 20 || >=22} + balanced-match@4.0.4: + resolution: {integrity: sha1-v7EGYv7tgZaixi58aOF3IMJ0F5o=} + engines: {node: 18 || 20 || >=22} bare-events@2.9.1: - resolution: {integrity: sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg==} + resolution: {integrity: sha1-XIZhaWY0O8sDobMVX+qyU+rb80k=} peerDependencies: bare-abort-controller: '*' peerDependenciesMeta: bare-abort-controller: optional: true - bare-fs@4.1.5: - resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==} - engines: {bare: '>=1.16.0'} - peerDependencies: - bare-buffer: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - bare-fs@4.7.4: - resolution: {integrity: sha512-y1kC+ffIx/tPLdTE693uNjHfzTfr+ravR5tvWlMXe25nELbkqV400S71qHDwbkAQ1FVEZobB1NFRzFbCCcyBCQ==} + resolution: {integrity: sha1-Q1CH1CR38Gft3zwsdG506dthd7w=} engines: {bare: '>=1.16.0'} peerDependencies: bare-buffer: '*' @@ -11456,18 +10711,11 @@ packages: bare-buffer: optional: true - bare-os@3.6.1: - resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} - engines: {bare: '>=1.14.0'} - - bare-path@3.0.0: - resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} - bare-path@3.1.1: - resolution: {integrity: sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==} + resolution: {integrity: sha1-1KIHwIhgm0Zjp1VqRqlzQjmL9+I=} bare-stream@2.13.3: - resolution: {integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==} + resolution: {integrity: sha1-9hhsfLtLv1OkVg815IsWNzulHOY=} peerDependencies: bare-abort-controller: '*' bare-buffer: '*' @@ -11480,182 +10728,171 @@ packages: bare-events: optional: true - bare-stream@2.6.5: - resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==} - peerDependencies: - bare-buffer: '*' - bare-events: '*' - peerDependenciesMeta: - bare-buffer: - optional: true - bare-events: - optional: true - - bare-url@2.4.5: - resolution: {integrity: sha512-K+y9xF1tN+CdPu4qWwr0QiK1Al07eFPGYK5M2pDXcmHdMdgC/tT/bpmMe1hrmRHaidKLkXrC+cRNYf3XVDUhSQ==} + bare-url@2.4.6: + resolution: {integrity: sha1-Yo8iMWDgPno6ClzXYfYcZETRcps=} base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + resolution: {integrity: sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=} baseline-browser-mapping@2.11.1: - resolution: {integrity: sha512-HYXq73DDpCtNzOmrFsm9eSwCvWCql0RzqjpDzXN9EadiLJ4DNat0nsZ/Bzmy+Ud12mb4/zKDY0cQ805ZzN+i0A==} + resolution: {integrity: sha1-OQtHFFWGNAk993rdSsygxcDBYF4=} engines: {node: '>=6.0.0'} hasBin: true - basic-ftp@5.3.0: - resolution: {integrity: sha512-5K9eNNn7ywHPsYnFwjKgYH8Hf8B5emh7JKcPaVjjrMJFQQwGpwowEnZNEtHs7DfR7hCZsmaK3VA4HUK0YarT+w==} + basic-ftp@5.3.1: + resolution: {integrity: sha1-MUjumvQ8BSJRSk+XP+yx08u21x4=} engines: {node: '>=10.0.0'} batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=} bent@7.3.12: - resolution: {integrity: sha512-T3yrKnVGB63zRuoco/7Ybl7BwwGZR0lceoVG5XmQyMIH9s19SV5m+a8qam4if0zQuAmOQTyPTPmsQBdAorGK3w==} + resolution: {integrity: sha1-4KJ3XUQl52dMZLeLJCr09J2msDU=} better-sqlite3@12.6.2: - resolution: {integrity: sha512-8VYKM3MjCa9WcaSAI3hzwhmyHVlH8tiGFwf0RlTsZPWJ1I5MkzjiudCo4KC4DxOaL/53A5B1sI/IbldNFDbsKA==} + resolution: {integrity: sha1-dwZJ8opi5UOjYPPfoa/kzJRLGTc=} engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x} bidi-js@1.0.3: - resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} + resolution: {integrity: sha1-b4vPPId8TZIg3fSbm7aTDIj4d9I=} bignumber.js@9.3.1: - resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==} + resolution: {integrity: sha1-dZxard8v/cTxVPe0k+HIdw+IxNc=} binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + resolution: {integrity: sha1-9uFKl4WNMnJSIAJC1Mz+UixEVSI=} engines: {node: '>=8'} - binaryextensions@4.19.0: - resolution: {integrity: sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==} - engines: {node: '>=0.8'} + binaryextensions@6.11.0: + resolution: {integrity: sha1-w2s+a1xZ5iFgVwmwmc2o3agkzHI=} + engines: {node: '>=4'} bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: {integrity: sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=} bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + resolution: {integrity: sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=} blamer@1.0.7: - resolution: {integrity: sha512-GbBStl/EVlSWkiJQBZps3H1iARBrC7vt++Jb/TTmCNu/jZ04VW7tSN1nScbFXBUy1AN+jzeL7Zep9sbQxLhXKA==} + resolution: {integrity: sha1-tUW9J8a6WDujGJcHr2tL929mUg4=} engines: {node: '>=8.9'} body-parser@1.20.6: - resolution: {integrity: sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==} + resolution: {integrity: sha1-YMeJx44JktkG2gop1xrgHRXB7XY=} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} body-parser@2.3.0: - resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==} + resolution: {integrity: sha1-bYZi9NjDNgKLismqJCUbDKZLpDc=} engines: {node: '>=18'} - bonjour-service@1.4.1: - resolution: {integrity: sha512-9KM4QMPKnaJqaja1v7gYO/+TXZGLtzPA05NmUTqDAJjcsWeVoOXKMvU9g0gfuuoYTQqJZ924hivICd5R/bCJbA==} + bonjour-service@1.4.3: + resolution: {integrity: sha1-WFTjSjOrUlKmbMMf+0ZofjDDpfY=} boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} boolean@3.2.0: - resolution: {integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==} + resolution: {integrity: sha1-nlKUr06YMUSUy7F5efpUyhWfEWs=} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - bootstrap@5.3.6: - resolution: {integrity: sha512-jX0GAcRzvdwISuvArXn3m7KZscWWFAf1MKBcnzaN02qWMb3jpMoUX4/qgeiGzqyIb4ojulRzs89UCUmGcFSzTA==} + bootstrap@5.3.8: + resolution: {integrity: sha1-ZAGhAFeiJ1LSH04ZBVUImAZWru0=} peerDependencies: '@popperjs/core': ^2.11.8 boundary@2.0.0: - resolution: {integrity: sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==} + resolution: {integrity: sha1-FpyLHw1Ezywlk4lnoyjzfgpOXvw=} - bowser@2.11.0: - resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} + bowser@2.14.1: + resolution: {integrity: sha1-TqOb8x4wUYRSLXrXv9kTieTwy3k=} brace-expansion@1.1.16: - resolution: {integrity: sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==} + resolution: {integrity: sha1-cj06MMBVjCJavJ/Eeac+FOJsPC8=} brace-expansion@2.1.2: - resolution: {integrity: sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==} + resolution: {integrity: sha1-C7oicf631Fiw0xrRNiWqpHVEMeI=} brace-expansion@5.0.8: - resolution: {integrity: sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==} + resolution: {integrity: sha1-E1rQ2NgI6xjrXg7Joh86C5LvGM8=} engines: {node: 20 || >=22} braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + resolution: {integrity: sha1-SQMy9AkZRSJy1VqEgK3AxEE1h4k=} engines: {node: '>=8'} browser-stdout@1.3.1: - resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} + resolution: {integrity: sha1-uqVZ7hTO1zRSIputcyZGfGH6vWA=} browserslist@4.28.7: - resolution: {integrity: sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==} + resolution: {integrity: sha1-QJBGUX/M0uUc3CDwd0VLcUEYQCg=} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + resolution: {integrity: sha1-6302UwenLPl0zGzadraDVK0za9g=} engines: {node: '>= 6'} bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + resolution: {integrity: sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=} - bson@6.10.3: - resolution: {integrity: sha512-MTxGsqgYTwfshYWTRdmZRC+M7FnG1b4y7RO7p2k3X24Wq0yv1m77Wsj0BzlPzd/IowgESfsruQCUToa7vbOpPQ==} + bson@6.10.4: + resolution: {integrity: sha1-1TBzO7W7FvslwWLgGjNE+rMy/Ss=} engines: {node: '>=16.20.1'} buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} buffer-crc32@1.0.0: - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} + resolution: {integrity: sha1-oQmTuQVQgdVTBL2f60oHLeF59AU=} engines: {node: '>=8.0.0'} buffer-equal-constant-time@1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: {integrity: sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=} buffer@5.6.0: - resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} + resolution: {integrity: sha1-oxdJ3H2B2E2wir+Te2uMQDP2J4Y=} buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + resolution: {integrity: sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA=} buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + resolution: {integrity: sha1-Ks5XhFnMj74qcKqo9S7mO2p0xsY=} - builder-util-runtime@9.3.1: - resolution: {integrity: sha512-2/egrNDDnRaxVwK3A+cJq6UOlqOdedGA7JPqCeJjN2Zjk1/QB/6QUi3b714ScIGS7HafFXTyzJEOr5b44I3kvQ==} + builder-util-runtime@9.5.1: + resolution: {integrity: sha1-dBJfs3TR7L9HKuF4dIVIX/dhlwI=} engines: {node: '>=12.0.0'} - builder-util-runtime@9.5.1: - resolution: {integrity: sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ==} + builder-util-runtime@9.7.0: + resolution: {integrity: sha1-yG+6MDaE6Hfa7hXCnu3oGYcWb+8=} engines: {node: '>=12.0.0'} builder-util@26.8.1: - resolution: {integrity: sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw==} + resolution: {integrity: sha1-UP38LU/+tvc5rzY7W9YMScldQXA=} builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + resolution: {integrity: sha1-yuYoEriYAellYzbkYiPgMDhr57Y=} engines: {node: '>=6'} bundle-name@4.1.0: - resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + resolution: {integrity: sha1-87lrNBYNZDGhnXaIE1r3z7h5eIk=} engines: {node: '>=18'} bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + resolution: {integrity: sha1-iwvuuYYFrfGxKPpDhkA8AJ4CIaU=} engines: {node: '>= 0.8'} bytesish@0.4.4: - resolution: {integrity: sha512-i4uu6M4zuMUiyfZN4RU2+i9+peJh//pXhd9x1oSe1LBkZ3LEbCoygu8W0bXTukU1Jme2txKuotpCZRaC3FLxcQ==} + resolution: {integrity: sha1-87U1oPEVN0dCeu4nJWdIz/kjR+Y=} bytestreamjs@2.0.1: - resolution: {integrity: sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==} + resolution: {integrity: sha1-oylHx844mm+hGgmppWPQpFiJU14=} engines: {node: '>=6.0.0'} c8@10.1.3: - resolution: {integrity: sha512-LvcyrOAaOnrrlMpW22n690PUvxiq4Uf9WMhQwNJ9vgagkL/ph1+D4uvjvDA5XCbykrc0sx+ay6pVi9YZ1GnhyA==} + resolution: {integrity: sha1-VK+yXr3MfzsAESSCxtkNdUGtL80=} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -11665,445 +10902,428 @@ packages: optional: true cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + resolution: {integrity: sha1-gE4eb1Bu42PLDjzLsJytXdmHCVk=} engines: {node: '>=8'} cache-content-type@1.0.1: - resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} + resolution: {integrity: sha1-A1zeKwjuISn0qDFeqPAKANuhRTw=} engines: {node: '>= 6.0.0'} cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + resolution: {integrity: sha1-WmuGWyxENXvj1evCpGewMnGacAU=} engines: {node: '>=10.6.0'} cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + resolution: {integrity: sha1-ejPr8IYTF4tANjW+e4mdPmm76Bc=} engines: {node: '>=8'} call-bind-apply-helpers@1.0.2: - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + resolution: {integrity: sha1-S1QowiK+mF15w9gmV0edvgtZstY=} engines: {node: '>= 0.4'} - call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + call-bind@1.0.9: + resolution: {integrity: sha1-OaZEcAyAvH0MqRAvxtHUOy/X7uc=} engines: {node: '>= 0.4'} call-bound@1.0.4: - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + resolution: {integrity: sha1-I43pNdKippKSjFOMfM+pEGf9Bio=} engines: {node: '>= 0.4'} callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=} engines: {node: '>=6'} camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + resolution: {integrity: sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=} camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=} engines: {node: '>=6'} camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + resolution: {integrity: sha1-VoW5XrIJrJwMF3Rnd4ychN9Yupo=} engines: {node: '>=10'} caniuse-lite@1.0.30001806: - resolution: {integrity: sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==} + resolution: {integrity: sha1-G8jlArcj+jk0Vd++3VzOwMKbt04=} caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + resolution: {integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=} ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + resolution: {integrity: sha1-F6O/gjAuCHDW2kOgExGovAKj7PU=} chai-a11y-axe@1.5.0: - resolution: {integrity: sha512-V/Vg/zJDr9aIkaHJ2KQu7lGTQQm5ZOH4u1k5iTMvIXuSVlSuUo0jcSpSqf9wUn9zl6oQXa4e4E0cqH18KOgKlQ==} + resolution: {integrity: sha1-qvo3+R9Tuur+mCGXaOXe6Hds9lU=} chalk-template@0.4.0: - resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==} + resolution: {integrity: sha1-aSwDTQ7WJDa5BiwXB/rc0PdTIEs=} engines: {node: '>=12'} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=} engines: {node: '>=10'} chalk@5.6.2: - resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + resolution: {integrity: sha1-sSOLbiPqM3r3HH+KKV21rwwViuo=} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} change-case@5.4.4: - resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + resolution: {integrity: sha1-DVK1B9j7jyBDQ0MjgdGm17/5egI=} char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + resolution: {integrity: sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8=} engines: {node: '>=10'} character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + resolution: {integrity: sha1-LQnC5yzZUjB2zLIRV9/2atQ/zCI=} character-parser@2.2.0: - resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} + resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=} - chardet@2.1.0: - resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} + chardet@2.2.0: + resolution: {integrity: sha1-AF1mTyy9SWGIjS4sMsWmnlnY7sQ=} cheerio-select@2.1.0: - resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + resolution: {integrity: sha1-TYZzKGuBJsoqjkJ0DV48SISuIbQ=} cheerio@1.0.0-rc.12: - resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + resolution: {integrity: sha1-eIv3RmUGsca/X65R0kosTWLkdoM=} engines: {node: '>= 6'} - cheerio@1.1.0: - resolution: {integrity: sha512-+0hMx9eYhJvWbgpKV9hN7jg0JcwydpopZE4hgi+KvQtByZXPp04NiCWU0LzcAbP63abZckIHkTQaXVF52mX3xQ==} - engines: {node: '>=18.17'} - cheerio@1.2.0: - resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==} + resolution: {integrity: sha1-8jt3fEkCHq10ddzzOQ01Naf4ltY=} engines: {node: '>=20.18.1'} chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + resolution: {integrity: sha1-GXxsxmnvKo3F57TZfuTgksPrDVs=} engines: {node: '>= 8.10.0'} chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + resolution: {integrity: sha1-e+N6TAPJruHs/oYqSiOyxwwgXTA=} engines: {node: '>= 14.16.0'} chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + resolution: {integrity: sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=} chownr@3.0.0: - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} + resolution: {integrity: sha1-mFXmTs0kCpzEJnzopKpdJKHaFeQ=} engines: {node: '>=18'} chrome-launcher@0.15.2: - resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + resolution: {integrity: sha1-TmQE4yIACV/c5/ah4QBPm9Nvpdo=} engines: {node: '>=12.13.0'} hasBin: true chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + resolution: {integrity: sha1-Bb/9f/koRlCTMUcIyTvfqb0fD1s=} engines: {node: '>=6.0'} chromium-bidi@0.11.0: - resolution: {integrity: sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==} + resolution: {integrity: sha1-nDxC7ntC2ESOn86NZJ3Iv7zDEVM=} peerDependencies: devtools-protocol: '*' chromium-bidi@14.0.0: - resolution: {integrity: sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==} + resolution: {integrity: sha1-FaEqsIOuUZpJpyTpSZTKCpztnI4=} peerDependencies: devtools-protocol: '*' chromium-pickle-js@0.2.0: - resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==} + resolution: {integrity: sha1-BKEGZywYsIWrd02YPfo+oTjyIgU=} ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + resolution: {integrity: sha1-QnmmICinsfJi80c/yWBfXiGMWbQ=} engines: {node: '>=8'} ci-info@4.3.1: - resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} + resolution: {integrity: sha1-NVrVcZIIELViPhHUAjL0Q/FvHao=} + engines: {node: '>=8'} + + ci-info@4.4.0: + resolution: {integrity: sha1-fVTv+fVLRbYkAcJgMmlutZyL0Yw=} engines: {node: '>=8'} - cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} + cjs-module-lexer@1.4.3: + resolution: {integrity: sha1-D3lzHrjP4exyrNQGbvrJ1hmRsA0=} clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + resolution: {integrity: sha1-szBlPNO9a3UAnMJccUyue5M1HM0=} engines: {node: '>= 10.0'} - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - clean-stack@3.0.1: - resolution: {integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==} + resolution: {integrity: sha1-FVvwsiIb9fT7qJUo0kxZU/F/46g=} engines: {node: '>=10'} cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + resolution: {integrity: sha1-caEMcW/uugBeRQTzYynvCxfPMUU=} engines: {node: '>=10'} cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + resolution: {integrity: sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=} engines: {node: '>=8'} cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + resolution: {integrity: sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} cli-cursor@5.0.0: - resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + resolution: {integrity: sha1-JKSDHs9aawHd6zL7caSyCIsNzjg=} engines: {node: '>=18'} cli-highlight@2.1.11: - resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} + resolution: {integrity: sha1-SXNvpFLwqvT65YDjCssmgo0twb8=} engines: {node: '>=8.0.0', npm: '>=5.0.0'} hasBin: true cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + resolution: {integrity: sha1-F3Oo9LnE1qwxVj31Oz/B15Ri/kE=} engines: {node: '>=6'} cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + resolution: {integrity: sha1-ATuRNRdic5wWqVZ8IaBGMuRJvy8=} engines: {node: 10.* || >= 12.*} cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + resolution: {integrity: sha1-w54ovwXtzeW+O5iZKiLe7Vork8c=} engines: {node: '>=8'} cli-truncate@4.0.0: - resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + resolution: {integrity: sha1-bMKKKST+6eJc6R6XPbVscGbmFyo=} engines: {node: '>=18'} cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + resolution: {integrity: sha1-QtqsQdPCVO84rYrAN2chMBc2kcU=} engines: {node: '>= 12'} cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + resolution: {integrity: sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=} cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + resolution: {integrity: sha1-DASwddsCy/5g3I5s8vVIaxo2CKo=} engines: {node: '>=12'} clone-deep@0.2.4: - resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + resolution: {integrity: sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=} engines: {node: '>=0.10.0'} clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + resolution: {integrity: sha1-wZ/Zvbv4WUK0/ZechNz31fB8I4c=} engines: {node: '>=6'} clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + resolution: {integrity: sha1-ryAyqkeBY5nPXwodDbkC9ReruMM=} clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=} engines: {node: '>=0.8'} clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=} engines: {node: '>=0.8'} clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + resolution: {integrity: sha1-7tOXyf2L2IK/sY3qtxAgSaLzKZk=} engines: {node: '>=6'} co-body@6.2.0: - resolution: {integrity: sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==} + resolution: {integrity: sha1-r9d21g5WWfTu6GLfg0mWmOsa6hs=} engines: {node: '>=8.0.0'} co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} cockatiel@3.2.1: - resolution: {integrity: sha512-gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q==} + resolution: {integrity: sha1-V1+Te8QECiCuJzUqbQfJxadBmB8=} engines: {node: '>=16'} code-excerpt@4.0.0: - resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} + resolution: {integrity: sha1-LefUbphRQ4XLAfezt0EyARX0yV4=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - codemirror@6.0.1: - resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==} + codemirror@6.0.2: + resolution: {integrity: sha1-TT/qGtYLZ1P5fKg18vSMaTaolG4=} - collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + collect-v8-coverage@1.0.3: + resolution: {integrity: sha1-zB8B640CKYy8mkN8dMcKtOUhC4A=} color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=} engines: {node: '>=7.0.0'} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=} color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + resolution: {integrity: sha1-RGf5FG8Db4Vbdk37W/hYK/NCx6Q=} color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + resolution: {integrity: sha1-14HsteVyJO5D6pYnVgEHwODGRjo=} engines: {node: '>=12.5.0'} colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: {integrity: sha1-nreT5oMwZ/cjWQL807CZF6AAqVo=} colors@1.4.0: - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} + resolution: {integrity: sha1-xQSRR51MG9rtLJztMs98fcI2D3g=} engines: {node: '>=0.1.90'} combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + resolution: {integrity: sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=} engines: {node: '>= 0.8'} command-line-args@5.2.1: - resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + resolution: {integrity: sha1-xEwy5DelfXxRFXaWiTxZCenOxC4=} engines: {node: '>=4.0.0'} - command-line-usage@7.0.3: - resolution: {integrity: sha512-PqMLy5+YGwhMh1wS04mVG44oqDsgyLRSKJBdOo1bnYhMKBW65gZF1dRp2OZRhiTjgUHljy99qkO7bsctLaw35Q==} + command-line-usage@7.0.4: + resolution: {integrity: sha1-dZRJusOcVBDiNRPx94VRtmnfFRQ=} engines: {node: '>=12.20.0'} commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + resolution: {integrity: sha1-iB7ka0930cHczFgjQzqjmwIsvgY=} engines: {node: '>=14'} commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + resolution: {integrity: sha1-AUI7NvUBJZ/arE0OTWDJbJkVhdM=} engines: {node: '>=18'} - commander@14.0.2: - resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==} + commander@14.0.3: + resolution: {integrity: sha1-Ql15tI+a+C/Nnk/B6or2xewHu8I=} engines: {node: '>=20'} commander@15.0.0: - resolution: {integrity: sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg==} + resolution: {integrity: sha1-lvOWHxKtrBeZ7z+9i8YdQFctGxE=} engines: {node: '>=22.12.0'} commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: {integrity: sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=} commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + resolution: {integrity: sha1-Rqu9FlL44Fm92u+Zu9yyrZzxea4=} engines: {node: '>= 6'} commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + resolution: {integrity: sha1-o2y1fQtQHOEI5NIFWaFQo5HZerc=} engines: {node: '>= 10'} commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + resolution: {integrity: sha1-SDfqGy2me5xhamevuw+v7lZ7ymY=} engines: {node: '>= 12'} commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + resolution: {integrity: sha1-vAjR61zt98y3l6lhmdQce8PmDTA=} engines: {node: ^12.20.0 || >=14} commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} compare-version@0.1.2: - resolution: {integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==} + resolution: {integrity: sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=} engines: {node: '>=0.10.0'} compress-commons@2.1.1: - resolution: {integrity: sha512-eVw6n7CnEMFzc3duyFVrQEuY1BlHR3rYsSztyG32ibGMW722i3C6IizEGMFmfMU+A+fALvBIwxN3czffTcdA+Q==} + resolution: {integrity: sha1-lBDZpTTPhDXj+7t8bOSN4twvBhA=} engines: {node: '>= 6'} compress-commons@6.0.2: - resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} + resolution: {integrity: sha1-JtMSUaZrnWuiOoQGTs06anHSYJ4=} engines: {node: '>= 14'} compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + resolution: {integrity: sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=} engines: {node: '>= 0.6'} compression@1.8.1: - resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} + resolution: {integrity: sha1-SkXZCawWUJGVqaKL2RCUiJwYDXk=} engines: {node: '>= 0.8.0'} concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} - concurrently@9.1.2: - resolution: {integrity: sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==} + concurrently@9.2.4: + resolution: {integrity: sha1-TNm7pzWt4syyh/AA+HBlE9L1gfg=} engines: {node: '>=18'} hasBin: true connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + resolution: {integrity: sha1-ZHJkhFJRoNryW5fOh4NMrOD18cg=} engines: {node: '>=0.8'} constantinople@4.0.1: - resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} + resolution: {integrity: sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE=} content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + resolution: {integrity: sha1-i4K076yCUSoCuwsdzsnSxejrW/4=} engines: {node: '>= 0.6'} content-disposition@1.1.0: - resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==} + resolution: {integrity: sha1-89t4nHUtRVZMx+nh4LMXkNSjjhc=} engines: {node: '>=18'} content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + resolution: {integrity: sha1-i3cxYmVtHRCGeEyPI6VM5tc9eRg=} engines: {node: '>= 0.6'} content-type@2.0.0: - resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==} + resolution: {integrity: sha1-L7Pt5p3/oK94ynxM51iWgGOLVt8=} engines: {node: '>=18'} convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: {integrity: sha1-S1YPZJ/E6RjdCrdc9JYei8iC2Co=} convert-to-spaces@2.0.1: - resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} + resolution: {integrity: sha1-YabJj4qmJsFrKWuGKpFBKjO862s=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} cookie-signature@1.0.7: - resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==} + resolution: {integrity: sha1-q13Xq3V8VOYPN+9lUPSBxCbRBFQ=} cookie-signature@1.2.2: - resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} + resolution: {integrity: sha1-V8f8PMKTrKuf7FTXPhVpDr5KF5M=} engines: {node: '>=6.6.0'} cookie@0.7.2: - resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + resolution: {integrity: sha1-VWNpxHKiupEPKXmJG1JrNDYjftc=} engines: {node: '>= 0.6'} cookies@0.9.1: - resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==} + resolution: {integrity: sha1-P/7W9gu0+18Ub+7tulCsxBivZ+M=} engines: {node: '>= 0.8'} - copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + copy-anything@3.0.5: + resolution: {integrity: sha1-LZLc6MSY95D6etFrAaGuWkWwIKA=} + engines: {node: '>=12.13'} copy-webpack-plugin@12.0.2: - resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} + resolution: {integrity: sha1-k15XuOYYPIL5W9k332WKWfai2ig=} engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.1.0 copyfiles@2.4.1: - resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==} + resolution: {integrity: sha1-0tz/YKqtEBXwnQtm5/Dxxc08XaU=} hasBin: true core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=} core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} + resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=} cors@2.8.6: - resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==} + resolution: {integrity: sha1-/13Wm9leVHUDgg0pq6T4+vjf7JY=} engines: {node: '>= 0.10'} cose-base@1.0.3: - resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} + resolution: {integrity: sha1-ZQM0tBuGlXilQzWLgM2n4Kvgpgo=} cose-base@2.2.0: - resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==} + resolution: {integrity: sha1-HDlcNbbhC7g/l2nKi4F9YUrdXAE=} cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + resolution: {integrity: sha1-Bgorhx1m26bIU46hEYuhrBb1+uM=} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -12111,8 +11331,8 @@ packages: typescript: optional: true - cosmiconfig@9.0.0: - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + cosmiconfig@9.0.2: + resolution: {integrity: sha1-nlYVFjvs9qgiEfsz0vaJR8JdDF4=} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -12121,314 +11341,300 @@ packages: optional: true crc-32@1.2.2: - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} + resolution: {integrity: sha1-PK01qTS4v3HyXKUkttpR+36s4v8=} engines: {node: '>=0.8'} hasBin: true crc32-stream@3.0.1: - resolution: {integrity: sha512-mctvpXlbzsvK+6z8kJwSJ5crm7yBwrQMTybJzMw1O4lLGJqjlDCXY2Zw7KheiA6XBEcBmfLx1D88mjRGVJtY9w==} + resolution: {integrity: sha1-yubu7QA7DkTXOdJ53lrmOxcbToU=} engines: {node: '>= 6.9.0'} crc32-stream@6.0.0: - resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} + resolution: {integrity: sha1-hSmjho+LJ6u5FfbDYXwPre2/lDA=} engines: {node: '>= 14'} crc@3.8.0: - resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==} + resolution: {integrity: sha1-rWAmnCyFb4wpnixMwN5FVpFAVsY=} create-jest@29.7.0: - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + resolution: {integrity: sha1-o1XFs8seGvAroXf+ev1/7uSaUyA=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - - crelt@1.0.6: - resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + resolution: {integrity: sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=} crelt@1.0.7: - resolution: {integrity: sha512-aK6BbWfhf4U/wCcLHKPJl/xa6VkVstRaPywWtMKGwuOLc/wZTyQYuoxgvZnNsBvv7Kg3YTBQYYBCggcviQczuA==} + resolution: {integrity: sha1-O0QbLd+nMWHWoncKpM1nf4leryg=} cross-dirname@0.1.0: - resolution: {integrity: sha512-+R08/oI0nl3vfPcqftZRpytksBXDzOUveBq/NBVx0sUp1axwzPQrKinNx5yd5sxPu8j1wIy8AfnVQ+5eFdha6Q==} + resolution: {integrity: sha1-uJlZnzClOJ9Z54wVDhn5V60Wo3w=} cross-env@7.0.3: - resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + resolution: {integrity: sha1-hlJkspZ33AFbqEGJGJZd0jL8VM8=} engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} hasBin: true cross-spawn@6.0.6: - resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + resolution: {integrity: sha1-MNDvoHEt2361p24ehyG/+vprXVc=} engines: {node: '>=4.8'} cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + resolution: {integrity: sha1-ilj+ePANzXDDcEUXWd+/rwPo7p8=} engines: {node: '>= 8'} crx@5.0.1: - resolution: {integrity: sha512-n/PzBx/fR1+xZCiJBats9y5zw/a+YBcoJ0ABnUaY56xb1RpXuFhsiCMpNY6WjVtylLzhUUXSWsbitesVg7v2vg==} + resolution: {integrity: sha1-M/eoE3Ws+rGqOoKRQkIjQ03Al4s=} engines: {node: '>=10'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. hasBin: true css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + resolution: {integrity: sha1-23EpsoRmYv2GKM/ElquytZ5BUps=} - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + css-select@5.2.2: + resolution: {integrity: sha1-Abbo0WNje7LdbJgspO1lhjaCeG4=} css-tree@3.2.1: - resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} + resolution: {integrity: sha1-hsrHARVhJysw5rHgQrps4EeqdRg=} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - css-what@6.2.2: - resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + resolution: {integrity: sha1-zcyPm2l3cZ/fvR3nrsJKv3Vrneo=} engines: {node: '>= 6'} cssfilter@0.0.10: - resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} + resolution: {integrity: sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=} cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + resolution: {integrity: sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=} cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + resolution: {integrity: sha1-0lT6ks2Lb72DgRufuu00ZjzBfDY=} cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + resolution: {integrity: sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=} engines: {node: '>=8'} cssstyle@6.2.0: - resolution: {integrity: sha512-Fm5NvhYathRnXNVndkUsCCuR63DCLVVwGOOwQw782coXFi5HhkXdu289l59HlXZBawsyNccXfWRYvLzcDCdDig==} + resolution: {integrity: sha1-xBtZlVwZx6EiM1LWfKRidQIErQ8=} engines: {node: '>=20'} - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - csstype@3.2.3: - resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + resolution: {integrity: sha1-7EjA8+mT5QZIyG2lWeJhCZXPmJo=} cytoscape-cose-bilkent@4.1.0: - resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} + resolution: {integrity: sha1-di+hId+ZMP/rUaSV2HkXxXCsIJs=} peerDependencies: cytoscape: ^3.2.0 cytoscape-dagre@2.5.0: - resolution: {integrity: sha512-VG2Knemmshop4kh5fpLO27rYcyUaaDkRw+6PiX4bstpB+QFt0p2oauMrsjVbUamGWQ6YNavh7x2em2uZlzV44g==} + resolution: {integrity: sha1-R9mDWrZN0LWW2clHMfBwKC+C/Fo=} peerDependencies: cytoscape: ^3.2.22 cytoscape-fcose@2.2.0: - resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==} + resolution: {integrity: sha1-5Nb2SQ30+rWK6c6p5cOrjXRy9HE=} peerDependencies: cytoscape: ^3.2.0 - cytoscape@3.33.3: - resolution: {integrity: sha512-Gej7U+OKR+LZ8kvX7rb2HhCYJ0IhvEFsnkud4SB1PR+BUY/TsSO0dmOW59WEVLu51b1Rm+gQRKoz4bLYxGSZ2g==} - engines: {node: '>=0.10'} - cytoscape@3.34.0: - resolution: {integrity: sha512-62rNSrioXw93uliKFBwjukeQyeWwH2PqDrTac31r2P6464u3AUvTk0xS4LVvT251g7IgkFunrI48ZEZGjywSOg==} + resolution: {integrity: sha1-X74usc92sHCo7NVkfDX2WqCXycY=} engines: {node: '>=0.10'} d3-array@2.12.1: - resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + resolution: {integrity: sha1-4gtBqvzf/fXVCSgATs7PgVpGXoE=} d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + resolution: {integrity: sha1-Ff7DOyN/l6xdfJhtx32ic6jtC7U=} engines: {node: '>=12'} d3-axis@3.0.0: - resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} + resolution: {integrity: sha1-xCpKE+gTHWN7dF/Clzgkz+r5MyI=} engines: {node: '>=12'} d3-brush@3.0.0: - resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} + resolution: {integrity: sha1-b3Z8Ttjct53n7ePhwPieY+9k0xw=} engines: {node: '>=12'} d3-chord@3.0.1: - resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} + resolution: {integrity: sha1-0VbWH0hfzoMn5qvzOctB2Mu6aWY=} engines: {node: '>=12'} - d3-cloud@1.2.7: - resolution: {integrity: sha512-8TrgcgwRIpoZYQp7s3fGB7tATWfhckRb8KcVd1bOgqkNdkJRDGWfdSf4HkHHzZxSczwQJdSxvfPudwir5IAJ3w==} + d3-cloud@1.2.9: + resolution: {integrity: sha1-P6AuQor8W/tswXwNPukEzQmCKq8=} d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + resolution: {integrity: sha1-OVsoM9+scVB/EqwvevI7+BneJOI=} engines: {node: '>=12'} d3-contour@4.0.2: - resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} + resolution: {integrity: sha1-u5IGO8jFZjrLJCL5nHPLtsauO8w=} engines: {node: '>=12'} d3-delaunay@6.0.4: - resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} + resolution: {integrity: sha1-mBaQOHM6ClurvtpVBU95W7nkpYs=} engines: {node: '>=12'} d3-dispatch@1.0.6: - resolution: {integrity: sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==} + resolution: {integrity: sha1-ANN7zuTdjNl3Kd2JOgrCnKq6XVg=} d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + resolution: {integrity: sha1-X8dShOnCN1w2yDlBGgz1UMv8TV4=} engines: {node: '>=12'} d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + resolution: {integrity: sha1-mUqunNI8cZ9TteEOOgphCMaWB7o=} engines: {node: '>=12'} d3-dsv@3.0.1: - resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} + resolution: {integrity: sha1-xjr5ePTWoNCEpSpnOSK+IWB4m3M=} engines: {node: '>=12'} hasBin: true d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + resolution: {integrity: sha1-llisOKIUDVnTRhYPH2ww/aC9EvQ=} engines: {node: '>=12'} d3-fetch@3.0.1: - resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} + resolution: {integrity: sha1-gxQb/5hWoO21443onNz+Y9CmCiI=} engines: {node: '>=12'} d3-force@3.0.0: - resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} + resolution: {integrity: sha1-Piuhph5wiI/j2RlOMNbRTuzhVcQ=} engines: {node: '>=12'} - d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + d3-format@3.1.2: + resolution: {integrity: sha1-Af20a1i+sfVbELQq1wtuNE1esq4=} engines: {node: '>=12'} d3-geo@3.1.1: - resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} + resolution: {integrity: sha1-YCfPUSRvmy69ZPmeAdx8M2QDOk0=} engines: {node: '>=12'} d3-hierarchy@3.1.2: - resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} + resolution: {integrity: sha1-sBzULB7tPUbbd6WWbPcm+MCRYMY=} engines: {node: '>=12'} d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + resolution: {integrity: sha1-PEeqWzLFs9+1bvP9Q0IHimMrQA0=} engines: {node: '>=12'} d3-path@1.0.9: - resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} + resolution: {integrity: sha1-SMBQux/owmJJOoyvVSTj6VkXAc8=} d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + resolution: {integrity: sha1-It+TkDL7WnGuixgA1h3beFHEJSY=} engines: {node: '>=12'} d3-polygon@3.0.1: - resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} + resolution: {integrity: sha1-C0XT3RxIopyOBX5hNWk+yAvxY5g=} engines: {node: '>=12'} d3-quadtree@3.0.1: - resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + resolution: {integrity: sha1-bco+i+Kzk8mp1RTau9gKkt7vGk8=} engines: {node: '>=12'} d3-random@3.0.1: - resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} + resolution: {integrity: sha1-1JJjeNMz2cC/0eb6AZTTCuuqIPQ=} engines: {node: '>=12'} d3-sankey@0.12.3: - resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} + resolution: {integrity: sha1-s8JoYnvXLl2AM26N5qy/7J0V0B0=} d3-scale-chromatic@3.1.0: - resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} + resolution: {integrity: sha1-NMOdopiyPCDgLxpLI5vQ8i5/ExQ=} engines: {node: '>=12'} d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + resolution: {integrity: sha1-grOOjo/3CAdk+Nzsd71L45Nok5Y=} engines: {node: '>=12'} d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + resolution: {integrity: sha1-wlM4IH76csxbm9FFihpBkB8eGzE=} engines: {node: '>=12'} d3-shape@1.3.7: - resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} + resolution: {integrity: sha1-32OAG+B7yYa8VPY3ibT+UCmStdc=} d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + resolution: {integrity: sha1-oag5y9m6RfKGdMadf4Vbz5HfxqU=} engines: {node: '>=12'} d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + resolution: {integrity: sha1-erUlelBB0R7LT+cKXH0WoZW7QIo=} engines: {node: '>=12'} d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + resolution: {integrity: sha1-kxDbVumS48AXXh7zheVF5Iqbtcc=} engines: {node: '>=12'} d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + resolution: {integrity: sha1-YoTSonCChbGrt+IB7aQ4CvNeY7A=} engines: {node: '>=12'} d3-transition@3.0.1: - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + resolution: {integrity: sha1-aGn93hRIhoB3/dWYkgDLYbKhZF8=} engines: {node: '>=12'} peerDependencies: d3-selection: 2 - 3 d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + resolution: {integrity: sha1-0T9BZccyF//qpUKVzWlps+eu6PM=} engines: {node: '>=12'} d3@7.9.0: - resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} + resolution: {integrity: sha1-V556yz10nK+IYL0XQa6NNxBwzV0=} engines: {node: '>=12'} dagre-d3-es@7.0.14: - resolution: {integrity: sha512-P4rFMVq9ESWqmOgK+dlXvOtLwYg0i7u0HBGJER0LZDJT2VHIPAMZ/riPxqJceWMStH5+E61QxFra9kIS3AqdMg==} + resolution: {integrity: sha1-EnInbiZFfPO5faxWn48FMewzw3c=} dagre@0.8.5: - resolution: {integrity: sha512-/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==} + resolution: {integrity: sha1-ujCwBV2sErbB/MJHgXRCd30Gr+4=} data-uri-to-buffer@6.0.2: - resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + resolution: {integrity: sha1-ili7ZzhLJho47xi+oYEMsBut0os=} engines: {node: '>= 14'} data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + resolution: {integrity: sha1-nPJKR3riK871zV9vC/vB0tO+kUM=} engines: {node: '>=12'} data-urls@7.0.0: - resolution: {integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==} + resolution: {integrity: sha1-bc6LYyJqHs/dkHzhiozPse7lBtM=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} data-view-buffer@1.0.2: - resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + resolution: {integrity: sha1-IRoDupXsr3eYqMcZjXlTYhH4hXA=} engines: {node: '>= 0.4'} data-view-byte-length@1.0.2: - resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + resolution: {integrity: sha1-noD3ylJFPOPpPSWjUxh2fqdwRzU=} engines: {node: '>= 0.4'} data-view-byte-offset@1.0.1: - resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + resolution: {integrity: sha1-BoMH+bcat2274QKROJ4CCFZgYZE=} engines: {node: '>= 0.4'} date-fns@2.30.0: - resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + resolution: {integrity: sha1-82fmRIOf9XiU7GrEgN5AyuSw9NA=} engines: {node: '>=0.11'} - date-fns@4.1.0: - resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==} + date-fns@4.4.0: + resolution: {integrity: sha1-gGU57fRcYWsrdrX3i4jFbtPH4DY=} - dayjs@1.11.20: - resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==} + dayjs@1.11.21: + resolution: {integrity: sha1-V/h1YuYt5288cEvSuNUi/DMGjrI=} dbus-next@0.10.2: - resolution: {integrity: sha512-kLNQoadPstLgKKGIXKrnRsMgtAK/o+ix3ZmcfTfvBHzghiO9yHXpoKImGnB50EXwnfSFaSAullW/7UrSkAISSQ==} + resolution: {integrity: sha1-phI84DY0ETWiJq4PF3hKWwHll3c=} debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + resolution: {integrity: sha1-OIgdj0FmpcWEgCDBGCe4NLyz4KU=} debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -12436,16 +11642,7 @@ packages: optional: true debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.4.1: - resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} - engines: {node: '>=6.0'} + resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -12453,7 +11650,7 @@ packages: optional: true debug@4.4.3: - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + resolution: {integrity: sha1-xq5DLZvZZiWC/OCHCbA4xY6ePWo=} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -12462,21 +11659,21 @@ packages: optional: true decamelize@4.0.0: - resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} + resolution: {integrity: sha1-qkcte/Zg6xXzSU79UxyrfypwmDc=} engines: {node: '>=10'} decimal.js@10.6.0: - resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + resolution: {integrity: sha1-5kmkPjq5U6chkv9Zg4ZeUJ837Zo=} - decode-named-character-reference@1.1.0: - resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==} + decode-named-character-reference@1.3.0: + resolution: {integrity: sha1-PkBgN2CHTC5YZ2kbWZ1zp9oltT8=} decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + resolution: {integrity: sha1-yjh2Et234QS9FthaqwDV7PCcZvw=} engines: {node: '>=10'} - dedent@1.7.0: - resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==} + dedent@1.7.2: + resolution: {integrity: sha1-NOImSrU4MB4nz3sHvyNpwZuqjdk=} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -12484,315 +11681,300 @@ packages: optional: true deep-equal@1.0.1: - resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} + resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=} deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + resolution: {integrity: sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw=} engines: {node: '>=4.0.0'} deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: {integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=} deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + resolution: {integrity: sha1-RLXyFHzTsA1LVhN2hZZvJv0l3Uo=} engines: {node: '>=0.10.0'} - default-browser-id@5.0.0: - resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} - engines: {node: '>=18'} - default-browser-id@5.0.1: - resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} - engines: {node: '>=18'} - - default-browser@5.2.1: - resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + resolution: {integrity: sha1-96fMuPUQS/jg9xujscz6Xq/bIeg=} engines: {node: '>=18'} default-browser@5.5.0: - resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} + resolution: {integrity: sha1-J5LohvJCKJRUWUfMgOGkRElsWXY=} engines: {node: '>=18'} default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + resolution: {integrity: sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE=} engines: {node: '>= 10'} defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + resolution: {integrity: sha1-sLAgYsHiqmL/XZUo8PmLqpCXjXo=} defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + resolution: {integrity: sha1-gBa9tBQ+RjK3ejRJxiNid95SBYc=} engines: {node: '>=10'} define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + resolution: {integrity: sha1-iU3BQbt9MGCuQ2b2oBB+aPvkjF4=} engines: {node: '>= 0.4'} define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + resolution: {integrity: sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8=} engines: {node: '>=8'} define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + resolution: {integrity: sha1-27Ga37dG1/xtc0oGty9KANAhJV8=} engines: {node: '>=12'} define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + resolution: {integrity: sha1-EHgcxhbrlRqAoDS6/Kpzd/avK2w=} engines: {node: '>= 0.4'} degenerator@5.0.1: - resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + resolution: {integrity: sha1-lAO/KXxtrZoezkCbN9snlU+R8vU=} engines: {node: '>= 14'} - delaunator@5.0.1: - resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + delaunator@5.1.0: + resolution: {integrity: sha1-0TJx+/Ov9nU/nqbiNVV/IJAQRuo=} delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} engines: {node: '>=0.4.0'} delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} engines: {node: '>= 0.6'} depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + resolution: {integrity: sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=} engines: {node: '>= 0.8'} dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} + resolution: {integrity: sha1-rAzn7WilTaIhZahel6AdU/XrLic=} engines: {node: '>= 0.6.0'} dependency-tree@11.5.0: - resolution: {integrity: sha512-K9zBwKDZrot3RkxizugpVSdImxULAg4Ycp3+ydy2r561k96oiiw6nfsOR15fwNDQ5BF2UXe+2JFM/H5Xz4MGQg==} + resolution: {integrity: sha1-//lUj4bm7OrOch34pcbaSzToyDQ=} engines: {node: '>=18'} hasBin: true dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + resolution: {integrity: sha1-JkQhTxmX057Q7g7OcjNUkKesZ74=} engines: {node: '>=6'} destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + resolution: {integrity: sha1-SANzVQmti+VSk0xn32FPlOZvoBU=} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + resolution: {integrity: sha1-WSSF67v2s7GrK+F1yDk9BMoNV+Y=} engines: {node: '>=8'} - detect-indent@7.0.1: - resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + detect-indent@7.0.2: + resolution: {integrity: sha1-FsUWv3XUsvdZ9oIUVUmW1GfI1kg=} engines: {node: '>=12.20'} - detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} - engines: {node: '>=8'} - detect-libc@2.1.2: - resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + resolution: {integrity: sha1-aJxdzcGQDvVYOky59te0c3QgdK0=} engines: {node: '>=8'} detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + resolution: {integrity: sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE=} engines: {node: '>=8'} detect-newline@4.0.1: - resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} + resolution: {integrity: sha1-/O/bVxPh+4yyg5uLbuIuZxarjyM=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + resolution: {integrity: sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=} detective-amd@6.1.0: - resolution: {integrity: sha512-fmI6LGMvotqd49QaA3ZYw+q0aGp2yXmMjzIuY6fH9j9YFIXY/73yDhMwhX9cPbhWd+AH06NH1Di/LKOuCH0Ubg==} + resolution: {integrity: sha1-esNfVTJa9d+XS7D+T9ysAycZ3DE=} engines: {node: '>=18'} hasBin: true detective-cjs@6.1.1: - resolution: {integrity: sha512-pSh7mkCKEtLlmANqLu3KDFS3NV8Hx41jy/JF1/gAWOgU+Uo5QTkeI1tWNP4dWGo4L0E9j18Ez9EPsTleautKqA==} + resolution: {integrity: sha1-t8eLZJ29+gu6IoqyjJcH9KBNX9c=} engines: {node: '>=18'} detective-es6@5.0.2: - resolution: {integrity: sha512-+qHHGYhjupiVs4rnIpI9nZ5B130A4AmE35ZX1w33hb46vcZ7T3jfDbvmPw0FhWtMHn5BS5HHu7ZtnZ53bMcXZA==} + resolution: {integrity: sha1-r8okW+VMu4uzFlkbGCy/m8gkPcA=} engines: {node: '>=18'} detective-postcss@8.0.4: - resolution: {integrity: sha512-DZ7M/hWPZyr17ZUdoQ+TVXaPj70mYr4XXrAE+GeJbca44haCvZgb191L/jLJmFYewhxRJuBd4lUtNSu986TXag==} + resolution: {integrity: sha1-1zlIPDDfu/YZQNH9sF0lBmNQcYk=} engines: {node: '>=18'} peerDependencies: postcss: ^8.4.47 detective-sass@6.0.2: - resolution: {integrity: sha512-i3xpXHDKS0qI2aFW4asQ7fqlPK00ndOVZELvQapFJCaF0VxYmsNWtd0AmvXbTLMk7bfO5VdIeorhY9KfmHVoVA==} + resolution: {integrity: sha1-PzpHkYhKujU/wm3pCQvI3zLf0MQ=} engines: {node: '>=18'} detective-scss@5.0.2: - resolution: {integrity: sha512-9JOEMZ8pDh3ShXmftq7hoQqqJsClaGgxo1hghfCeFlmKf5TC/Twtwb0PAaK8dXwpg9Z0uCmEYSrCxO+kel2eEg==} + resolution: {integrity: sha1-GcAu4IXhyZTMK9QJ9tX302sVIgo=} engines: {node: '>=18'} detective-stylus@5.0.1: - resolution: {integrity: sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA==} + resolution: {integrity: sha1-V9VKC0BTBe4WZV5CAIs4qCep8Xk=} engines: {node: '>=18'} detective-typescript@14.1.2: - resolution: {integrity: sha512-bIeEn0eVi/JRsE1YizBR2ilnMlWRAIBJJ6kXCKNFxEEWhUcEY3R6I3KYIAy48ieURbD1hcb3Ebvl8AqeoPMSzg==} + resolution: {integrity: sha1-EwIIq40NIZkxrnOUfOVoFKRittM=} engines: {node: '>=18'} peerDependencies: typescript: ^5.4.4 || ^6.0.2 detective-vue2@2.3.0: - resolution: {integrity: sha512-3gwbZPqVTm9sL9XdZsgEJ7x4x99O853VVZHapQAiEkGuMJMpFPjHDrecSgfqnS5JW3FJfYXesLZGvUOibjn49g==} + resolution: {integrity: sha1-jiApqW713PtXxdn+BbojCNbqK44=} engines: {node: '>=18'} peerDependencies: typescript: ^5.4.4 || ^6.0.2 devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + resolution: {integrity: sha1-TbfCyk3G4Og0wwvnDJS7yXbccBg=} devtools-protocol@0.0.1367902: - resolution: {integrity: sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==} + resolution: {integrity: sha1-czO/xEZsWlSkxt5Iqd+8tLgRZgw=} - devtools-protocol@0.0.1566079: - resolution: {integrity: sha512-MJfAEA1UfVhSs7fbSQOG4czavUp1ajfg6prlAN0+cmfa2zNjaIbvq8VneP7do1WAQQIvgNJWSMeP6UyI90gIlQ==} + devtools-protocol@0.0.1608973: + resolution: {integrity: sha1-VuCiqZmwbUFu6SjKBq66laWIBRU=} diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + resolution: {integrity: sha1-Ter4lNEUB8Ue/IQYAS+ecLhOqSE=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} diff@4.0.4: - resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==} + resolution: {integrity: sha1-em2/2jJfJfB1F+m1GPiXwIMy4H0=} engines: {node: '>=0.3.1'} diff@5.2.2: - resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==} + resolution: {integrity: sha1-CkdCeXKB0Jz6aZt56jLSdyNiO60=} engines: {node: '>=0.3.1'} diff@7.0.0: - resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==} + resolution: {integrity: sha1-P7NNOHzXbYA/buvqZ7kh2rAYKpo=} engines: {node: '>=0.3.1'} dir-compare@4.2.0: - resolution: {integrity: sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==} + resolution: {integrity: sha1-0dSZnBT79VKBBx/a5Ck7O5zobxk=} dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + resolution: {integrity: sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=} engines: {node: '>=8'} dmg-builder@26.8.1: - resolution: {integrity: sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg==} + resolution: {integrity: sha1-35mqeQZ2rCoqwDM7utvvO2B2ywM=} dmg-license@1.0.11: - resolution: {integrity: sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==} + resolution: {integrity: sha1-ezvDdF0bUr51BrTugMth325M15o=} engines: {node: '>=8'} os: [darwin] hasBin: true dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + resolution: {integrity: sha1-roiK1CWp0UeKBnQlarhm3hASzy8=} engines: {node: '>=6'} doctypes@1.1.0: - resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} + resolution: {integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=} dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + resolution: {integrity: sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=} dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + resolution: {integrity: sha1-3l1Bsa6ikCFdxFptrorc8dMuLTA=} dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + resolution: {integrity: sha1-5BuALh7t+fbK4YPOXmIteJ19jlM=} domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: {integrity: sha1-XEXo6GmVJiYzHXqrMm0B2vZdWJ0=} domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + resolution: {integrity: sha1-StG+VsytyG/HbQMzU5magDfQNnM=} engines: {node: '>=12'} deprecated: Use your platform's native DOMException instead domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + resolution: {integrity: sha1-jXkgM0FvWdaLwDpap7AYwcqJJ5w=} engines: {node: '>= 4'} domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + resolution: {integrity: sha1-zDhff3UfHR/GUMITdIBCVFOMfTE=} engines: {node: '>= 4'} dompurify@3.4.12: - resolution: {integrity: sha512-zQvGet8Z2sWbQhCmfFz/T5QWH2oBmjnqK3qvOjaqaNLrLEF912WamU+ohnTp0TCep/MFVHpdJuCZEdFOdTnEFg==} + resolution: {integrity: sha1-b6ImXpu9zogsSs5BB2JgUbRI/6g=} domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + resolution: {integrity: sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=} domutils@3.2.2: - resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + resolution: {integrity: sha1-7b/itmiwwdl8JLrw8QYrEyIhvHg=} dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: {integrity: sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=} dotenv-expand@11.0.7: - resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==} - engines: {node: '>=12'} - - dotenv@16.5.0: - resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} + resolution: {integrity: sha1-r2la6gB9b9yEyGzY0K1760CgvQg=} engines: {node: '>=12'} dotenv@16.6.1: - resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} + resolution: {integrity: sha1-dz8OaVJ6gxXHKF1e5zxEWdIKgCA=} engines: {node: '>=12'} dotenv@17.4.2: - resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==} + resolution: {integrity: sha1-wH5Up0bhHroCHdnhBHztWv3BwDQ=} engines: {node: '>=12'} dunder-proto@1.0.1: - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + resolution: {integrity: sha1-165mfh3INIL4tw/Q9u78UNow9Yo=} engines: {node: '>= 0.4'} duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + resolution: {integrity: sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=} eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: {integrity: sha1-aWzi7Aqg5uqTo5f/zySqeEDIJ8s=} ecdsa-sig-formatter@1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + resolution: {integrity: sha1-rg8PothQRe8UqBfao86azQSJ5b8=} + + editions@6.22.0: + resolution: {integrity: sha1-ORPE7qmqRYbhe80l1k1e3xeQZXo=} + engines: {ecmascript: '>= es5', node: '>=4'} ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + resolution: {integrity: sha1-aauDWLFOiW+AzDnmIIe4hQDDrDs=} engines: {node: '>=0.10.0'} hasBin: true electron-builder-squirrel-windows@26.8.1: - resolution: {integrity: sha512-o288fIdgPLHA76eDrFADHPoo7VyGkDCYbLV1GzndaMSAVBoZrGvM9m2IehdcVMzdAZJ2eV9bgyissQXHv5tGzA==} + resolution: {integrity: sha1-G23XCUsg+GNYUcz5b8MqXKuSC+k=} electron-builder@26.8.1: - resolution: {integrity: sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw==} + resolution: {integrity: sha1-1JBWsv5dN/D5SqLrDh2zjyYfyMA=} engines: {node: '>=14.0.0'} hasBin: true electron-publish@26.8.1: - resolution: {integrity: sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w==} + resolution: {integrity: sha1-ajL6ju0NQZcd2lMHK+oGuZMr5YM=} - electron-to-chromium@1.5.396: - resolution: {integrity: sha512-yHiw2Y3C3H9U6TMbOfoWK/BPreiOPXRfTWPBwQBoZG6/8TB6eOPnsy5oaRYuatR7Fw2SJ4kKforgufeo7fq0EQ==} + electron-to-chromium@1.5.395: + resolution: {integrity: sha1-uC6INEvcnlwA0oAUDnyieMcyVmE=} - electron-updater@6.6.2: - resolution: {integrity: sha512-Cr4GDOkbAUqRHP5/oeOmH/L2Bn6+FQPxVLZtPbcmKZC63a1F3uu5EefYOssgZXG3u/zBlubbJ5PJdITdMVggbw==} + electron-updater@6.8.9: + resolution: {integrity: sha1-IePiQA7jpYt0lvCgI9lderHa4Bk=} electron-vite@4.0.1: - resolution: {integrity: sha512-QqacJbA8f1pmwUTqki1qLL5vIBaOQmeq13CZZefZ3r3vKVaIoC7cpoTgE+KPKxJDFTax+iFZV0VYvLVWPiQ8Aw==} + resolution: {integrity: sha1-bN95j4QsJVd5mDzK3Qaz1HXAL1c=} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -12803,213 +11985,195 @@ packages: optional: true electron-winstaller@5.4.0: - resolution: {integrity: sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==} + resolution: {integrity: sha1-8GYNR21cT1ef337dLwzwHVTE0LI=} engines: {node: '>=8.0.0'} electron@40.8.5: - resolution: {integrity: sha512-pgTY/VPQKaiU4sTjfU96iyxCXrFm4htVPCMRT4b7q9ijNTRgtLmLvcmzp2G4e7xDrq9p7OLHSmu1rBKFf6Y1/A==} + resolution: {integrity: sha1-p+RZou7jW9AsMtqHFwySA4NlbE0=} engines: {node: '>= 12.20.55'} hasBin: true emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + resolution: {integrity: sha1-wEuMNFdJDghHrlH87Tr1LTOOPa0=} engines: {node: '>=12'} - emoji-regex@10.4.0: - resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + emoji-regex@10.6.0: + resolution: {integrity: sha1-vz1uj3+P0ipl2XA0dbwBRzV6aw0=} emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: {integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=} emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: {integrity: sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=} emojilib@2.4.0: - resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} + resolution: {integrity: sha1-rFGKi7DV923aVyicyy/fnTmuch4=} encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} engines: {node: '>= 0.8'} encodeurl@2.0.0: - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + resolution: {integrity: sha1-e46omAd9fkCdOsRUdOo46vCFelg=} engines: {node: '>= 0.8'} encoding-japanese@2.2.0: - resolution: {integrity: sha512-EuJWwlHPZ1LbADuKTClvHtwbaFn4rOD+dRAbWysqEOXRc2Uui0hJInNJrsdH0c+OhJA4nrCBdSkW4DD5YxAo6A==} + resolution: {integrity: sha1-DvLSNRJQVH9DKi3RVUU1VcFt61k=} engines: {node: '>=8.10.0'} encoding-sniffer@0.2.1: - resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} - - encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + resolution: {integrity: sha1-OW7JesIs5aA3ukSvGZKsnUanuBk=} end-of-stream@1.4.5: - resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} - - enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} - - enhanced-resolve@5.19.0: - resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==} - engines: {node: '>=10.13.0'} + resolution: {integrity: sha1-c0TXEd6kDgt0q8LtSXeHQ8ztsIw=} enhanced-resolve@5.24.3: - resolution: {integrity: sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ==} + resolution: {integrity: sha1-QGu/HsIJcSZaMCVPCAMPzmqCB/4=} engines: {node: '>=10.13.0'} entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + resolution: {integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=} entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + resolution: {integrity: sha1-XSaOpecRPsdMTQM7eepaNaSI+0g=} engines: {node: '>=0.12'} entities@6.0.1: - resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + resolution: {integrity: sha1-wow0pDN5yn9h0HQTCy9fcCCjBpQ=} engines: {node: '>=0.12'} entities@7.0.1: - resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} + resolution: {integrity: sha1-JuioiInbY0F9y5oeeaPxvJK1l2s=} engines: {node: '>=0.12'} + entities@8.0.0: + resolution: {integrity: sha1-wd9f42AkKXR/ojPQ3SbxQvDOR0M=} + engines: {node: '>=20.19.0'} + env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + resolution: {integrity: sha1-QgOZ1BbOH76bwKB8Yvpo1n/Q+PI=} engines: {node: '>=6'} - envinfo@7.11.0: - resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==} + envinfo@7.21.0: + resolution: {integrity: sha1-BKJRvnn5JUhUHzfRPItvIpQMO64=} engines: {node: '>=4'} hasBin: true environment@1.1.0: - resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + resolution: {integrity: sha1-jobGaxgPNjx6sxF4fgJZZl9FqfE=} engines: {node: '>=18'} err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + resolution: {integrity: sha1-I8Lzt1b/38YI0w4nyalBAkgH5/k=} errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + resolution: {integrity: sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=} hasBin: true - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - error-ex@1.3.4: - resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} + resolution: {integrity: sha1-s6jYu2+S7swWKePifTyGB6ijJBQ=} + + errorstacks@2.4.2: + resolution: {integrity: sha1-Gcxl0NBJq71/w6X9KgEFRgmuBkc=} + engines: {node: '>=24'} - errorstacks@2.4.1: - resolution: {integrity: sha512-jE4i0SMYevwu/xxAuzhly/KTwtj0xDhbzB6m1xPImxTkw8wcCbgarOQPfCVMi5JKVyW7in29pNJCCJrry3Ynnw==} + es-abstract-get@1.0.0: + resolution: {integrity: sha1-Hq6HEB9Cvt62p0DoxQUSca74kIg=} + engines: {node: '>= 0.4'} - es-abstract@1.24.0: - resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + es-abstract@1.24.2: + resolution: {integrity: sha1-Lb04wYBzXumD93WFFAonBqlj7Zo=} engines: {node: '>= 0.4'} es-define-property@1.0.1: - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + resolution: {integrity: sha1-mD6y+aZyTpMD9hrd8BHHLgngsPo=} engines: {node: '>= 0.4'} es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + resolution: {integrity: sha1-BfdaJdq5jk+x3NXhRywFRtUFfI8=} engines: {node: '>= 0.4'} es-module-lexer@1.7.0: - resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + resolution: {integrity: sha1-kVlgFWGICoXyc0VgqQmbLDHlNyo=} es-module-lexer@2.3.1: - resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==} - - es-object-atoms@1.1.1: - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} - engines: {node: '>= 0.4'} + resolution: {integrity: sha1-W/LfBpmdu+XwBqX0ahH7n1t7ORs=} es-object-atoms@1.1.2: - resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==} + resolution: {integrity: sha1-otCzcyBXJN+lJdI7DD4bHKWCyZs=} engines: {node: '>= 0.4'} es-set-tostringtag@2.1.0: - resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + resolution: {integrity: sha1-8x274MGDsAptJutjJcgQwP0YvU0=} engines: {node: '>= 0.4'} - es-to-primitive@1.3.0: - resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + es-to-primitive@1.3.4: + resolution: {integrity: sha1-DIVCkc8Ne0Oda55XceqDf/rx+ZE=} engines: {node: '>= 0.4'} - es-toolkit@1.46.1: - resolution: {integrity: sha512-5eNtXOs3tbfxXOj04tjjseeWkRWaoCjdEI+96DgwzZoe6c9juL49pXlzAFTI72aWC9Y8p7168g6XIKjh7k6pyQ==} + es-toolkit@1.49.0: + resolution: {integrity: sha1-k8WwMYZXkvwDy/W9IMEypPl2pSo=} es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + resolution: {integrity: sha1-njr0B0Wd7tR+mpH5uIWoTrBcVh0=} esbuild@0.25.12: - resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} - engines: {node: '>=18'} - hasBin: true - - esbuild@0.27.7: - resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + resolution: {integrity: sha1-l6HQQfSrAML84vg40rmWmi0ql6U=} engines: {node: '>=18'} hasBin: true esbuild@0.28.1: - resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==} + resolution: {integrity: sha1-70W0Y0ycnZeilq6kEUpfmED5VXg=} engines: {node: '>=18'} hasBin: true escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + resolution: {integrity: sha1-ARo/aYVroYnf+n3I/M6Z0qh5A+U=} engines: {node: '>=6'} escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + resolution: {integrity: sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=} engines: {node: '>=8'} escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + resolution: {integrity: sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=} engines: {node: '>=10'} escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + resolution: {integrity: sha1-RoMSa1ALYXYvLb66zhgG6L4xscg=} engines: {node: '>=12'} escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + resolution: {integrity: sha1-upO7t6Q5htKdYEH5n1Ji2nc+Lhc=} engines: {node: '>=6.0'} hasBin: true - eslint-plugin-sonarjs@4.1.0: - resolution: {integrity: sha512-rh+FlVz0yfd2RNIb6WqSkuGh0addX/Qi5scwQ5FphXDFrM6fZKcxP1+attJ78yUKcyYfiu6MTaISPpAFPzqRJw==} + eslint-plugin-sonarjs@4.2.0: + resolution: {integrity: sha1-NPtnvjksP0mHXOVAXgLWLy+GAwQ=} peerDependencies: eslint: ^8.0.0 || ^9.0.0 || ^10.0.0 eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=} engines: {node: '>=8.0.0'} eslint-scope@9.1.2: - resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} + resolution: {integrity: sha1-ud5qzi+rHP8k0uWNhbdMj86jmAI=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + resolution: {integrity: sha1-DNcv6FUOPC6uFWqWpN3c0cisWAA=} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-visitor-keys@5.0.1: - resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + resolution: {integrity: sha1-njyUiWl4JNLUzjqK0SYo+R6fWb4=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} - eslint@10.6.0: - resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==} + eslint@10.7.0: + resolution: {integrity: sha1-zTuAIvOx47GDdg2Q38WOnTZEEGs=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} hasBin: true peerDependencies: @@ -13019,195 +12183,188 @@ packages: optional: true espree@11.2.0: - resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} + resolution: {integrity: sha1-AdXkfcMyqrowWQCDYkVKjMNMyqU=} engines: {node: ^20.19.0 || ^22.13.0 || >=24} esprima@1.2.5: - resolution: {integrity: sha512-S9VbPDU0adFErpDai3qDkjq8+G05ONtKzcyNrPKg/ZKa+tf879nX2KexNU95b31UoTJjRLInNBHHHjFPoCd7lQ==} + resolution: {integrity: sha1-CZNQL+r2aBODJXVvMPmlH+7sEek=} engines: {node: '>=0.4.0'} hasBin: true esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=} engines: {node: '>=4'} hasBin: true esquery@1.7.0: - resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} + resolution: {integrity: sha1-CNBI8mHw3e21uulfRoCUY9nJSW0=} engines: {node: '>=0.10'} esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + resolution: {integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=} engines: {node: '>=4.0'} estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=} engines: {node: '>=4.0'} estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + resolution: {integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=} engines: {node: '>=4.0'} estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: {integrity: sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=} esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + resolution: {integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=} engines: {node: '>=0.10.0'} etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} engines: {node: '>= 0.6'} event-stream@3.3.4: - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} + resolution: {integrity: sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=} event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + resolution: {integrity: sha1-XU0+vflYPWOlMzzi3rdICrKwV4k=} engines: {node: '>=6'} eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + resolution: {integrity: sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=} eventemitter3@5.0.4: - resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} + resolution: {integrity: sha1-qG1mFwQzcS3egUcHrFK1JxzrH+s=} events-universal@1.0.1: - resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} + resolution: {integrity: sha1-tWqE/WEbZhDgotDwn4D9+THi3+Y=} events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + resolution: {integrity: sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=} engines: {node: '>=0.8.x'} eventsource-parser@3.1.0: - resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==} + resolution: {integrity: sha1-ThmOuRzTM9Co3cwDZQKzYYol9Ek=} engines: {node: '>=18.0.0'} eventsource@3.0.7: - resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==} + resolution: {integrity: sha1-EVdiLi9Td7tq7yEUNycougwVaYk=} engines: {node: '>=18.0.0'} execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + resolution: {integrity: sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=} engines: {node: '>=6'} execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + resolution: {integrity: sha1-TlSRrRVy8vF6d9OIxshXE1sihHo=} engines: {node: '>=10'} execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + resolution: {integrity: sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=} engines: {node: '>=10'} - exifreader@4.40.3: - resolution: {integrity: sha512-58NvuV/lmrUoxR6Y3s5U3rwxn8ITB8xod2WgOkwew0oR5ziQj2bcJSXMbOTQPytnZi3grztHQhgZnHBSe3/P4A==} + exifreader@4.41.3: + resolution: {integrity: sha1-U8q3lN0/AUQf6J7gPsRE2mX84HQ=} + hasBin: true exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=} engines: {node: '>= 0.8.0'} expand-template@2.0.3: - resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + resolution: {integrity: sha1-bhSz/O4POmNA7LV9LokYaSBSpHw=} engines: {node: '>=6'} expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + resolution: {integrity: sha1-V4h0WQ3LMhRRQITAgRXYruYeEbw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} exponential-backoff@3.1.3: - resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==} + resolution: {integrity: sha1-Uc+SwcBJPHZgU/nTq+5ENMJE0vY=} express-rate-limit@7.5.1: - resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==} + resolution: {integrity: sha1-jDpC9pIJo6HJaYkAcOzp4gqHnew=} engines: {node: '>= 16'} peerDependencies: express: '>= 4.11' - express-rate-limit@8.5.2: - resolution: {integrity: sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==} + express-rate-limit@8.6.0: + resolution: {integrity: sha1-LmSrEDYdo1iBUZ6pK0JqQ/iqjHk=} engines: {node: '>= 16'} peerDependencies: express: '>= 4.11' - express@4.22.1: - resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==} - engines: {node: '>= 0.10.0'} - express@4.22.2: - resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==} + resolution: {integrity: sha1-wXrgmB5e/CSyInLw4EHEZiUDtwA=} engines: {node: '>= 0.10.0'} express@5.2.1: - resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==} + resolution: {integrity: sha1-jyHRW20yf5K0eU7PjLCKcvlWrAQ=} engines: {node: '>= 18'} extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: {integrity: sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=} extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + resolution: {integrity: sha1-Zj3KVv5G34kNXxMe9KBtIruLoTo=} engines: {node: '>= 10.17.0'} hasBin: true extsprintf@1.4.1: - resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} + resolution: {integrity: sha1-jRcsBkhn8jXAyEpZaAbSeb9LzAc=} engines: {'0': node >=0.6.0} fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: {integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=} fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + resolution: {integrity: sha1-KG4x3pbrltOKl4mYFXQLoqTzZAw=} fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + resolution: {integrity: sha1-0G1YXOjbqQoWsFBcVDw8z7OuuBg=} engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=} fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} fast-levenshtein@3.0.0: - resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==} + resolution: {integrity: sha1-N7iZrkfhCQ5A4/0jGOTV8BQsqRI=} fast-uri@3.1.4: - resolution: {integrity: sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==} + resolution: {integrity: sha1-Oz2vnOaPQflW3wtQUTLAz86ex68=} - fast-xml-builder@1.2.0: - resolution: {integrity: sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==} + fast-xml-builder@1.3.0: + resolution: {integrity: sha1-vISYBHlv5Hv5FQIt2Tmw/DC6RV0=} fast-xml-parser@5.10.1: - resolution: {integrity: sha512-IEMIf7298kXuZSRFoGfMYrl7is8LpavODgbNz1cwIudv7KwVFnuU+UsMporfq6PD6aXSlawZlARiA3UywCTfMw==} + resolution: {integrity: sha1-GTE/fJOGxH+kod5SdUe3PtLPzt4=} hasBin: true fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + resolution: {integrity: sha1-IQ5htv8YHekeqbPRuE/e3UfgNOU=} engines: {node: '>= 4.9.1'} - fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + fastq@1.20.1: + resolution: {integrity: sha1-ynUKENySW8ixiDn9ID4+9LPO1nU=} faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + resolution: {integrity: sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=} engines: {node: '>=0.8.0'} fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + resolution: {integrity: sha1-6VJO5rXHfp5QAa8PhfOtu4YjJVw=} fd-package-json@2.0.0: - resolution: {integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==} + resolution: {integrity: sha1-A/U85aCvVSwvT69wOiTlJjEKJBE=} fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=} fdir@6.5.0: - resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + resolution: {integrity: sha1-7Sq5Z6MxreYvGNB32uGSaE1Q01A=} engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 @@ -13216,77 +12373,74 @@ packages: optional: true file-entry-cache@8.0.0: - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + resolution: {integrity: sha1-d4e93PETG/+5JjbGlFe7wO3W2B8=} engines: {node: '>=16.0.0'} file-size@1.0.0: - resolution: {integrity: sha512-tLIdonWTpABkU6Axg2yGChYdrOsy4V8xcm0IcyAP8fSsu6jiXLm5pgs083e4sq5fzNRZuAYolUbZyYmPvCKfwQ==} + resolution: {integrity: sha1-MzgmfV0ga79g9N9gwZ1+04E6Rlc=} file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: {integrity: sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=} - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.6: + resolution: {integrity: sha1-HohwlCp8Y2yGL3xJuTlJN7aplaM=} filing-cabinet@5.5.1: - resolution: {integrity: sha512-PzLBTChlVPn6LnNxF0KWs+XqPziVh3Sfmz/3TXOymHxu6a9yhrDcQn7YwgpcRM6mqhR2WHVGPR8RU4fmcF1IVA==} + resolution: {integrity: sha1-iYwmkC6sQSBM+9+6Bhfm6aGBzAI=} engines: {node: '>=18'} hasBin: true fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + resolution: {integrity: sha1-RCZdPKwH4+p9wkdRY4BkN1SgUpI=} engines: {node: '>=8'} finalhandler@1.3.2: - resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==} + resolution: {integrity: sha1-HrwiKPx2c6rEpHLDEMwFt32FK4g=} engines: {node: '>= 0.8'} finalhandler@2.1.1: - resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==} + resolution: {integrity: sha1-osUXplWYUrzbBtH4vX9Rto+tgJk=} engines: {node: '>= 18.0.0'} find-config@1.0.0: - resolution: {integrity: sha512-Z+suHH+7LSE40WfUeZPIxSxypCWvrzdVc60xAjUShZeT5eMWM0/FQUduq3HjluyfAHWvC/aOBkT1pTZktyF/jg==} + resolution: {integrity: sha1-6vorm8B/qckOmgw++c7PHMgA9TA=} engines: {node: '>= 0.12'} find-exec@1.0.3: - resolution: {integrity: sha512-gnG38zW90mS8hm5smNcrBnakPEt+cGJoiMkJwCU0IYnEb0H2NQk0NIljhNW+48oniCriFek/PH6QXbwsJo/qug==} + resolution: {integrity: sha1-xLGPeVlo8XMAYHdvxS+Cm5d60p4=} find-replace@3.0.0: - resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + resolution: {integrity: sha1-Pn4j07BRZ6dvdwyfvVJYsN72jDg=} engines: {node: '>=4.0.0'} find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=} engines: {node: '>=8'} find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + resolution: {integrity: sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=} engines: {node: '>=10'} find-up@7.0.0: - resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + resolution: {integrity: sha1-6N7BRV90942IitZb98oT3StOZvs=} engines: {node: '>=18'} flat-cache@4.0.1: - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + resolution: {integrity: sha1-Ds45/LFO4BL0sEEL0z3ZwfAREnw=} engines: {node: '>=16'} flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + resolution: {integrity: sha1-jKb+MyBp/6nTJMMnGYxZglnOskE=} hasBin: true - flatbuffers@24.3.25: - resolution: {integrity: sha512-3HDgPbgiwWMI9zVB7VYBHaMrbOO7Gm0v+yD2FV/sCKj+9NDeVL7BOBYUuhWAQGKWOzBo8S9WdMvV0eixO233XQ==} - flatbuffers@25.9.23: - resolution: {integrity: sha512-MI1qs7Lo4Syw0EOzUl0xjs2lsoeqFku44KpngfIduHBYvzm8h2+7K8YMQh1JtVVVrUvhLpNwqVi4DERegUJhPQ==} + resolution: {integrity: sha1-NGgRVX/pMSq1ZHU155PHYenIHrE=} - flatted@3.4.2: - resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} + flatted@3.4.3: + resolution: {integrity: sha1-vlwh6UOy16MouyN5WuKMmPAQOp4=} follow-redirects@1.16.0: - resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} + resolution: {integrity: sha1-KEdKFZ07nRHvYgUKFO1g5N9tYbw=} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -13295,462 +12449,435 @@ packages: optional: true for-each@0.3.5: - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + resolution: {integrity: sha1-1lBogCeCaSD+6wr3R+57lCGkHUc=} engines: {node: '>= 0.4'} for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + resolution: {integrity: sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=} engines: {node: '>=0.10.0'} for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} for-own@0.1.5: - resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + resolution: {integrity: sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=} engines: {node: '>=0.10.0'} foreground-child@3.3.1: - resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + resolution: {integrity: sha1-Mujp7Rtoo0l777msK2rfkqY4V28=} engines: {node: '>=14'} form-data-encoder@1.7.2: - resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} + resolution: {integrity: sha1-Hxrj3M9Y7UaQuG2H5PV8ZU+6sEA=} form-data@4.0.6: - resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==} + resolution: {integrity: sha1-KOhk4beG2+u2jbH0UvljUnhmWCc=} engines: {node: '>= 6'} formatly@0.3.0: - resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} + resolution: {integrity: sha1-W7O05pL1qMdK2P4mFU3Qp0qsaBk=} engines: {node: '>=18.3.0'} hasBin: true formdata-node@4.4.1: - resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} + resolution: {integrity: sha1-I/aly5y1UxWRLL7E/3sPWbvRkeI=} engines: {node: '>= 12.20'} forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=} engines: {node: '>= 0.6'} fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: '>= 0.6'} fresh@2.0.0: - resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} + resolution: {integrity: sha1-jdffahs6Gzpc8YbAWl3SZ2ImNaQ=} engines: {node: '>= 0.8'} from@0.1.7: - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} + resolution: {integrity: sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=} fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + resolution: {integrity: sha1-a+Dem+mYzhavivwkSXue6bfM2a0=} fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + resolution: {integrity: sha1-Aoc8+8QITd4SfqpfmQXu8jJdGr8=} engines: {node: '>=12'} - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} - engines: {node: '>=14.14'} - - fs-extra@11.3.4: - resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==} - engines: {node: '>=14.14'} - fs-extra@11.3.6: - resolution: {integrity: sha512-w8ZNZr2mKIc7qeNaQ9AVPT1+iFaI+Avd4xudVOvdDJ8VytREi1Ft5Ih7hd9jjehod8vAM5GMsfQ/TpPf4EyoEA==} - engines: {node: '>=14.14'} - - fs-extra@11.4.0: - resolution: {integrity: sha512-EQsFzMUJkCKGr1ePqlYADkIUmHW1s3ZXr5Yqy6wbGrfUCphpl2maM/kyOIRA2HpP3AaFQTZXD4ldjek+nccddA==} + resolution: {integrity: sha1-98uA6d9VDNHbb1N/pc3VaNPnDRA=} engines: {node: '>=14.14'} fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + resolution: {integrity: sha1-TxicRKoSO4lfcigE9V6iPq3DSOk=} engines: {node: '>=6 <7 || >=8'} fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + resolution: {integrity: sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=} engines: {node: '>=6 <7 || >=8'} fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + resolution: {integrity: sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=} engines: {node: '>=10'} fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + resolution: {integrity: sha1-ysZAd4XQNnWipeGlMFxpezR9kNY=} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + resolution: {integrity: sha1-LALYZNl/PqbIgwxGTL0Rq26rehw=} - function.prototype.name@1.1.8: - resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + function.prototype.name@1.2.0: + resolution: {integrity: sha1-dY8+hPpUJnJFS9XhTLCBpc4H9ww=} engines: {node: '>= 0.4'} functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: {integrity: sha1-BAT+TuK6L2B/Dg7DyAuumUEzuDQ=} gaxios@6.7.1: - resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==} + resolution: {integrity: sha1-69n3CT7eO6UCaF5zOQJIu1t/cfs=} engines: {node: '>=14'} gcp-metadata@6.1.1: - resolution: {integrity: sha512-a4tiq7E0/5fTjxPAaH4jpjkSv/uCaU2p5KC6HVGrvl0cDjA8iBZv4vv1gyzlmK0ZUKqwpOyQMKzZQe3lTit77A==} + resolution: {integrity: sha1-9lqmn1RrxW4RYGHRN9P1+QvexJQ=} engines: {node: '>=14'} generator-function@2.0.1: - resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + resolution: {integrity: sha1-DnXdQQ0SQ2h6C6LpUblO7bj3N6I=} engines: {node: '>= 0.4'} gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=} engines: {node: '>=6.9.0'} get-amd-module-type@6.0.2: - resolution: {integrity: sha512-7zShVYAYtMnj9S65CfN+hvpBCByfuB1OY8xID01nZEzXTZbx4YyysAfi+nMl95JSR6odt4q8TCj2W63KAoyVLQ==} + resolution: {integrity: sha1-JXYE6Va8fsP0jaIJyKflukRwovo=} engines: {node: '>=18'} get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + resolution: {integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=} engines: {node: 6.* || 8.* || >= 10.*} - get-east-asian-width@1.3.0: - resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} - engines: {node: '>=18'} - get-east-asian-width@1.6.0: - resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==} + resolution: {integrity: sha1-IWkA+R3xGossGYw+HZPWwDWndrk=} engines: {node: '>=18'} get-folder-size@5.0.0: - resolution: {integrity: sha512-+fgtvbL83tSDypEK+T411GDBQVQtxv+qtQgbV+HVa/TYubqDhNd5ghH/D6cOHY9iC5/88GtOZB7WI8PXy2A3bg==} + resolution: {integrity: sha1-VUokjsgxWHH4nUZyRPUrTJ+UzeE=} engines: {node: '>=18.11.0'} hasBin: true get-intrinsic@1.3.0: - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + resolution: {integrity: sha1-dD8OO2lkqTpUke0b/6rgVNf5jQE=} engines: {node: '>= 0.4'} get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + resolution: {integrity: sha1-tf3nfyLL4185C04ImSLFC85u9mQ=} get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + resolution: {integrity: sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro=} engines: {node: '>=8.0.0'} get-proto@1.0.1: - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + resolution: {integrity: sha1-FQs/J0OGnvPoUewMSdFbHRTQDuE=} engines: {node: '>= 0.4'} get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + resolution: {integrity: sha1-wbJVV189wh1Zv8ec09K0axw6VLU=} engines: {node: '>=6'} get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + resolution: {integrity: sha1-SWaheV7lrOZecGxLe+txJX1uItM=} engines: {node: '>=8'} get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + resolution: {integrity: sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=} engines: {node: '>=10'} get-symbol-description@1.1.0: - resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + resolution: {integrity: sha1-e91U4L7+j/yfO04gMiDZ8eiBtu4=} engines: {node: '>= 0.4'} get-tsconfig@4.14.0: - resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} + resolution: {integrity: sha1-mF2FxSqZA4ZCgMzCRI1BP78e/tg=} - get-uri@6.0.4: - resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==} + get-uri@6.0.5: + resolution: {integrity: sha1-cUiSqkqHHbZxq8U5Xl6UR7wwahY=} engines: {node: '>= 14'} git-hooks-list@1.0.3: - resolution: {integrity: sha512-Y7wLWcrLUXwk2noSka166byGCvhMtDRpgHdzCno1UQv/n/Hegp++a2xBWJL1lJarnKD3SWaljD+0z1ztqxuKyQ==} + resolution: {integrity: sha1-vluq94IDzjQvL4RKnSsD26G0UVY=} - git-hooks-list@4.1.1: - resolution: {integrity: sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==} + git-hooks-list@4.2.1: + resolution: {integrity: sha1-grOtEZ7C2optVyKL1o2OQyr8QYw=} github-from-package@0.0.0: - resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + resolution: {integrity: sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=} glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=} engines: {node: '>= 6'} glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + resolution: {integrity: sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=} engines: {node: '>=10.13.0'} glob-to-regex.js@1.2.0: - resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==} + resolution: {integrity: sha1-KzI3KCcdEzgwhQ4yMR9AdmxfZBM=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.5.0: - resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + resolution: {integrity: sha1-jsA1WRnNMzjChCiiPU8k7MX+c4w=} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@11.1.0: - resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} + resolution: {integrity: sha1-T4JlduTrmcfa04N5PS+fCPZ+UKY=} engines: {node: 20 || >=22} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@13.0.6: - resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} + resolution: {integrity: sha1-B4ZmVmpCUUfMrPvS4zLetmor5x0=} engines: {node: 18 || 20 || >=22} glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: {integrity: sha1-uN8PuAK7+o6JvR2Ti04WV47UTys=} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + resolution: {integrity: sha1-04j2Vlk+9wjuPjRkD9+5mp/Rwz4=} engines: {node: '>=12'} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@9.3.5: - resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + resolution: {integrity: sha1-yi7YykUngaMAloVgf98CWomd/iE=} engines: {node: '>=16 || 14 >=14.17'} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global-agent@3.0.0: - resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} + resolution: {integrity: sha1-rnzTG9NYO5PFoWQ3oa/ifMM6GrY=} engines: {node: '>=10.0'} globals@17.7.0: - resolution: {integrity: sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==} + resolution: {integrity: sha1-VT1VCQtN3oIJ7C2kJYDW5+fYsQ0=} engines: {node: '>=18'} globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + resolution: {integrity: sha1-dDDtOpddl7+1m8zkH1yruvplEjY=} engines: {node: '>= 0.4'} globby@10.0.0: - resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==} + resolution: {integrity: sha1-q/zQYwA3rhdKiFkBMsL2gE4pEHI=} engines: {node: '>=8'} globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + resolution: {integrity: sha1-vUvpi7BC+D15b344EZkfvoKg00s=} engines: {node: '>=10'} - globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} - globby@14.1.0: - resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} + resolution: {integrity: sha1-E4t453z1qNeU4yexXc6Avx+wpz4=} engines: {node: '>=18'} gonzales-pe@4.3.0: - resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==} + resolution: {integrity: sha1-/p3sXzxVfurQn/hoxlgmvlTQZ7M=} engines: {node: '>=0.6.0'} hasBin: true google-auth-library@9.15.1: - resolution: {integrity: sha512-Jb6Z0+nvECVz+2lzSMt9u98UsoakXxA2HGHMCxh+so3n90XgYWkq5dur19JAJV7ONiJY22yBTyJB1TSkvPq9Ng==} + resolution: {integrity: sha1-DF2E7RiQsjdfHNdPA6x7gGs5KSg=} engines: {node: '>=14'} google-logging-utils@0.0.2: - resolution: {integrity: sha512-NEgUnEcBiP5HrPzufUkBzJOD/Sxsco3rLNo1F1TNf7ieU8ryUzBhqba8r756CjLX7rn3fHl6iLEwPYuqpoKgQQ==} + resolution: {integrity: sha1-X9g34G+jNNpFBDO54+GHDBWURmo=} engines: {node: '>=14'} googleapis-common@7.2.0: - resolution: {integrity: sha512-/fhDZEJZvOV3X5jmD+fKxMqma5q2Q9nZNSF3kn1F18tpxmA86BcTxAGBQdM0N89Z3bEaIs+HVznSmFJEAmMTjA==} + resolution: {integrity: sha1-XBkQLJrx5dJ1YL5eae4sz2h1XUI=} engines: {node: '>=14.0.0'} googleapis@144.0.0: - resolution: {integrity: sha512-ELcWOXtJxjPX4vsKMh+7V+jZvgPwYMlEhQFiu2sa9Qmt5veX8nwXPksOWGGN6Zk4xCiLygUyaz7xGtcMO+Onxw==} + resolution: {integrity: sha1-lpr/Kb524wjqde5S8QmRr0yN3GM=} engines: {node: '>=14.0.0'} gopd@1.2.0: - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + resolution: {integrity: sha1-ifVrghe9vIgCvSmd9tfxCB1+UaE=} engines: {node: '>= 0.4'} got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + resolution: {integrity: sha1-J26Cfq2Hcu3bz8lxcFkLhBgjIzo=} engines: {node: '>=10.19.0'} graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: {integrity: sha1-QYPk6L8Iu24Fu7L30uDI9xLKQOM=} graphlib@2.1.8: - resolution: {integrity: sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==} + resolution: {integrity: sha1-V2HUFHN4cAhMkux7XbywWSydNdo=} graphology-communities-louvain@2.0.2: - resolution: {integrity: sha512-zt+2hHVPYxjEquyecxWXoUoIuN/UvYzsvI7boDdMNz0rRvpESQ7+e+Ejv6wK7AThycbZXuQ6DkG8NPMCq6XwoA==} + resolution: {integrity: sha1-r+eqjc091co1Bibi9Ig2Jbuvo8c=} peerDependencies: graphology-types: '>=0.19.0' graphology-indices@0.17.0: - resolution: {integrity: sha512-A7RXuKQvdqSWOpn7ZVQo4S33O0vCfPBnUSf7FwE0zNCasqwZVUaCXePuWo5HBpWw68KJcwObZDHpFk6HKH6MYQ==} + resolution: {integrity: sha1-uTrTIWL/iwmBRUeu2xASSPD8vS4=} peerDependencies: graphology-types: '>=0.20.0' graphology-layout-forceatlas2@0.10.1: - resolution: {integrity: sha512-ogzBeF1FvWzjkikrIFwxhlZXvD2+wlY54lqhsrWprcdPjopM2J9HoMweUmIgwaTvY4bUYVimpSsOdvDv1gPRFQ==} + resolution: {integrity: sha1-dBhCE1YJ2C0S21pf33RnIGLCggU=} peerDependencies: graphology-types: '>=0.19.0' graphology-layout-noverlap@0.4.2: - resolution: {integrity: sha512-13WwZSx96zim6l1dfZONcqLh3oqyRcjIBsqz2c2iJ3ohgs3605IDWjldH41Gnhh462xGB1j6VGmuGhZ2FKISXA==} + resolution: {integrity: sha1-L/oFTO7rqjH8/+aV0nH8VXB80pw=} peerDependencies: graphology-types: '>=0.19.0' graphology-layout@0.6.1: - resolution: {integrity: sha512-m9aMvbd0uDPffUCFPng5ibRkb2pmfNvdKjQWeZrf71RS1aOoat5874+DcyNfMeCT4aQguKC7Lj9eCbqZj/h8Ag==} + resolution: {integrity: sha1-58HWXAIuM3sRyXfi0wq+QHagMn0=} peerDependencies: graphology-types: '>=0.19.0' graphology-metrics@2.4.0: - resolution: {integrity: sha512-7WOfOP+mFLCaTJx55Qg4eY+211vr1/b3D/R3biz3SXGhAaCVcWYkfabnmO4O4WBNWANEHtVnFrGgJ0kj6MM6xw==} + resolution: {integrity: sha1-MHJU9cWU9VWKmqEUfuSwssdnKDQ=} peerDependencies: graphology-types: '>=0.20.0' graphology-shortest-path@2.1.0: - resolution: {integrity: sha512-KbT9CTkP/u72vGEJzyRr24xFC7usI9Es3LMmCPHGwQ1KTsoZjxwA9lMKxfU0syvT/w+7fZUdB/Hu2wWYcJBm6Q==} + resolution: {integrity: sha1-tcWlaOfIayTL/SBC+dhPKlTgszE=} peerDependencies: graphology-types: '>=0.20.0' graphology-types@0.24.8: - resolution: {integrity: sha512-hDRKYXa8TsoZHjgEaysSRyPdT6uB78Ci8WnjgbStlQysz7xR52PInxNsmnB7IBOM1BhikxkNyCVEFgmPKnpx3Q==} + resolution: {integrity: sha1-KeQtH71h1lBHYMsxNekde+tOYEs=} graphology-utils@2.5.2: - resolution: {integrity: sha512-ckHg8MXrXJkOARk56ZaSCM1g1Wihe2d6iTmz1enGOz4W/l831MBCKSayeFQfowgF8wd+PQ4rlch/56Vs/VZLDQ==} + resolution: {integrity: sha1-TTDW5WfSfAHxBeFJSvgWdC6NJEA=} peerDependencies: graphology-types: '>=0.23.0' graphology@0.25.4: - resolution: {integrity: sha512-33g0Ol9nkWdD6ulw687viS8YJQBxqG5LWII6FI6nul0pq6iM2t5EKquOTFDbyTblRB3O9I+7KX4xI8u5ffekAQ==} + resolution: {integrity: sha1-5SimRVWsHzkqnZZTIa2lsrhD7+E=} peerDependencies: graphology-types: '>=0.24.0' gtoken@7.1.0: - resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==} + resolution: {integrity: sha1-1htOvRATIiKBf3IiseYGS9Rj/CY=} engines: {node: '>=14.0.0'} guid-typescript@1.0.9: - resolution: {integrity: sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ==} + resolution: {integrity: sha1-4193ADU1sCl+oIVI9azmrbFIDdw=} hachure-fill@0.5.2: - resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==} + resolution: {integrity: sha1-0ZvEzIdQpZYrR/sTAFV6hfz5NMw=} handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + resolution: {integrity: sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=} handlebars@4.7.9: - resolution: {integrity: sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==} + resolution: {integrity: sha1-bxOQgqtY3E5aDlHv59ta6JDVag8=} engines: {node: '>=0.4.7'} hasBin: true has-bigints@1.1.0: - resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + resolution: {integrity: sha1-KGB+llrJZ+A80qLHCiY2oe2tSf4=} engines: {node: '>= 0.4'} - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=} engines: {node: '>=8'} has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + resolution: {integrity: sha1-lj7X0HHce/XwhMW/vg0bYiJYaFQ=} has-proto@1.2.0: - resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + resolution: {integrity: sha1-XeWm6r2V/f/ZgYtDBV6AZeOf6dU=} engines: {node: '>= 0.4'} has-symbols@1.1.0: - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + resolution: {integrity: sha1-/JxqeDoISVHQuXH+EBjegTcHozg=} engines: {node: '>= 0.4'} has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + resolution: {integrity: sha1-LNxC1AvvLltO6rfAGnPFTOerWrw=} engines: {node: '>= 0.4'} hasown@2.0.4: - resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} + resolution: {integrity: sha1-jGLYy5C+sqrV0KW2dYGtmFTD8AM=} engines: {node: '>= 0.4'} he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + resolution: {integrity: sha1-hK5l+n6vsWX922FWauFLrwVmTw8=} hasBin: true hexy@0.2.11: - resolution: {integrity: sha512-ciq6hFsSG/Bpt2DmrZJtv+56zpPdnq+NQ4ijEFrveKN0ZG1mhl/LdT1NQZ9se6ty1fACcI4d4vYqC9v8EYpH2A==} + resolution: {integrity: sha1-mTnCXLb4apEwLyK4qKclc1GOJbQ=} hasBin: true highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + resolution: {integrity: sha1-aXJy45kTVuQMPKxWanTu9oF1ZTE=} - hono@4.12.29: - resolution: {integrity: sha512-1hNiRjawYrLq/4m3DQQjPGFg0VZkk4RjQJDff/excI6Dm9BiL75qxGrd7/c6YOxPdq6AscP3LiXhQ6fKFC1Waw==} + hono@4.12.31: + resolution: {integrity: sha1-LMqvPM2C2zcvFpxbOcBlwx/zYpQ=} engines: {node: '>=16.9.0'} hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + resolution: {integrity: sha1-gnuChn6f8cjQxNnVOIA5fSyG0iQ=} engines: {node: '>=10'} hosted-git-info@7.0.2: - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} + resolution: {integrity: sha1-m3UaysCXdXZn8wEUYH73tmH/Txc=} engines: {node: ^16.14.0 || >=18.0.0} hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=} hpagent@1.2.0: - resolution: {integrity: sha512-A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA==} + resolution: {integrity: sha1-CuQXiVQw6zdwwDRDRWuNkMpGSQM=} engines: {node: '>=14'} html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + resolution: {integrity: sha1-LLGozw21JBR3blsqegTV3ZgVjek=} engines: {node: '>=12'} html-encoding-sniffer@6.0.0: - resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==} + resolution: {integrity: sha1-+Nk5Czs0i1DU9hwW3S71wFmAqII=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + resolution: {integrity: sha1-39YAJ9o2o238viNiYsAKWCJoFFM=} html-link-extractor@1.0.5: - resolution: {integrity: sha512-ADd49pudM157uWHwHQPUSX4ssMsvR/yHIswOR5CUfBdK9g9ZYGMhVSE6KZVHJ6kCkR0gH4htsfzU6zECDNVwyw==} + resolution: {integrity: sha1-pL40XLE7jDNS2CsoyLEku3v13W8=} html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + resolution: {integrity: sha1-v8gYk0zAeRj2s2afV3Ts39SPMqs=} engines: {node: '>=12'} hasBin: true html-to-text@9.0.5: - resolution: {integrity: sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==} + resolution: {integrity: sha1-YUmg9hiueg24CF3Km7+W0yu4No0=} engines: {node: '>=14'} - html-webpack-plugin@5.6.3: - resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==} + html-webpack-plugin@5.6.7: + resolution: {integrity: sha1-QpurThKr88B+HGCIhmCOLfLAaxE=} engines: {node: '>=10.13.0'} peerDependencies: '@rspack/core': 0.x || 1.x @@ -13761,53 +12888,46 @@ packages: webpack: optional: true - htmlparser2@10.0.0: - resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} - htmlparser2@10.1.0: - resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==} + resolution: {integrity: sha1-/j8uEsc7bkYtThA5XbnBEZ5NauQ=} htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + resolution: {integrity: sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=} htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + resolution: {integrity: sha1-8AIVFwWzg+YkM7XPRm9bcW7a7CE=} http-assert@1.5.0: - resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} + resolution: {integrity: sha1-w4nM2HrBbtLfpiRv1zuSaqAOa48=} engines: {node: '>= 0.8'} http-cache-semantics@4.2.0: - resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + resolution: {integrity: sha1-IF9Ntk+FYrdqT/kjWqUnmDmgndU=} http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=} http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=} engines: {node: '>= 0.6'} http-errors@1.8.1: - resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} + resolution: {integrity: sha1-fD8oV3y8iiBziEVdvWIpXtB71ow=} engines: {node: '>= 0.6'} - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - http-errors@2.0.1: - resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==} + resolution: {integrity: sha1-NtL2W8kJyHkAGN02+02T2myq4Gs=} engines: {node: '>= 0.8'} http-parser-js@0.5.10: - resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} + resolution: {integrity: sha1-syd71tftVYjiDqc79yT8vkRgkHU=} http-proxy-agent@7.0.2: - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + resolution: {integrity: sha1-mosfJGhmwChQlIZYX2K48sGMJw4=} engines: {node: '>= 14'} http-proxy-middleware@2.0.10: - resolution: {integrity: sha512-RKzRWNPxUZqbuk3BC5mGVJbBnWgr+diEnjJexIOytFbBzDy88Fbh/YvBr3DsNrl1jYAfjWfpATEv0NO35FDuPQ==} + resolution: {integrity: sha1-st97cFID16jCaayEUM+WsAxTL5Q=} engines: {node: '>=12.0.0'} peerDependencies: '@types/express': ^4.17.13 @@ -13816,128 +12936,122 @@ packages: optional: true http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + resolution: {integrity: sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=} engines: {node: '>=8.0.0'} http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + resolution: {integrity: sha1-uPVeDB8l1OvQizsMLAeflZCACz0=} engines: {node: '>=10.19.0'} https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + resolution: {integrity: sha1-cCtx+1UgoTKmbeH2dUHZ5iFU2Cs=} engines: {node: '>= 6.0.0'} https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + resolution: {integrity: sha1-xZ7yJKBP6LdU89sAY6Jeow0ABdY=} engines: {node: '>= 6'} https-proxy-agent@7.0.6: - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + resolution: {integrity: sha1-2o3+rH2hMLBcK6S1nJts1mYRprk=} engines: {node: '>= 14'} human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + resolution: {integrity: sha1-xbHNFPUK6uCatsWf5jujOV/k36M=} engines: {node: '>=8.12.0'} human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + resolution: {integrity: sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=} engines: {node: '>=10.17.0'} humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + resolution: {integrity: sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=} hyperdyperid@1.2.0: - resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==} + resolution: {integrity: sha1-WWaNMjrakiKNKoadPkdNWjO2nms=} engines: {node: '>=10.18'} iconv-corefoundation@1.1.7: - resolution: {integrity: sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==} + resolution: {integrity: sha1-MQZearLJJyFUyLCCEVHiyI8bACo=} engines: {node: ^8.11.2 || >=10} os: [darwin] iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=} engines: {node: '>=0.10.0'} iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + resolution: {integrity: sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=} engines: {node: '>=0.10.0'} iconv-lite@0.7.2: - resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} + resolution: {integrity: sha1-0L3qw/ErSDW3NZwq2JxCKk0cxy4=} engines: {node: '>=0.10.0'} iconv-lite@0.7.3: - resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==} + resolution: {integrity: sha1-hO4S+WPn3lC8AaE+FgoHizsPQV8=} engines: {node: '>=0.10.0'} ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: {integrity: sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=} ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + resolution: {integrity: sha1-PNQOcp82Q/2HywTlC/DrcivFlvU=} engines: {node: '>= 4'} ignore@7.0.6: - resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==} + resolution: {integrity: sha1-aleq70yQ3yesNZCHXSno8RmIyI4=} engines: {node: '>= 4'} - image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - immediate@3.0.6: - resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + resolution: {integrity: sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=} - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + import-fresh@3.3.1: + resolution: {integrity: sha1-nOy1ZQPAraHydB271lRuSxO1fM8=} engines: {node: '>=6'} - import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true - import-local@3.2.0: - resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + resolution: {integrity: sha1-w9XHRXmMAqb4uJdyarpRABhu4mA=} engines: {node: '>=8'} hasBin: true import-meta-resolve@4.2.0: - resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} + resolution: {integrity: sha1-CMuFtb037MjrHg9nDcJ2cALUNzQ=} imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} engines: {node: '>=0.8.19'} indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + resolution: {integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=} engines: {node: '>=8'} indent-string@5.0.0: - resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + resolution: {integrity: sha1-T9KYD8yvhiLRTGTWlPTPM8gZUaU=} engines: {node: '>=12'} + index-to-position@1.2.0: + resolution: {integrity: sha1-yADrNNrPTb+WubBsfreNX3BBOLQ=} + engines: {node: '>=18'} + inflation@2.1.0: - resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} + resolution: {integrity: sha1-khTbEaR+b3VtERxPnflpccYPiGw=} engines: {node: '>= 0.8.0'} inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=} inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=} ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=} ink@5.0.1: - resolution: {integrity: sha512-ae4AW/t8jlkj/6Ou21H2av0wxTk8vrGzXv+v2v7j4in+bl1M5XRMVbfNghzhBokV++FjF8RBDJvYo+ttR9YVRg==} + resolution: {integrity: sha1-8u+XlqORGDDDmV3t0ifshK4n3ks=} engines: {node: '>=18'} peerDependencies: '@types/react': '>=18.0.0' @@ -13950,412 +13064,402 @@ packages: optional: true internal-ip@6.2.0: - resolution: {integrity: sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==} + resolution: {integrity: sha1-1VQeeXFuQGt0rGsHuFbvGNwWIcE=} engines: {node: '>=10'} internal-slot@1.1.0: - resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + resolution: {integrity: sha1-HqyRdilH0vcFa8g42T4TsulgSWE=} engines: {node: '>= 0.4'} internmap@1.0.1: - resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + resolution: {integrity: sha1-ABfMijuZYF8DAvKxmNJy4BXl35U=} internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + resolution: {integrity: sha1-ZoXyN1XkPFJOJR0py8lySOMGEAk=} engines: {node: '>=12'} interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + resolution: {integrity: sha1-Zlq4vE2iendKQFhOgS4+D6RbGh4=} engines: {node: '>= 0.10'} interpret@3.1.1: - resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==} + resolution: {integrity: sha1-W+DO7WfKecbEvFzw1+6EPc6hEMQ=} engines: {node: '>=10.13.0'} ip-address@10.2.0: - resolution: {integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==} + resolution: {integrity: sha1-gF/BeLIMUYvUyFSLJP4wiS1/MgY=} engines: {node: '>= 12'} ip-regex@4.3.0: - resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} + resolution: {integrity: sha1-aHJ1qw9X+naXj/j03dyKI9WZDbU=} engines: {node: '>=8'} ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + resolution: {integrity: sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=} engines: {node: '>= 0.10'} ipaddr.js@2.4.0: - resolution: {integrity: sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==} + resolution: {integrity: sha1-A46c6vghnvxbt2NHt+t4eHXVCVs=} engines: {node: '>= 10'} is-absolute-url@4.0.1: - resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} + resolution: {integrity: sha1-FuTUh9T97QXP4GheU+yGgEpelNw=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} is-array-buffer@3.0.5: - resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + resolution: {integrity: sha1-ZXQuHmh70sxmYlMGj9hwf+TUQoA=} engines: {node: '>= 0.4'} is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} - is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + is-arrayish@0.3.4: + resolution: {integrity: sha1-HuVVOBhRGRVoXTO7E9Mb+FTlBZ0=} is-async-function@2.1.1: - resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + resolution: {integrity: sha1-PmkBjI4E5ztzh5PQIL/ohLn9NSM=} engines: {node: '>= 0.4'} is-bigint@1.1.0: - resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + resolution: {integrity: sha1-3aejRF31ekJYPbQihoLrp8QXBnI=} engines: {node: '>= 0.4'} is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=} engines: {node: '>=8'} is-boolean-object@1.2.2: - resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + resolution: {integrity: sha1-cGf0dwmAmjk8cf9bs+E12KkhXZ4=} engines: {node: '>= 0.4'} is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + resolution: {integrity: sha1-76ouqdqg16suoTqXsritUf776L4=} is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + resolution: {integrity: sha1-O8KoXqdC2eNiBdys3XLKH9xRsFU=} engines: {node: '>= 0.4'} - is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - is-core-module@2.16.2: - resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==} + resolution: {integrity: sha1-PgdFCoCA684/vwysSU9NKrMk4II=} engines: {node: '>= 0.4'} is-data-view@1.0.2: - resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + resolution: {integrity: sha1-uuCkG5aImGwhiN2mZX5WuPnmO44=} engines: {node: '>= 0.4'} is-date-object@1.1.0: - resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + resolution: {integrity: sha1-rYVUGZb8eqiycpcB0ntzGfldgvc=} engines: {node: '>= 0.4'} is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + resolution: {integrity: sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=} engines: {node: '>=8'} hasBin: true is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + resolution: {integrity: sha1-kAk6oxBid9inelkQ265xdH4VogA=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true + is-document.all@1.0.0: + resolution: {integrity: sha1-FjpL+zYsbtexGM5GzezE433uMZU=} + engines: {node: '>= 0.4'} + is-expression@4.0.0: - resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} + resolution: {integrity: sha1-wzFVliq/IdCv0lUlFNZ9LsFv0qs=} is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} engines: {node: '>=0.10.0'} is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} engines: {node: '>=0.10.0'} is-finalizationregistry@1.1.1: - resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + resolution: {integrity: sha1-7v3NxslN3QZ02chYh7+T+USpfJA=} engines: {node: '>= 0.4'} is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + resolution: {integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=} engines: {node: '>=8'} is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + resolution: {integrity: sha1-+uMWfHKedGP4RhzlErCApJJoqog=} engines: {node: '>=12'} is-fullwidth-code-point@5.1.0: - resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==} + resolution: {integrity: sha1-BGsqbU9rFWsiM9MgfUtal4OZm5g=} engines: {node: '>=18'} is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + resolution: {integrity: sha1-fRQK3DiarzARqPKipM+m+q3/sRg=} engines: {node: '>=6'} is-generator-function@1.1.2: - resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + resolution: {integrity: sha1-rjth49XqTkg5uQutIrAjNQUaF9U=} engines: {node: '>= 0.4'} is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + resolution: {integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=} engines: {node: '>=0.10.0'} is-in-ci@0.1.0: - resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==} + resolution: {integrity: sha1-XgfWoC7DqCktP1kJczV++j/OsNM=} engines: {node: '>=18'} hasBin: true is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + resolution: {integrity: sha1-6B+6aZZi6zHb2vJnZqYdSBRxfqQ=} engines: {node: '>=14.16'} hasBin: true is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + resolution: {integrity: sha1-zqbmrlyHCnsKAAQHC3tYfgJSkS4=} engines: {node: '>=8'} is-interactive@2.0.0: - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + resolution: {integrity: sha1-QMV2FFk4JtoRAK3mBZd41ZfxbpA=} engines: {node: '>=12'} is-ip@3.1.0: - resolution: {integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==} + resolution: {integrity: sha1-KuXd+vrwXLgAimIJPPKXNPZXxdg=} engines: {node: '>=8'} is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + resolution: {integrity: sha1-7elrf+HicLPERl46RlZYdkkm1i4=} engines: {node: '>= 0.4'} is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=} is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + resolution: {integrity: sha1-ztkDoCespjgbd3pXQwadc3akl0c=} engines: {node: '>= 0.4'} is-network-error@1.3.2: - resolution: {integrity: sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==} + resolution: {integrity: sha1-lGC8MPhBmkvKdxFPTeiKPuXgxRk=} engines: {node: '>=16'} is-number-object@1.1.1: - resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + resolution: {integrity: sha1-FEsh6VobwUggXcwoFKkTTsQbJUE=} engines: {node: '>= 0.4'} is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=} engines: {node: '>=0.12.0'} is-obj@1.0.1: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=} engines: {node: '>=0.10.0'} is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + resolution: {integrity: sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=} engines: {node: '>=8'} is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + resolution: {integrity: sha1-ReQuN/zPH0Dajl927iFRWEDAkoc=} engines: {node: '>=8'} is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + resolution: {integrity: sha1-r28uoUrFpkYYOlu9tbqrvBVq2dc=} engines: {node: '>=10'} is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + resolution: {integrity: sha1-1lAl7ew2V84DL9fbY8l4g+rtcfA=} engines: {node: '>=12'} is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + resolution: {integrity: sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=} engines: {node: '>=0.10.0'} is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + resolution: {integrity: sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=} is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + resolution: {integrity: sha1-OauVnMv5p3TPB597QMeib3YxNfE=} is-promise@4.0.0: - resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + resolution: {integrity: sha1-Qv+fhCBsGZHSbev1IN1cAQQt0vM=} is-regex@1.2.1: - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + resolution: {integrity: sha1-dtcKPtEO+b5I61d4h9dCBb8MrSI=} engines: {node: '>= 0.4'} is-regexp@1.0.0: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=} engines: {node: '>=0.10.0'} is-relative-url@4.1.0: - resolution: {integrity: sha512-vhIXKasjAuxS7n+sdv7pJQykEAgS+YU8VBQOENXwo/VZpOHDgBBsIbHo7zFKaWBjYWF4qxERdhbPRRtFAeJKfg==} + resolution: {integrity: sha1-/o77Jhaycs8UHTyd6XYFlOU0U6c=} engines: {node: '>=14.16'} is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + resolution: {integrity: sha1-irIJ6kJGCBQTct7W4MsgDvHZ0B0=} engines: {node: '>= 0.4'} is-shared-array-buffer@1.0.4: - resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + resolution: {integrity: sha1-m2eES9m38ka6BwjDqT40Jpx3T28=} engines: {node: '>= 0.4'} is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} engines: {node: '>=0.10.0'} is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + resolution: {integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=} engines: {node: '>=8'} is-string@1.1.1: - resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + resolution: {integrity: sha1-kuo/PVxbbgOcqGd+WsjQfqdzy7k=} engines: {node: '>= 0.4'} is-symbol@1.1.1: - resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + resolution: {integrity: sha1-9HdhJ59TLisFpwJKdQbbvtrNBjQ=} engines: {node: '>= 0.4'} is-typed-array@1.1.15: - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + resolution: {integrity: sha1-S/tKRbYc7oOlpG+6d45OjVnAzgs=} engines: {node: '>= 0.4'} is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + resolution: {integrity: sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=} engines: {node: '>=10'} is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + resolution: {integrity: sha1-2CSYS2FsKSouGYIH1KYJmDhC9xQ=} engines: {node: '>=12'} is-unicode-supported@2.1.0: - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + resolution: {integrity: sha1-CfCrDebTdE1I0mXruY9l0R8qmzo=} engines: {node: '>=18'} is-unsafe@2.0.0: - resolution: {integrity: sha512-2LdV822R+wmI86unXA93WCFpL6g+av8ynWk0nrHyJqGop5VoocYsSLFgN8jrfalT6iGeLNM4KXuVSsULP53kEA==} + resolution: {integrity: sha1-wNzk4GdCZi3eJjYBYOQU6kh9ouk=} is-url-superb@4.0.0: - resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} + resolution: {integrity: sha1-tU0dJJm7FnknSKyWeqPstBozqMI=} engines: {node: '>=10'} is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + resolution: {integrity: sha1-v3JhXWSd/l9pkHnFS4PkfRrhnP0=} engines: {node: '>= 0.4'} is-weakref@1.1.1: - resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + resolution: {integrity: sha1-7qQwGCvo1kF0vZa/+8RvIb8/kpM=} engines: {node: '>= 0.4'} is-weakset@2.0.4: - resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + resolution: {integrity: sha1-yfXesLwZBsbW8QJ/KE3fRZJJ2so=} engines: {node: '>= 0.4'} - is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + is-what@4.1.16: + resolution: {integrity: sha1-GthgoZ2otIla1Uldoxgs4qzdem8=} + engines: {node: '>=12.13'} is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + resolution: {integrity: sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=} engines: {node: '>=8'} - is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} - engines: {node: '>=16'} - is-wsl@3.1.1: - resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} + resolution: {integrity: sha1-MniXsmgyo+sRfabCdJLQTKEyWU8=} engines: {node: '>=16'} isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=} isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: {integrity: sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=} isbinaryfile@4.0.10: - resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + resolution: {integrity: sha1-DFteMMJVei8G/r03tzIpRqruQrM=} engines: {node: '>= 8.0.0'} isbinaryfile@5.0.7: - resolution: {integrity: sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==} + resolution: {integrity: sha1-Gac/IoG3No3KnTs6yKBDQHRnCXk=} engines: {node: '>= 18.0.0'} isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} isexe@3.1.5: - resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==} + resolution: {integrity: sha1-QuNo9o1eENrf7k/ae1ULwtiJLck=} engines: {node: '>=18'} isexe@4.0.0: - resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==} + resolution: {integrity: sha1-SPZXavjoehj+t5a37V4uWQO0Pco=} engines: {node: '>=20'} isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} engines: {node: '>=0.10.0'} isomorphic-ws@5.0.0: - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + resolution: {integrity: sha1-5VKRSJEuy5tFG0btRNU9rhzgS78=} peerDependencies: ws: '*' isomorphic.js@0.2.5: - resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==} - - istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} - engines: {node: '>=8'} + resolution: {integrity: sha1-E+7PNvLbpT6F01XhG/nUIIxvf4g=} istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + resolution: {integrity: sha1-LRZsSwZE1Do58Ev2wu3R5YXzF1Y=} engines: {node: '>=8'} istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + resolution: {integrity: sha1-0QyIhcISVXThwjHKyt+VVnXhzj0=} engines: {node: '>=8'} istanbul-lib-instrument@6.0.3: - resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + resolution: {integrity: sha1-+hVAHfbBWHS8shBfdzMl14xmZ2U=} engines: {node: '>=10'} istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + resolution: {integrity: sha1-kIMFusmlvRdaxqdEier9D8JEWn0=} engines: {node: '>=10'} istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + resolution: {integrity: sha1-iV86cJ/PujTG3lpCk5Ai8+Q1hVE=} engines: {node: '>=10'} - istanbul-reports@3.1.6: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} - engines: {node: '>=8'} - istanbul-reports@3.2.0: - resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} + resolution: {integrity: sha1-y0U1FitXhKpiPO4hpyUs8sgHrJM=} engines: {node: '>=8'} - istextorbinary@6.0.0: - resolution: {integrity: sha512-4j3UqQCa06GAf6QHlN3giz2EeFU7qc6Q5uB/aY7Gmb3xmLDLepDOtsZqkb4sCfJgFvTbLUinNw0kHgHs8XOHoQ==} - engines: {node: '>=10'} + istextorbinary@9.5.0: + resolution: {integrity: sha1-5uE/6/HBaFEAriZICaT49G4B39M=} + engines: {node: '>=4'} jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + resolution: {integrity: sha1-iDOp2Jq0rN5hiJQr0cU7Y5DtWoo=} - jackspeak@4.1.1: - resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} + jackspeak@4.2.3: + resolution: {integrity: sha1-J++A8zuTQSA3w76k+O3fgOGTFIM=} engines: {node: 20 || >=22} - jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + jake@10.9.4: + resolution: {integrity: sha1-1ibaEIxj1c+wCrXCX63H4AhK+OY=} engines: {node: '>=10'} hasBin: true jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + resolution: {integrity: sha1-HAbQfnfHjhWF0CBCTe3BDW4XrDo=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-chrome@0.8.0: - resolution: {integrity: sha512-39RR1GT9nI4e4jsuH1vIf4l5ApxxkcstjGJr+GsOURL8f4Db0UlbRnsZaM+ZRniaGtokqklUH5VFKGZZ6YztUg==} + resolution: {integrity: sha1-90H1z0kpIybrmiUHERuad6AaSV0=} peerDependencies: jest: ^26.0.1 || ^27.0.0 jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + resolution: {integrity: sha1-toF6RfzINdixbVli0MAmRz7jZoo=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-cli@29.7.0: - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + resolution: {integrity: sha1-VZLJQHmODK5nfuwWkmTy2DmjeZU=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -14365,7 +13469,7 @@ packages: optional: true jest-config@29.7.0: - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + resolution: {integrity: sha1-vL2ogG28wBseMWpGu3QIWoSwJF8=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -14377,19 +13481,19 @@ packages: optional: true jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + resolution: {integrity: sha1-AXk0pm67fs9vIF6EaZvhCv1wRYo=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + resolution: {integrity: sha1-j922rcPNyVXJPiqH9hz9NQ1dEZo=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + resolution: {integrity: sha1-FiqbPyMovdmRvqq/+7dHReVld9E=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + resolution: {integrity: sha1-0gb6NVGTPD/VGeXf21ig9ROag38=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: canvas: ^2.5.0 @@ -14398,35 +13502,35 @@ packages: optional: true jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + resolution: {integrity: sha1-C5PhEd2o7BILyDAObR+5V24WQ3Y=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + resolution: {integrity: sha1-NvSZ/c6hl8EEWhJzGcBIFyOQj9E=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + resolution: {integrity: sha1-PCOWUkSC9aBQY3bmyFjDu8wXsQQ=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + resolution: {integrity: sha1-W37A2t/f7Ayjg9yaoBbTa16kxyg=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + resolution: {integrity: sha1-ro/sef8kn9WSzoDj7kdOg6bETxI=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + resolution: {integrity: sha1-i8OS4gTpXf51ZKu+cqQE4o5R9/M=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + resolution: {integrity: sha1-ToNs9g6Zxvz6vp+Z0Bfz/dUKY0c=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-pnp-resolver@1.2.3: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + resolution: {integrity: sha1-kwsVRhZNStWTfVVA5xHU041MrS4=} engines: {node: '>=6'} peerDependencies: jest-resolve: '*' @@ -14435,51 +13539,51 @@ packages: optional: true jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + resolution: {integrity: sha1-SlVtnHdq9o4cX0gZT00DJ9JOilI=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + resolution: {integrity: sha1-GwTywJXzf8d2/0CAPckpIbHohCg=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + resolution: {integrity: sha1-ZNaomS3Sb2NasMAeXu9Dmca8vDA=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + resolution: {integrity: sha1-gJrwctQIpT3P0uhJpMl20xMvcY4=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + resolution: {integrity: sha1-7+yzFBz303Z6OgzI98mZBYfT2Bc=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + resolution: {integrity: sha1-wsV0w/UYZdobsykDZ3imm/iKa+U=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + resolution: {integrity: sha1-I8K2K/sivoK0TemAVYAv83EPwLw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + resolution: {integrity: sha1-e/cFURxk2lkdRrFfzkFADVIUfZw=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + resolution: {integrity: sha1-eBDTDWGcOmIJMiPOa7NZyhsoovI=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + resolution: {integrity: sha1-jRRvCQDolzsQa29zzB6ajLhvjbA=} engines: {node: '>= 10.13.0'} jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + resolution: {integrity: sha1-rK0HOsu663JivVOJ4bz0PhAFjUo=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest@29.7.0: - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + resolution: {integrity: sha1-mUZ2/CQXfwiPHF43N/VpcgT/JhM=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -14489,44 +13593,44 @@ packages: optional: true jiti@2.7.0: - resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} + resolution: {integrity: sha1-l0Io8vTKK8IYhaF5e0X+po6VDGQ=} hasBin: true jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + resolution: {integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo=} jose@5.10.0: - resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==} + resolution: {integrity: sha1-w3NGoJnWRnxAE1GpoMIWHg9SxL4=} - jose@6.2.3: - resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==} + jose@6.2.4: + resolution: {integrity: sha1-ad5zRnYc0ElCxlnlJNmI/rFqSm4=} js-stringify@1.0.2: - resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} + resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=} js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=} js-yaml@3.15.0: - resolution: {integrity: sha512-ttBQIIQPDeLjpPOohtUdXuXUVoA2uIB6fEH9HyJ7234s5mBJ5wTx20njxplLZQgLaOfpmPQA7X2t5AX6tIPbog==} + resolution: {integrity: sha1-WG5SFOr+Pok3VqQel5tQ2J0+Smc=} hasBin: true js-yaml@4.3.0: - resolution: {integrity: sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==} + resolution: {integrity: sha1-0ZAFcqf3zwtfVAyDZz5gutNDZZI=} hasBin: true jsbi@2.0.5: - resolution: {integrity: sha512-TzO/62Hxeb26QMb4IGlI/5X+QLr9Uqp1FPkwp2+KOICW+Q+vSuFj61c8pkT6wAns4WcK56X7CmSHhJeDGWOqxQ==} + resolution: {integrity: sha1-gliQEdqH3Fm0tUnZTc71GpFV9v4=} jscpd-sarif-reporter@4.2.5: - resolution: {integrity: sha512-O8LcM9grAS5yO5x1Q0yegYaYcUX//IEBEyvzGFSYCeo1YzHbMnAI6EK7oTrwD+7Csjvfg9m8B8G7OOxzcSlr9w==} + resolution: {integrity: sha1-IDPIPfmUWaZNQcGhn/7Msoq38Z0=} jscpd@4.2.5: - resolution: {integrity: sha512-KDpApYw1ChGelfHb7MwYTEx694OnW52pv3McAasidUV4ILcGDQMiVJzB+vI8ox+ZPVfOSvdXQCk8uRa9B0LXnw==} + resolution: {integrity: sha1-VKT0MeI49dobZg5TlRj1WkFc/ns=} hasBin: true jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + resolution: {integrity: sha1-iGpBuh1HJvZ6iFgCjJlIn+1q1Ns=} engines: {node: '>=14'} peerDependencies: canvas: ^2.5.0 @@ -14535,7 +13639,7 @@ packages: optional: true jsdom@28.1.0: - resolution: {integrity: sha512-0+MoQNYyr2rBHqO1xilltfDjV9G7ymYGlAUazgcDLQaUf8JDHbuGwsxN6U9qWaElZ4w1B2r7yEGIL3GdeW3Rug==} + resolution: {integrity: sha1-rEID5Y/STXsPNDWasA1tnK69S2I=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: canvas: ^3.0.0 @@ -14544,390 +13648,357 @@ packages: optional: true jsesc@3.1.0: - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + resolution: {integrity: sha1-dNM1ojT2ftGZB/2t+sfM+dQJgl0=} engines: {node: '>=6'} hasBin: true json-bigint@1.0.0: - resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} - - json-bignum@0.0.3: - resolution: {integrity: sha512-2WHyXj3OfHSgNyuzDbSxI1w2jgw5gkWSWhS7Qg4bWXx1nLk3jnbwfUeS0PSba3IzpTUWdHxBieELUzXRjQB2zg==} - engines: {node: '>=0.8'} + resolution: {integrity: sha1-rlR4I6wMrYOYZn+M2e9HMPWwH/E=} json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: {integrity: sha1-kziAKjDTtmBfvgYT4JQAjKjAWhM=} json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-parse-even-better-errors@3.0.2: - resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=} json-schema-to-ts@3.1.1: - resolution: {integrity: sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==} + resolution: {integrity: sha1-gfOsr1o0c2SS9vX1GHDvns4cqFM=} engines: {node: '>=16'} json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: {integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=} json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: {integrity: sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=} json-schema-typed@8.0.2: - resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==} + resolution: {integrity: sha1-6Y7nsYmf9KGEU00fFnwojGa77/Q=} json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=} json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + resolution: {integrity: sha1-eM1vGhm9wStz21rQxh79ZsHikoM=} engines: {node: '>=6'} hasBin: true - jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} + jsonc-parser@3.3.1: + resolution: {integrity: sha1-8qUktPf9EePXkeVZl3rWC5i3mLQ=} jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - jsonfile@6.2.0: - resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} jsonfile@6.2.1: - resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} + resolution: {integrity: sha1-tuMXF/Isw3MwsIHOAFHtXeU68vY=} jsonpath@1.3.0: - resolution: {integrity: sha512-0kjkYHJBkAy50Z5QzArZ7udmvxrJzkpKYW27fiF//BrMY7TQibYLl+FYIXN2BiYmwMIVzSfD8aDRj6IzgBX2/w==} + resolution: {integrity: sha1-YjGXlw+0M4RcaAJL+eK4ZPU3arI=} - jsonwebtoken@9.0.2: - resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} + jsonwebtoken@9.0.3: + resolution: {integrity: sha1-bNV6sB6bCsB8uEfVPTybbuMfeuI=} engines: {node: '>=12', npm: '>=6'} jstransformer@1.0.0: - resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} + resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} jsx-ast-utils-x@0.1.0: - resolution: {integrity: sha512-eQQBjBnsVtGacsG9uJNB8qOr3yA8rga4wAaGG1qRcBzSIvfhERLrWxMAM1hp5fcS6Abo8M4+bUBTekYR0qTPQw==} + resolution: {integrity: sha1-sJM9ZqaeCqGuI/dPuHsHnsKYZS8=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} jszip@3.10.1: - resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} - - jwa@1.4.2: - resolution: {integrity: sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==} + resolution: {integrity: sha1-NK7nDrGOofrsL1iSCKFX0f6wkcI=} jwa@2.0.1: - resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==} - - jws@3.2.3: - resolution: {integrity: sha512-byiJ0FLRdLdSVSReO/U4E7RoEyOCKnEnEPMjq3HxWtvzLsV08/i5RQKsFVNkCldrCaPr2vDNAOMsfs8T/Hze7g==} + resolution: {integrity: sha1-v4F20a0M1y4PP1gzhZWhPhELyAQ=} jws@4.0.1: - resolution: {integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==} + resolution: {integrity: sha1-B+3Bvo+sIOZ3soPs4mFJi9OPBpA=} - katex@0.16.22: - resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} + katex@0.16.47: + resolution: {integrity: sha1-ChOkLC3rT3TmHxYtRAuRZaVIAw8=} hasBin: true - katex@0.16.47: - resolution: {integrity: sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==} + katex@0.17.0: + resolution: {integrity: sha1-U24lh07JrIco47S3v3/sZVe32/Q=} hasBin: true keygrip@1.1.0: - resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} + resolution: {integrity: sha1-hxsWgdXhWcYqRFsMdLYV4JF+ciY=} engines: {node: '>= 0.6'} keytar@7.9.0: - resolution: {integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==} + resolution: {integrity: sha1-TGIlcI9RtQy/d8Wq6BchlkwpGMs=} keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + resolution: {integrity: sha1-qHmpnilFL5QkOfKkBeOvizHU3pM=} khroma@2.1.0: - resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} + resolution: {integrity: sha1-RfLOlM4jGkN89bY8LohubrQru7E=} kind-of@2.0.1: - resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + resolution: {integrity: sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=} engines: {node: '>=0.10.0'} kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} engines: {node: '>=0.10.0'} kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=} engines: {node: '>=0.10.0'} kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + resolution: {integrity: sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=} engines: {node: '>=6'} - knip@6.24.0: - resolution: {integrity: sha512-PokLlgeEjLh1rAsB7ts+52wZ37HBr1nDhE6NNONwEaXdeZGCJOkP7ZlIAI2Gtu8xohquzTWy75bc/1diI9shQw==} + knip@6.29.0: + resolution: {integrity: sha1-K9RPR93qtBoMEqazQVIHvNAKpBg=} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true koa-compose@4.1.0: - resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==} + resolution: {integrity: sha1-UHMGuTcZAdtBEhyBLpI9DWfT6Hc=} koa-convert@2.0.0: - resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==} + resolution: {integrity: sha1-hqDETYHUBVG64i/uZwmQRXPupPU=} engines: {node: '>= 10'} koa-etag@4.0.0: - resolution: {integrity: sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg==} + resolution: {integrity: sha1-LCu3rmnKGsbO0Juijct4UjyBBBQ=} koa-send@5.0.1: - resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==} + resolution: {integrity: sha1-Odzuv6+zldDWC+r/ujpwtPVD/nk=} engines: {node: '>= 8'} koa-static@5.0.0: - resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==} + resolution: {integrity: sha1-XpL8lrU3rVIZ9CUxnJW2R3J3aUM=} engines: {node: '>= 7.6.0'} koa@2.16.4: - resolution: {integrity: sha512-3An0GCLDSR34tsCO4H8Tef8Pp2ngtaZDAZnsWJYelqXUK5wyiHvGItgK/xcSkmHLSTn1Jcho1mRQs2ehRzvKKw==} + resolution: {integrity: sha1-MDuZb1w/Kju3ccfbXkMD7gXyJl8=} engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} - koffi@2.11.0: - resolution: {integrity: sha512-AJ6MHz9Z8OIftKu322jrKJFvy/rZTdCD4b7F457WrK71rxYV7O5PSdWsJDN0p3rY1BZaPeLHVwyt4i2Xyk8wJg==} + koffi@2.16.3: + resolution: {integrity: sha1-FYGq9I/tMRHN9XtOegcPReXdvuw=} launch-editor@2.14.1: - resolution: {integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==} + resolution: {integrity: sha1-9+DaP1iq6gP+oBB02EC19zntfdw=} layout-base@1.0.2: - resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} + resolution: {integrity: sha1-EpHilog8Miqd1MXdggY3IbU+JuI=} layout-base@2.0.1: - resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==} + resolution: {integrity: sha1-0DN5E1hskPnCwHUpIGn1wtpd0oU=} lazy-cache@0.2.7: - resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} + resolution: {integrity: sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=} engines: {node: '>=0.10.0'} lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + resolution: {integrity: sha1-odePw6UEdMuAhF07O24dpJpEbo4=} engines: {node: '>=0.10.0'} lazy-val@1.0.5: - resolution: {integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==} + resolution: {integrity: sha1-bPO59bwxzufuPjacCDK3WD3Nkj0=} lazystream@1.0.1: - resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} + resolution: {integrity: sha1-SUyDEGLx+UCCUexE2xy6KSQqJjg=} engines: {node: '>= 0.6.3'} leac@0.6.0: - resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} + resolution: {integrity: sha1-3PE244LmZr0kdfRKEJYGG3DcCRI=} - less@4.3.0: - resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==} - engines: {node: '>=14'} + less@4.8.0: + resolution: {integrity: sha1-xd0q5CrowDfvqCh7cyNSoLKcQXQ=} + engines: {node: '>=18'} hasBin: true leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + resolution: {integrity: sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=} engines: {node: '>=6'} levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + resolution: {integrity: sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=} engines: {node: '>= 0.8.0'} - lib0@0.2.108: - resolution: {integrity: sha512-+3eK/B0SqYoZiQu9fNk4VEc6EX8cb0Li96tPGKgugzoGj/OdRdREtuTLvUW+mtinoB2mFiJjSqOJBIaMkAGhxQ==} + lib0@0.2.117: + resolution: {integrity: sha1-bD+SZHXSiQSvBbWQcDy7vClHVxY=} engines: {node: '>=16'} hasBin: true libbase64@1.3.0: - resolution: {integrity: sha512-GgOXd0Eo6phYgh0DJtjQ2tO8dc0IVINtZJeARPeiIJqge+HdsWSuaDTe8ztQ7j/cONByDZ3zeB325AHiv5O0dg==} + resolution: {integrity: sha1-BTMUdVoF0uXwi7/EjQKQ6TIvRAY=} libmime@5.3.7: - resolution: {integrity: sha512-FlDb3Wtha8P01kTL3P9M+ZDNDWPKPmKHWaU/cG/lg5pfuAwdflVpZE+wm9m7pKmC5ww6s+zTxBKS1p6yl3KpSw==} + resolution: {integrity: sha1-ODW2RD2YLVzRrDLuJBrbvBGzRAY=} libqp@2.1.1: - resolution: {integrity: sha512-0Wd+GPz1O134cP62YU2GTOPNA7Qgl09XwCqM5zpBv87ERCXdfDtyKXvV7c9U22yWJh44QZqBocFnXN11K96qow==} + resolution: {integrity: sha1-8b52elj5ZvUAWXmXyrcs/B4Xq/o=} lie@3.3.0: - resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + resolution: {integrity: sha1-3Pgt7lRfRgdNryAMfBxaCOD0D2o=} lighthouse-logger@1.4.2: - resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + resolution: {integrity: sha1-rvkPnpfNgds2fHY0KS7iIHkoCqo=} lilconfig@3.1.3: - resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + resolution: {integrity: sha1-obz9Ylf5WFv1rhTO7rt7VZAl5MQ=} engines: {node: '>=14'} lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: {integrity: sha1-7KKE910pZQeTCdwK2SVauy68FjI=} link-check@5.5.1: - resolution: {integrity: sha512-GrtE4Zp/FBduvElmad375NrPeMYnKwNt9rH/TDG/rbQbHL0QVC4S/cEPVKZ0CkhXlVuiK+/5flGpRxQzoLbjEA==} + resolution: {integrity: sha1-8XIJZYSn7UOok2qNWGmkOod75qA=} linkify-it@5.0.0: - resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + resolution: {integrity: sha1-nvI4v6bccL2Of5VytS02mvVptCE=} linkify-it@5.0.2: - resolution: {integrity: sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==} + resolution: {integrity: sha1-074KaTrz2p3ziD8eNGoOl0YajBk=} lit-element@4.2.2: - resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==} - - lit-html@3.3.2: - resolution: {integrity: sha512-Qy9hU88zcmaxBXcc10ZpdK7cOLXvXpRoBxERdtqV9QOrfpMZZ6pSYP91LhpPtap3sFMUiL7Tw2RImbe0Al2/kw==} + resolution: {integrity: sha1-90/L++qUXq5WFOziKmdPpSyjNls=} lit-html@3.3.3: - resolution: {integrity: sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA==} + resolution: {integrity: sha1-pj/QL7jBx7cFfugFq2xhL96+8LE=} - lit@3.3.2: - resolution: {integrity: sha512-NF9zbsP79l4ao2SNrH3NkfmFgN/hBYSQo90saIVI1o5GpjAdCPVstVzO1MrLOakHoEhYkrtRjPK6Ob521aoYWQ==} + lit@3.3.3: + resolution: {integrity: sha1-k1eYheUaIKdyxoSCo0cG/hY26PA=} loader-runner@4.3.2: - resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==} + resolution: {integrity: sha1-mRPToVlx+PY1kV5gH7XJ1JXZGOk=} engines: {node: '>=6.11.5'} locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=} engines: {node: '>=8'} locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + resolution: {integrity: sha1-VTIeswn+u8WcSAHZMackUqaB0oY=} engines: {node: '>=10'} locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + resolution: {integrity: sha1-acsXeb2Qs1qx53Hh8viaICwqioo=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} lodash-es@4.18.1: - resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==} + resolution: {integrity: sha1-uWLuuA2dmDqQC/NClh+3QYyhCx0=} lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=} lodash.defaults@4.2.0: - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} + resolution: {integrity: sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=} lodash.difference@4.5.0: - resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} + resolution: {integrity: sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=} lodash.escaperegexp@4.1.2: - resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} + resolution: {integrity: sha1-ZHYsSGGAglGKw99Mz11YhtriA0c=} lodash.flatten@4.4.0: - resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} + resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=} lodash.includes@4.3.0: - resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + resolution: {integrity: sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=} lodash.isboolean@3.0.3: - resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + resolution: {integrity: sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=} lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. lodash.isinteger@4.0.4: - resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + resolution: {integrity: sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=} lodash.isnumber@3.0.3: - resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + resolution: {integrity: sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=} lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=} lodash.isstring@4.0.1: - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + resolution: {integrity: sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=} lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=} lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: {integrity: sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=} lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - - lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + resolution: {integrity: sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=} lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} lodash.union@4.6.0: - resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} + resolution: {integrity: sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=} lodash@4.18.1: - resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} + resolution: {integrity: sha1-/ytmwfYybVlRPeJAe/iBQ5gSdxw=} log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + resolution: {integrity: sha1-P727lbRoOsn8eFER55LlWNSr1QM=} engines: {node: '>=10'} log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + resolution: {integrity: sha1-u5Xl8FMiZRysMMD+tkBPnyqKlDk=} engines: {node: '>=18'} log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + resolution: {integrity: sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=} engines: {node: '>=10'} long@4.0.0: - resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} + resolution: {integrity: sha1-mntxz7fTYaGU6lVSQckvdGjVvyg=} long@5.3.2: - resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} + resolution: {integrity: sha1-HYRGMJWZkmLX17f4v9SozFUWf4M=} longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + resolution: {integrity: sha1-YvpnzZWHQqFXSvnzmGY2QQLZDNQ=} loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=} hasBin: true lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: {integrity: sha1-b6I3xj29xKgsoP2ILkci3F5jTig=} lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + resolution: {integrity: sha1-JgPni3tLAAbLyi+8yKMgJVislHk=} engines: {node: '>=8'} lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + resolution: {integrity: sha1-QQ/IoXtw5ZgBPfJXwkRrfzOD8Rk=} - lru-cache@11.2.7: - resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==} + lru-cache@11.5.2: + resolution: {integrity: sha1-AOFmZckMYg+6FKPDaHMql2ST92A=} engines: {node: 20 || >=22} lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: {integrity: sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=} lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + resolution: {integrity: sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=} engines: {node: '>=10'} lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + resolution: {integrity: sha1-95OJbg/Q6VSlnf3YLwdzgI32qok=} engines: {node: '>=12'} lru-cache@8.0.5: - resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==} + resolution: {integrity: sha1-mD/jN/PhdmZ/jlZ8/M58sGTqIU4=} engines: {node: '>=16.14'} madge@8.0.0: - resolution: {integrity: sha512-9sSsi3TBPhmkTCIpVQF0SPiChj1L7Rq9kU2KDG1o6v2XH9cCw086MopjVCD+vuoL5v8S77DTbVopTO8OUiQpIw==} + resolution: {integrity: sha1-zKSrZvs4jntr9DwfeNyqs8rTD1A=} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -14936,415 +14007,443 @@ packages: typescript: optional: true - 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==} + resolution: {integrity: sha1-VnY+wJoPqAkd8nh5/ZTRkHjADZE=} mailparser@3.9.6: - resolution: {integrity: sha512-EJYTDWMrOS1kddK1mTsRkrx2Ngh2nYsg54SRMWVVWGVEGbHH4tod8tqqU9hIRPgGQVboSjFubDn9cboSitbM3Q==} - - make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + resolution: {integrity: sha1-cmSgWfM3tyGu82QiDSXkVNRUTcs=} make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + resolution: {integrity: sha1-w8IwencSd82WODBfkVwprnQbYU4=} engines: {node: '>=10'} + make-dir@5.1.0: + resolution: {integrity: sha1-WbLZrPf/pUPRQjhheml0WPqN1ck=} + engines: {node: '>=18'} + make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + resolution: {integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=} makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + resolution: {integrity: sha1-Pl3SB5qC6BLpg8xmEMSiyw6qgBo=} map-stream@0.1.0: - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} + resolution: {integrity: sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=} markdown-it-texmath@1.0.0: - resolution: {integrity: sha512-4hhkiX8/gus+6e53PLCUmUrsa6ZWGgJW2XCW6O0ASvZUiezIK900ZicinTDtG3kAO2kon7oUA/ReWmpW2FByxg==} - - markdown-it@14.2.0: - resolution: {integrity: sha512-1TGiQiJVRQ3NPmZH6sx5Cfnmg6GQm9jvC1ch4TK511NjSJvjzKLzn5pPfZRNZkRPZP0HqCioSndqH8v2nRaWVQ==} - hasBin: true + resolution: {integrity: sha1-ZXA7I10HqPlrxYy/nUeK9XFU5fA=} markdown-it@14.3.0: - resolution: {integrity: sha512-RCEsPjR+sr0x+AuYp601tKTkgFG4YEPLCzHST3cQ/fhlJkqAkz1L2/Qbp1j9qw5SBwQHFBoW8+hoN5xssOF0Tw==} + resolution: {integrity: sha1-hUL6VQbjUw9+KwjcOIVjATXFYg4=} hasBin: true markdown-link-check@3.14.2: - resolution: {integrity: sha512-DPJ+itd3D5fcfXD5s1i53lugH0Z/h80kkQxlYCBh8tFwEZGhyVgDcLl0rnKlWssAVDAmSmcbePpHpMEY+JcMMQ==} + resolution: {integrity: sha1-VoPfsDnYxlgRejlQ9PqsnGd04Pg=} hasBin: true markdown-link-extractor@4.0.3: - resolution: {integrity: sha512-aEltJiQ4/oC0h6Jbw/uuATGSHZPkcH8DIunNH1A0e+GSFkvZ6BbBkdvBTVfIV8r6HapCU3yTd0eFdi3ZeM1eAQ==} + resolution: {integrity: sha1-S8oCVcWD8Bex8M6FfVoa9Wr5msQ=} markdown-table@2.0.0: - resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} + resolution: {integrity: sha1-GUqQztJtMf51PYuUNEMCFMARhls=} markdown-table@3.0.4: - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + resolution: {integrity: sha1-/kTW1BD/nW8uoXl6P2CqTStjHCo=} marked-terminal@7.3.0: - resolution: {integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==} + resolution: {integrity: sha1-eoYjZWXz3VMPRl/86cP4ti7ycOg=} engines: {node: '>=16.0.0'} peerDependencies: marked: '>=1 <16' marked@15.0.12: - resolution: {integrity: sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==} + resolution: {integrity: sha1-MHIsc0bhLQotAgermwxPAQLYbE4=} engines: {node: '>= 18'} hasBin: true marked@16.0.0: - resolution: {integrity: sha512-MUKMXDjsD/eptB7GPzxo4xcnLS6oo7/RHimUMHEDRhUooPwmN9BEpMl7AEOJv3bmso169wHI2wUF9VQgL7zfmA==} + resolution: {integrity: sha1-DEjnl4LyYiT4zjSHhkTYwyCtWZ8=} engines: {node: '>= 20'} hasBin: true marked@16.4.2: - resolution: {integrity: sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA==} + resolution: {integrity: sha1-SVmmS+bEhvDbdGfq184ojeVCkKM=} engines: {node: '>= 20'} hasBin: true marked@17.0.6: - resolution: {integrity: sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==} + resolution: {integrity: sha1-KpdYaictO+WIDxmOAgt0rSfPhro=} engines: {node: '>= 20'} hasBin: true marky@1.3.0: - resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} + resolution: {integrity: sha1-QitjsLr2UCLwLtphojjszbvBSZc=} matcher@3.0.0: - resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==} + resolution: {integrity: sha1-vZBg9MW3CqgEHMxvgDaHYJlPMMo=} engines: {node: '>=10'} math-intrinsics@1.1.0: - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + resolution: {integrity: sha1-oN10voHiqlwvJ+Zc4oNgXuTit/k=} engines: {node: '>= 0.4'} mdast-util-definitions@6.0.0: - resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + resolution: {integrity: sha1-wbtwbl52u5P5oJ3XrxdAAq5prCQ=} mdast-util-find-and-replace@3.0.2: - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + resolution: {integrity: sha1-cKMXTIlOFN9yKr9DvCUMuuRLEd8=} - mdast-util-from-markdown@2.0.2: - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + mdast-util-from-markdown@2.0.3: + resolution: {integrity: sha1-yVgiuRqrdfGKTL6LL1G4c+0s8Mc=} mdast-util-gfm-autolink-literal@2.0.1: - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + resolution: {integrity: sha1-q9VXYwM3vTCm1aS9glLhwtwIddU=} mdast-util-gfm-footnote@2.1.0: - resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + resolution: {integrity: sha1-d3jp2co99yOMwr0/orG/amWxlAM=} mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + resolution: {integrity: sha1-1E756O0oOsjBFlqw0N/QWMJ2TBY=} mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + resolution: {integrity: sha1-ekNftiI6crCGKzOvvXErba6HjTg=} mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + resolution: {integrity: sha1-5oCV0vikMD7yQJSrZC4QR7mRqTY=} mdast-util-gfm@3.1.0: - resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + resolution: {integrity: sha1-LN9juSwqMxQGsPsNtMB3wbAzF1E=} mdast-util-math@3.0.0: - resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==} + resolution: {integrity: sha1-jXndO6+KuKx4H2K4hTdoGQuaALA=} mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + resolution: {integrity: sha1-fMCo3sMOrwS3salmGpKtszgqpuM=} mdast-util-to-markdown@2.1.2: - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + resolution: {integrity: sha1-+RD/5giX8Eu0t+fuQ0SG92KINhs=} mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + resolution: {integrity: sha1-elEhR1VWoE5+3etnsmSq550xKBQ=} mdn-data@2.27.1: - resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} + resolution: {integrity: sha1-43ucUIgLdTZsTUCsY9m7ys22Hw4=} - mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + mdurl@2.1.0: + resolution: {integrity: sha1-1xHT97zn8ixIfJG+eFRfNW+pZXM=} media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} engines: {node: '>= 0.6'} media-typer@1.1.0: - resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} + resolution: {integrity: sha1-ardLjy0zIPIGSyqHo455Mf86VWE=} engines: {node: '>= 0.8'} - memfs@4.57.7: - resolution: {integrity: sha512-YZPphUQZSRGk6ddPlsNuMbztrLwsbUATFNZcqKscSbSJZ4g0+Y3vSZLJ/rfnGZaB1FFhC7SrywZXev6i8lnHgg==} + memfs@4.64.0: + resolution: {integrity: sha1-iLuFYQgEwVSoEhQk0q66fFvfTjg=} peerDependencies: tslib: '2' memory-pager@1.5.0: - resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==} + resolution: {integrity: sha1-2HUWVdItOEaCdByXLyw9bfo+ZrU=} merge-deep@3.0.3: - resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + resolution: {integrity: sha1-Gisq6SbaiyrpOgrBXZDNGSJ2YAM=} engines: {node: '>=0.10.0'} merge-descriptors@1.0.3: - resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} + resolution: {integrity: sha1-2AMZpl88eTU1Hlz9rI+TGFBNvtU=} merge-descriptors@2.0.0: - resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} + resolution: {integrity: sha1-6pIvZgY1oiSe5WXgRJ+VHmtgOAg=} engines: {node: '>=18'} merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: {integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=} merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=} engines: {node: '>= 8'} - mermaid@11.15.0: - resolution: {integrity: sha512-pTMbcf3rWdtLiYGpmoTjHEpeY8seiy6sR+9nD7LOs8KfUbHE4lOUAprTRqRAcWSQ6MQpdX+YEsxShtGsINtPtw==} + mermaid@11.16.0: + resolution: {integrity: sha1-3JRryEvenQk7oUlA1J3x2ffYwy8=} methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} engines: {node: '>= 0.6'} mic@2.1.2: - resolution: {integrity: sha512-rpl4tgdXX24sAzYwjRc5OZfGNAuhUIIjdd0cw8+Ubq7rp3iGhi40AdqcwurDWhEZADk60tPOxb3E2MpoeLeyxw==} + resolution: {integrity: sha1-8DQoOBeY/4iakEBaAxgVHbBUpO0=} micromark-core-commonmark@2.0.3: - resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + resolution: {integrity: sha1-xpFjDkhQIaaM8o28Kyyifr9njNQ=} micromark-extension-gfm-autolink-literal@2.1.0: - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + resolution: {integrity: sha1-Yoau6WhsRGLB41UqnVBf7dzuuTU=} micromark-extension-gfm-footnote@2.1.0: - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + resolution: {integrity: sha1-TatW1OOYuYU/b+TvrE/JNh8+B1A=} micromark-extension-gfm-strikethrough@2.1.0: - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + resolution: {integrity: sha1-hhBt+LOmkrX2qSKA04eb5r5G2SM=} micromark-extension-gfm-table@2.1.1: - resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + resolution: {integrity: sha1-+scLy/Uf5l9fRAMxGNOb6Km1lAs=} micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + resolution: {integrity: sha1-8m2KeAe1mF+6E89hRltYyl/33Fc=} micromark-extension-gfm-task-list-item@2.1.0: - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + resolution: {integrity: sha1-vMNNgFY5gpmQ7BdcPuoSu1t4Hyw=} micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + resolution: {integrity: sha1-PhM3arld16XP0OKVYN/pmWV7PFs=} micromark-extension-math@3.1.0: - resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==} + resolution: {integrity: sha1-xC7jsd1amgNYToPdjwjj3lECEsE=} micromark-factory-destination@2.0.1: - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + resolution: {integrity: sha1-j++OD3CB8EdPvdkt61DJkKAmRjk=} micromark-factory-label@2.0.1: - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + resolution: {integrity: sha1-UmfvqX8eUlTvx/ILRZo4yyEFi6E=} micromark-factory-space@2.0.1: - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + resolution: {integrity: sha1-NtAhLpYrKzEh+FJfx6PHwCnzNPw=} micromark-factory-title@2.0.1: - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + resolution: {integrity: sha1-I35KpdWKlYY/AQMtnumwkPHebpQ=} micromark-factory-whitespace@2.0.1: - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + resolution: {integrity: sha1-BrJrKYPE0nv8xlezPiUTTUhosLE=} micromark-util-character@2.1.1: - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + resolution: {integrity: sha1-L5h4MaQNTFEKwmHomFLE6XA8zaY=} micromark-util-chunked@2.0.1: - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + resolution: {integrity: sha1-R/vNk0caP8yrhs/wOEf8NVLbEFE=} micromark-util-classify-character@2.0.1: - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + resolution: {integrity: sha1-05n6+cRcoUyLS+mLHqSBvO2Htik=} micromark-util-combine-extensions@2.0.1: - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + resolution: {integrity: sha1-Kg9JCrCL/1zC/V7sbdDKBPibMKk=} micromark-util-decode-numeric-character-reference@2.0.2: - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + resolution: {integrity: sha1-/PFbZgl5OI5vEYzba/fXnXPSb+U=} micromark-util-decode-string@2.0.1: - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + resolution: {integrity: sha1-bLmVguXScehO/KjmGoB5lNcWHrI=} micromark-util-encode@2.0.1: - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + resolution: {integrity: sha1-DVHRwJVVHPqsNoMmljz1XxX1QLg=} micromark-util-html-tag-name@2.0.1: - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + resolution: {integrity: sha1-5AQDCWSBmGtBwQZif5j3LU0QuCU=} micromark-util-normalize-identifier@2.0.1: - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + resolution: {integrity: sha1-ww13sugyrPZSb4vxqke8nJQ4wW0=} micromark-util-resolve-all@2.0.1: - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + resolution: {integrity: sha1-4aLWLN0jcjCirhGDkCexk4HjHos=} micromark-util-sanitize-uri@2.0.1: - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + resolution: {integrity: sha1-q4l4m4GKWHUrc9a1UjhiG3+qj9c=} micromark-util-subtokenize@2.1.0: - resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + resolution: {integrity: sha1-2K3lug8xl6HPaimZ+7/mNXoaGe4=} micromark-util-symbol@2.0.1: - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + resolution: {integrity: sha1-5dpJTo6ysHGg0I+zT2zv7GwKGbg=} micromark-util-types@2.0.2: - resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + resolution: {integrity: sha1-8AIl9fWg68MlT5bDa2YFxLOTkI4=} micromark@4.0.2: - resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + resolution: {integrity: sha1-kTlaPhiEoZjmIRbjPJxWjjmTb9s=} micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + resolution: {integrity: sha1-1m+hjzpHB2eJMgubGvMr2G2fogI=} engines: {node: '>=8.6'} microsoft-cognitiveservices-speech-sdk@1.43.1: - resolution: {integrity: sha512-xO/rlhNSodzCNBtlA3edXDO0+8Q2tMG96nNsjE0JiyAR4Ul/qsZtM4iggTSi+Zax3JtYzrH7W+7349vdpJNaTA==} + resolution: {integrity: sha1-QWVkDgBMTUE9HrSiVeTeRrxad4s=} mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + resolution: {integrity: sha1-u6vNwChZ9JhzAchW4zh85exDv3A=} engines: {node: '>= 0.6'} mime-db@1.54.0: - resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + resolution: {integrity: sha1-zds+5PnGRTDf9kAjZmHULLajFPU=} engines: {node: '>= 0.6'} mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + resolution: {integrity: sha1-OBqHG2KnNEUGYK497uRIE/cNlZo=} engines: {node: '>= 0.6'} mime-types@3.0.2: - resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} + resolution: {integrity: sha1-OQAtQYJXXVrwNv+hGBAPJSSy4qs=} engines: {node: '>=18'} mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + resolution: {integrity: sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=} engines: {node: '>=4'} hasBin: true mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + resolution: {integrity: sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=} engines: {node: '>=4.0.0'} hasBin: true mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + resolution: {integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=} engines: {node: '>=6'} mimic-function@5.0.1: - resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + resolution: {integrity: sha1-rL4rM0n5m53qyn+3Dki4PpTmcHY=} engines: {node: '>=18'} mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + resolution: {integrity: sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=} engines: {node: '>=4'} mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + resolution: {integrity: sha1-LR1Zr5wbEpgVrMwsRqAipc4fo8k=} engines: {node: '>=10'} minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - - minimatch@10.2.4: - resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} - engines: {node: 18 || 20 || >=22} + resolution: {integrity: sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=} minimatch@10.2.5: - resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + resolution: {integrity: sha1-vUhoegvjjtKWE5kQVgD4MglYYdE=} engines: {node: 18 || 20 || >=22} minimatch@3.1.5: - resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} + resolution: {integrity: sha1-WAyI+NVEXyvWqo88re+g3nn71p4=} minimatch@5.1.9: - resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} + resolution: {integrity: sha1-EpPvFdsAmLOUVA6Pn3RPn9qN7ks=} engines: {node: '>=10'} minimatch@8.0.7: - resolution: {integrity: sha512-V+1uQNdzybxa14e/p00HZnQNNcTjnRJjDxg2V8wtkjFctq4M7hXFws4oekyTP0Jebeq7QYtpFyOeBAjc88zvYg==} + resolution: {integrity: sha1-lUdm4i2oij4KF62TtYwVydiled4=} engines: {node: '>=16 || 14 >=14.17'} minimatch@9.0.9: - resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} + resolution: {integrity: sha1-mwy5/LeAh/b9fqur4lEcTT1gV04=} engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: {integrity: sha1-waRk52kzAuCCoHXO4MBXdBrEdyw=} + + minimizer-webpack-plugin@5.6.1: + resolution: {integrity: sha1-KJkipMlsTtHdt2uKAL2AdOiaL38=} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@minify-html/node': '*' + '@swc/core': '*' + '@swc/css': '*' + '@swc/html': '*' + clean-css: '*' + cssnano: '*' + csso: '*' + esbuild: '*' + html-minifier-terser: '*' + lightningcss: '*' + postcss: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@minify-html/node': + optional: true + '@swc/core': + optional: true + '@swc/css': + optional: true + '@swc/html': + optional: true + clean-css: + optional: true + cssnano: + optional: true + csso: + optional: true + esbuild: + optional: true + html-minifier-terser: + optional: true + lightningcss: + optional: true + postcss: + optional: true + uglify-js: + optional: true minipass@4.2.8: - resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + resolution: {integrity: sha1-8AEPZDk+z8HRzLX1gryvRfSOGjo=} engines: {node: '>=8'} - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - minipass@7.1.3: - resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} + resolution: {integrity: sha1-eTibTrG7LQA6m7qH1JLyvTe9xls=} engines: {node: '>=16 || 14 >=14.17'} minizlib@3.1.0: - resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} + resolution: {integrity: sha1-atdsOo8QInybUdHJrI4wsn9aJRw=} engines: {node: '>= 18'} mitt@3.0.1: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + resolution: {integrity: sha1-6jbPDMMEA2Aa4HTI93twks2rNtE=} mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + resolution: {integrity: sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=} engines: {node: '>=0.10.0'} mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + resolution: {integrity: sha1-+hDJEVzG2IZb4iG6R+6b7XhgERM=} mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + resolution: {integrity: sha1-fe8D0kMtyuS6HWEURcSDlgYiVfY=} hasBin: true mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + resolution: {integrity: sha1-PrXtYmInVteaXw4qIh3+utdcL34=} engines: {node: '>=10'} hasBin: true mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + resolution: {integrity: sha1-5E5MVgf7J5wWgkFxPMbg/qmty1A=} engines: {node: '>=10'} hasBin: true mnemonist@0.39.8: - resolution: {integrity: sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==} + resolution: {integrity: sha1-kHjNg4YIGv2YbMo0tStdhOp6TTg=} mocha@10.8.2: - resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==} + resolution: {integrity: sha1-jYNC0BbtQRsSpCnrcxuCX5Ya+5Y=} engines: {node: '>= 14.0.0'} hasBin: true mocha@11.7.6: - resolution: {integrity: sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==} + resolution: {integrity: sha1-674imJ0Ey7lCSjYwcyBHZiTEGjM=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true module-definition@6.0.2: - resolution: {integrity: sha512-SvAU3lB0+Yjbq55yHY3wkRZBOh+fhU1SnIF3IFbTewv6mtAh7yUT8ACHAJ2mGIJ7tCes2QuCL/cl6m0JSZ/ArA==} + resolution: {integrity: sha1-1yo2E9v2/nJH6+9k8R/dws0YuDs=} engines: {node: '>=18'} hasBin: true module-lookup-amd@9.1.3: - resolution: {integrity: sha512-Jc3XmOaR9FdfMJSK8+vyLgsCkzm8z2L0NS6vrlRWi12DjS7MY7TMNE7E1yj8yXx837xtMDbKSSgcdXnFlJ2YLg==} + resolution: {integrity: sha1-maPDow/wSYxpS6H25N4SY6ceVVE=} engines: {node: '>=18'} hasBin: true - mongodb-connection-string-url@3.0.0: - resolution: {integrity: sha512-t1Vf+m1I5hC2M5RJx/7AtxgABy1cZmIPQRMXw+gEIPn/cZNF3Oiy+l0UIypUwVB5trcWHq3crg2g3uAR9aAwsQ==} + mongodb-connection-string-url@3.0.2: + resolution: {integrity: sha1-4iMInfoKX6m/UF+K7cvGewd7M+c=} - mongodb@6.16.0: - resolution: {integrity: sha512-D1PNcdT0y4Grhou5Zi/qgipZOYeWrhLEpk33n3nm6LGtz61jvO88WlrWCK/bigMjpnOdAUKKQwsGIl0NtWMyYw==} + mongodb@6.21.0: + resolution: {integrity: sha1-+DNVkFkA8uepElk/AxXV4uC9pXY=} engines: {node: '>=16.20.1'} peerDependencies: '@aws-sdk/credential-providers': ^3.188.0 @@ -15352,7 +14451,7 @@ packages: gcp-metadata: ^5.2.0 kerberos: ^2.0.1 mongodb-client-encryption: '>=6.0.0 <7' - snappy: ^7.2.2 + snappy: ^7.3.2 socks: ^2.7.1 peerDependenciesMeta: '@aws-sdk/credential-providers': @@ -15371,122 +14470,122 @@ packages: optional: true ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=} multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + resolution: {integrity: sha1-d+tGBX9NetvRbZKQ+nKZ9vpkzO0=} hasBin: true multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + resolution: {integrity: sha1-kyuACWPOp6MaAzMo+h4MOhh02+Y=} engines: {node: '>=10'} mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + resolution: {integrity: sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=} mute-stream@2.0.0: - resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} + resolution: {integrity: sha1-pURvwMUStxyDxE2QjVx7e0xJOys=} engines: {node: ^18.17.0 || >=20.5.0} mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + resolution: {integrity: sha1-lQCAV6Vsr63CvGPd5/n/aVWUjjI=} nanocolors@0.2.13: - resolution: {integrity: sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==} + resolution: {integrity: sha1-39HtC/qwXp/lQOtodFJfChaECZs=} nanoid@3.3.16: - resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==} + resolution: {integrity: sha1-oE2OxLHxAAnS1TOUeu/kKTc3gWw=} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanoid@5.1.5: - resolution: {integrity: sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==} + nanoid@5.1.16: + resolution: {integrity: sha1-/jRcCh+QB8Mvu1wTnhIIv9P0Hvc=} engines: {node: ^18 || >=20} hasBin: true napi-build-utils@2.0.0: - resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} + resolution: {integrity: sha1-E8IsAYf8/MzhRhhEE2NypH3cAn4=} natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} natural-orderby@3.0.2: - resolution: {integrity: sha512-x7ZdOwBxZCEm9MM7+eQCjkrNLrW3rkBKNHVr78zbtqnMGVNlnDi6C/eUEYgxHNrcbu0ymvjzcwIL/6H1iHri9g==} + resolution: {integrity: sha1-G4dNaF+9aL6rLG59FPKY4D1jHsM=} engines: {node: '>=18'} - needle@3.3.1: - resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + needle@2.9.1: + resolution: {integrity: sha1-ItHf++NJDCuD4wH3cJtnNs2PJoQ=} engines: {node: '>= 4.4.x'} hasBin: true needle@3.5.0: - resolution: {integrity: sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==} + resolution: {integrity: sha1-qiAjZCy0GxGhG6u3M/2PqVKRkRI=} engines: {node: '>= 4.4.x'} hasBin: true negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + resolution: {integrity: sha1-WOMjpy/twNb5zU0x/kn1FHlZDM0=} engines: {node: '>= 0.6'} negotiator@0.6.4: - resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} + resolution: {integrity: sha1-d3lI4kUmUcVwtxLdAcI+JicT//c=} engines: {node: '>= 0.6'} negotiator@1.0.0: - resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + resolution: {integrity: sha1-tskbtHFy1p+Tz9fDV7u1KQGbX2o=} engines: {node: '>= 0.6'} neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: {integrity: sha1-tKr7k+OustgXTKU88WOrfXMIMF8=} - netmask@2.0.2: - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + netmask@2.1.1: + resolution: {integrity: sha1-gAQ9JltTqlIbO9Aej83zU/nh6B4=} engines: {node: '>= 0.4.0'} nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + resolution: {integrity: sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=} no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: {integrity: sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=} - node-abi@3.77.0: - resolution: {integrity: sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==} + node-abi@3.94.0: + resolution: {integrity: sha1-AHGB7Q0bVq6WcOpsCE0r+DU4QF8=} engines: {node: '>=10'} node-abi@4.33.0: - resolution: {integrity: sha512-vLBWCKb+7LWsX+TbfzWOkw0W81m377tyx3hOweBTjO43CXZnRGS1/JPWs20fr0PgZyDXk6ROYrylsEycK8raDA==} + resolution: {integrity: sha1-zOm3vODL+h1dWptpCLxe7WmJacw=} engines: {node: '>=22.12.0'} node-addon-api@1.7.2: - resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==} + resolution: {integrity: sha1-PfMLlXILU8JOWZSLSVMrZiRE9U0=} node-addon-api@4.3.0: - resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} + resolution: {integrity: sha1-UqGgtHUZPgko6Y4EJqDRJUeCt38=} node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + resolution: {integrity: sha1-Grpmk7DyVSWKBJ1iEykykyKq1Vg=} node-api-version@0.2.1: - resolution: {integrity: sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q==} + resolution: {integrity: sha1-GbrVT21lYoy+5OYHoyXkSIrOLek=} node-domexception@1.0.0: - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + resolution: {integrity: sha1-aIjbRqH3HAt2s/dVUBa2P+ZHZuU=} engines: {node: '>=10.5.0'} deprecated: Use your platform's native DOMException instead node-email-verifier@3.4.1: - resolution: {integrity: sha512-69JMeWgEUrCji+dOLULirdSoosRxgAq2y+imfmHHBGvgTwyTKqvm65Ls3+W30DCIWMrYj5kKVb/DHTQDK7OVwQ==} + resolution: {integrity: sha1-CNRFpHrzTjMzJEdIm8A2DOVfgBk=} engines: {node: '>=18.0.0'} node-emoji@2.2.0: - resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} + resolution: {integrity: sha1-HQAOPHbkYld4lb4bQ29KotZ2DrA=} engines: {node: '>=18'} node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + resolution: {integrity: sha1-0PD6bj4twdJ+/NitmdVQvalNGH0=} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -15495,156 +14594,148 @@ packages: optional: true node-gyp@12.4.0: - resolution: {integrity: sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==} + resolution: {integrity: sha1-LQF7bqHKkpTbvudb5TNyj0klcCQ=} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} node-pty@1.1.0: - resolution: {integrity: sha512-20JqtutY6JPXTUnL0ij1uad7Qe1baT46lyolh2sSENDd4sTzKZ4nmAFkeAARDKwmlLjPx6XKRlwRUxwjOy+lUg==} + resolution: {integrity: sha1-Fhk21FpHdRwuO2lMNl5zAXQXqIc=} node-releases@2.0.51: - resolution: {integrity: sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==} + resolution: {integrity: sha1-zcCEM1d/WzKtAWlEgXJuIu61Su8=} engines: {node: '>=18'} node-rsa@1.1.1: - resolution: {integrity: sha512-Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw==} + resolution: {integrity: sha1-79mtOCCXeC9QYVM5hJb3nkRkQ00=} - node-sarif-builder@2.0.3: - resolution: {integrity: sha512-Pzr3rol8fvhG/oJjIq2NTVB0vmdNNlz22FENhhPojYRZ4/ee08CfK4YuKmuL54V9MLhI1kpzxfOJ/63LzmZzDg==} - engines: {node: '>=14'} + node-sarif-builder@3.4.0: + resolution: {integrity: sha1-nBrAJpGfWXfhAU8OJtT2nw9Fvs0=} + engines: {node: '>=20'} node-sarif-builder@4.1.0: - resolution: {integrity: sha512-IWqZF6u0EI/07HTBm+zZ+MgXgWl09dnSJRGaDCPBSlOqilDcx6pj3Mpb3HvPN8V2Gr+ISw7ZrMsL7STWs1F++w==} + resolution: {integrity: sha1-Jjhit2aUMI0NkVmIqHsyqgy2NDk=} engines: {node: '>=20'} node-source-walk@7.0.2: - resolution: {integrity: sha512-71kFFjYaSshDTA8/a2HiTYPLdASWjLJxUyJxGE+ffxU+KhxSBtM9kiLUX+R2yooFdSFKMFpi4n3PFtDy6qXv8A==} + resolution: {integrity: sha1-sHUlnLQMMVhXBEe+e9Tez/0gdpQ=} engines: {node: '>=18'} nodemailer@8.0.4: - resolution: {integrity: sha512-k+jf6N8PfQJ0Fe8ZhJlgqU5qJU44Lpvp2yvidH3vp1lPnVQMgi4yEEMPXg5eJS1gFIJTVq1NHBk7Ia9ARdSBdQ==} + resolution: {integrity: sha1-tjYmWFaT83o5Ddrs3ic9qZHHYBA=} engines: {node: '>=6.0.0'} noms@0.0.0: - resolution: {integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==} + resolution: {integrity: sha1-2o69nzr51nYJGbJ9nNyAkqczKFk=} nopt@9.0.0: - resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==} + resolution: {integrity: sha1-a/8INrKWTSRQi2tBtamknE9KH5Y=} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true normalize-package-data@6.0.2: - resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} + resolution: {integrity: sha1-p7wiFn/iQCVBK8/wqWUet2iwNQY=} engines: {node: ^16.14.0 || >=18.0.0} normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + resolution: {integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=} engines: {node: '>=0.10.0'} normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + resolution: {integrity: sha1-QNCIW1Nd7/4/MUe+yHfQX+TFZoo=} engines: {node: '>=10'} npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=} engines: {node: '>=4'} npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + resolution: {integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=} engines: {node: '>=8'} nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + resolution: {integrity: sha1-yeq0KO/842zWuSySS9sADvHx7R0=} - nwsapi@2.2.20: - resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + nwsapi@2.2.24: + resolution: {integrity: sha1-+JJwQ9TJtRar3r6ASjLI0flITR8=} object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} engines: {node: '>=0.10.0'} object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + resolution: {integrity: sha1-c/l/dT57r/wOLMnW4HkHl0Ssguk=} engines: {node: '>= 6'} object-inspect@1.13.4: - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + resolution: {integrity: sha1-g3UmXiG8IND6WCwi4bE0hdbgAhM=} engines: {node: '>= 0.4'} object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=} engines: {node: '>= 0.4'} object-treeify@4.0.1: - resolution: {integrity: sha512-Y6tg5rHfsefSkfKujv2SwHulInROy/rCL5F4w0QOWxut8AnxYxf0YmNhTh95Zfyxpsudo66uqkux0ACFnyMSgQ==} + resolution: {integrity: sha1-+Rp97HldgnWIbn8b14QI9pdb6CU=} engines: {node: '>= 16'} object.assign@4.1.7: - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + resolution: {integrity: sha1-jBTKGkJMalYbC7KiL2b1BJqUXT0=} engines: {node: '>= 0.4'} obliterator@2.0.5: - resolution: {integrity: sha512-42CPE9AhahZRsMNslczq0ctAEtqk8Eka26QofnqC346BZdHDySk3LWka23LI7ULIw11NmltpiLagIq8gBozxTw==} + resolution: {integrity: sha1-Ax4BRTVLDBiEAzauUdQefW0sdqo=} obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + resolution: {integrity: sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=} on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + resolution: {integrity: sha1-WMjEQRblSEWtV/FKsQsDUzGErD8=} engines: {node: '>= 0.8'} on-headers@1.1.0: - resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==} + resolution: {integrity: sha1-WdpPkcRfX5icbkvO3Fo7Cu1w/2U=} engines: {node: '>= 0.8'} once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + resolution: {integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=} engines: {node: '>=6'} onetime@7.0.0: - resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + resolution: {integrity: sha1-nxbJLYye9RIOOs2d2ZV8zuzBq2A=} engines: {node: '>=18'} only@0.0.2: - resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} + resolution: {integrity: sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=} onnxruntime-common@1.21.0: - resolution: {integrity: sha512-Q632iLLrtCAVOTO65dh2+mNbQir/QNTVBG3h/QdZBpns7mZ0RYbLRBgGABPbpU9351AgYy7SJf1WaeVwMrBFPQ==} + resolution: {integrity: sha1-qB1BkdQYrLv/JUapVMwswj7rCfg=} onnxruntime-common@1.22.0-dev.20250409-89f8206ba4: - resolution: {integrity: sha512-vDJMkfCfb0b1A836rgHj+ORuZf4B4+cc2bASQtpeoJLueuFc5DuYwjIZUBrSvx/fO5IrLjLz+oTrB3pcGlhovQ==} + resolution: {integrity: sha1-PUo5VjuT2z0EKLVSfLpYo8j4JsI=} onnxruntime-node@1.21.0: - resolution: {integrity: sha512-NeaCX6WW2L8cRCSqy3bInlo5ojjQqu2fD3D+9W5qb5irwxhEyWKXeH2vZ8W9r6VxaMPUan+4/7NDwZMtouZxEw==} + resolution: {integrity: sha1-f09ZRVuvhRGB4gf8hAEoisLrENE=} os: [win32, darwin, linux] onnxruntime-web@1.22.0-dev.20250409-89f8206ba4: - resolution: {integrity: sha512-0uS76OPgH0hWCPrFKlL8kYVV7ckM7t/36HfbgoFw6Nd0CZVVbQC4PkrR8mBX8LtNUFZO25IQBqV2Hx2ho3FlbQ==} - - open@10.1.0: - resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} - engines: {node: '>=18'} - - open@10.1.2: - resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==} - engines: {node: '>=18'} + resolution: {integrity: sha1-0eOgTgPf7jkrQdQg71R7agNRsGs=} open@10.2.0: - resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + resolution: {integrity: sha1-udhVvgB2IOgLb7BfrJgUH+Yttzw=} engines: {node: '>=18'} open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + resolution: {integrity: sha1-W1/+Ko95Pc0qrXPlUMuHtZywhPk=} engines: {node: '>=12'} - openai@4.103.0: - resolution: {integrity: sha512-eWcz9kdurkGOFDtd5ySS5y251H2uBgq9+1a2lTBnjMMzlexJ40Am5t6Mu76SSE87VvitPa0dkIAp75F+dZVC0g==} + openai@4.104.0: + resolution: {integrity: sha1-xIl2XcBRuVAZhF2rZLDlIHyuTTA=} hasBin: true peerDependencies: ws: ^8.18.0 @@ -15655,379 +14746,366 @@ packages: zod: optional: true - openai@6.41.0: - resolution: {integrity: sha512-IGWPopZq6Rjoynjfb3NSLf/z2MTw7UiOsm9TAjPGAjUESH7Uq41Trg4QWehBEn58p74i+m7uoRPV2vXcpPXhyA==} + openai@6.48.0: + resolution: {integrity: sha1-TKvSpooSPBssLW+sWf0Zwyeqt60=} peerDependencies: + '@aws-sdk/credential-provider-node': '>=3.972.0 <4' + '@smithy/hash-node': '>=4.3.0 <5' + '@smithy/signature-v4': '>=5.4.0 <6' ws: ^8.18.0 zod: ^3.25 || ^4.0 peerDependenciesMeta: + '@aws-sdk/credential-provider-node': + optional: true + '@smithy/hash-node': + optional: true + '@smithy/signature-v4': + optional: true ws: optional: true zod: optional: true optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + resolution: {integrity: sha1-fqHBpdkddk+yghOciP4R4YKjpzQ=} engines: {node: '>= 0.8.0'} ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + resolution: {integrity: sha1-GyZ4Qmr0rEpQkAjl5KyemVnbnhg=} engines: {node: '>=10'} ora@8.2.0: - resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==} + resolution: {integrity: sha1-j7u3FRr+M7VA3RU/Fx/6i9OOmGE=} engines: {node: '>=18'} orderedmap@2.1.1: - resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} + resolution: {integrity: sha1-YUgSacRAMcRJkVSXv1pK0nPFEtI=} os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + resolution: {integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M=} engines: {node: '>=0.10.0'} - own-keys@1.0.1: - resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + own-keys@1.0.2: + resolution: {integrity: sha1-MUSOwfeB7LFEf29qoNZTQiKvWd4=} engines: {node: '>= 0.4'} - oxc-parser@0.137.0: - resolution: {integrity: sha512-yFImD+WLElJpLKy8llG1qe4DCmMsL18peRp8XP1JKfig/gISbJkglnpDtX2aTmAn10kZF7164HbN2H8QPsXxGg==} + oxc-parser@0.140.0: + resolution: {integrity: sha1-cachnNnhjKoGeConYza1g104/Do=} engines: {node: ^20.19.0 || >=22.12.0} - oxc-resolver@11.21.3: - resolution: {integrity: sha512-2Mx3fKQz7+xgrBONjsxOgCGtMHOn38/HxMzW1I5efwXB5a4lRN0Vp40gYUJFBWJslcrvwoofTrqoTnLbwTd3pA==} + oxc-resolver@11.24.2: + resolution: {integrity: sha1-hcCNn1eX5gAXX6hSTS0nHGhdl88=} p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + resolution: {integrity: sha1-qrf71BZYL6MqPbSYWcEiSHxe0s8=} engines: {node: '>=8'} p-event@4.2.0: - resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + resolution: {integrity: sha1-r0sEnIrNka6BCD69Hm9criBEwbU=} engines: {node: '>=8'} p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} engines: {node: '>=4'} p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=} engines: {node: '>=6'} p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=} engines: {node: '>=10'} p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + resolution: {integrity: sha1-kUr2VE7TK/pUZwsGHK/L0EmEtkQ=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=} engines: {node: '>=8'} p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + resolution: {integrity: sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=} engines: {node: '>=10'} p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + resolution: {integrity: sha1-PamknUk0uQEIncozAvpl3FoFwE8=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@7.0.6: + resolution: {integrity: sha1-W27n8ad1+qSFmcjUQg9qOYM804c=} + engines: {node: '>=18'} p-retry@6.2.1: - resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==} + resolution: {integrity: sha1-gYKPjcYcbvWoAFhUkVcsyYknA68=} engines: {node: '>=16.17'} p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + resolution: {integrity: sha1-x+F6vJcdKnli74NiazXWNazyPf4=} engines: {node: '>=8'} p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=} engines: {node: '>=6'} pac-proxy-agent@7.2.0: - resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + resolution: {integrity: sha1-nPrzP/Jdo29hR6IIRCMOySwG5d8=} engines: {node: '>= 14'} pac-resolver@7.0.1: - resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + resolution: {integrity: sha1-VGdVWOo2i2TSEP2ckqZAtfO4q7Y=} engines: {node: '>= 14'} package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + resolution: {integrity: sha1-TxRxoBCCeob5TP2bByfjbSZ95QU=} - package-manager-detector@1.6.0: - resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} + package-manager-detector@1.8.0: + resolution: {integrity: sha1-cMmixL0aUT3NbK0Aap/OvsIqElM=} pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + resolution: {integrity: sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=} pandemonium@2.4.1: - resolution: {integrity: sha512-wRqjisUyiUfXowgm7MFH2rwJzKIr20rca5FsHXCMNm1W5YPP1hCtrZfgmQ62kP7OZ7Xt+cR858aB28lu5NX55g==} + resolution: {integrity: sha1-vVHKchhMauE1+QSaM8hgW/25V00=} param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + resolution: {integrity: sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=} parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=} engines: {node: '>=6'} parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=} engines: {node: '>=8'} - parse-json@7.1.1: - resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} - engines: {node: '>=16'} + parse-json@8.3.0: + resolution: {integrity: sha1-iKGVohVwJROaIxek8vklK2EwTtU=} + engines: {node: '>=18'} parse-ms@2.1.0: - resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} + resolution: {integrity: sha1-NIVlp1PUOR+lJAKZVrFyy3dTCX0=} engines: {node: '>=6'} parse-node-version@1.0.1: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + resolution: {integrity: sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=} engines: {node: '>= 0.10'} parse-semver@1.1.1: - resolution: {integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==} + resolution: {integrity: sha1-mkr9bfBj3Egm+T+6SpnPIj9mbLg=} parse5-htmlparser2-tree-adapter@6.0.1: - resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} - - parse5-htmlparser2-tree-adapter@7.0.0: - resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + resolution: {integrity: sha1-LN+a2CMyEUA3DU2/XT6Sx8jdxuY=} parse5-htmlparser2-tree-adapter@7.1.0: - resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} + resolution: {integrity: sha1-tagGVI7Yk6Q+JMy0L7t4BpMR6Bs=} parse5-parser-stream@7.1.2: - resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} + resolution: {integrity: sha1-18IOrcN5aNJy4sAmYP/5LdJ+YOE=} parse5@5.1.1: - resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + resolution: {integrity: sha1-9o5OW6GFKsLK3AD0VV//bCq7YXg=} parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - - parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + resolution: {integrity: sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=} parse5@7.3.0: - resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + resolution: {integrity: sha1-1+Ik+nI5nHoXUJn0X8KtAksF7AU=} - parse5@8.0.0: - resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==} + parse5@8.0.1: + resolution: {integrity: sha1-9DvNLNaD7+CEB1Mz6c4Np9Btox4=} parseley@0.12.1: - resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==} + resolution: {integrity: sha1-Sv1WHVAhXr4lnj56hT5i9gBoOu8=} parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + resolution: {integrity: sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=} engines: {node: '>= 0.8'} pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + resolution: {integrity: sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=} patch-console@2.0.0: - resolution: {integrity: sha512-0YNdUceMdaQwoKce1gatDScmMo5pu/tfABfnzEqeG0gtTmd7mh/WcwgUjtAeOU7N8nFFlbQBnFK2gXW5fGvmMA==} + resolution: {integrity: sha1-kCP0ZlhA5m9A6c53T5BKYxZ0M7s=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} path-data-parser@0.1.0: - resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==} + resolution: {integrity: sha1-j1ulzHD8e+yz3O+uoI4mWaumC4w=} path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=} engines: {node: '>=8'} path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + resolution: {integrity: sha1-pqrZSJIAsh+rMeSc8JJ35RFvuec=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} path-expression-matcher@1.6.2: - resolution: {integrity: sha512-enSlaiat05iasnzmgNxRj8reFdj3puY2QpNgP1aPIaVfT6nn9ICuPoFlKHk8EN22HcwewshO+mN2DGbkCEOtqQ==} + resolution: {integrity: sha1-VnxzwHGX6dzvJOkO3NxXEFZZkWg=} engines: {node: '>=14.0.0'} path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} engines: {node: '>=0.10.0'} path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=} engines: {node: '>=4'} path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=} engines: {node: '>=8'} path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=} path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + resolution: {integrity: sha1-eWCmaIiFlKByCxKpEdGnQqufEdI=} engines: {node: '>=16 || 14 >=14.18'} path-scurry@2.0.2: - resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} + resolution: {integrity: sha1-a+DQ7gKhDZ4N56mLrmXhgskGH4U=} engines: {node: 18 || 20 || >=22} path-to-regexp@0.1.13: - resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==} + resolution: {integrity: sha1-myLsFrw6uI0FoMfjaYaUIUAasX0=} path-to-regexp@8.4.2: - resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==} + resolution: {integrity: sha1-eVxCDE98pFxbiHNm9iLuDJhSzM0=} path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=} engines: {node: '>=8'} - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - path-type@6.0.0: - resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} + resolution: {integrity: sha1-Lxu2eRqRzpkZTK7eXWxZIO2B61E=} engines: {node: '>=18'} pause-stream@0.0.11: - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} + resolution: {integrity: sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=} pbf@3.3.0: - resolution: {integrity: sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==} + resolution: {integrity: sha1-F5Dz2ZEYMzzH9JjegWAoo0bvNn8=} hasBin: true - pdfjs-dist@5.3.31: - resolution: {integrity: sha512-EhPdIjNX0fcdwYQO+e3BAAJPXt+XI29TZWC7COhIXs/K0JHcUt1Gdz1ITpebTwVMFiLsukdUZ3u0oTO7jij+VA==} - engines: {node: '>=20.16.0 || >=22.3.0'} + pdfjs-dist@5.7.284: + resolution: {integrity: sha1-Adn/HXzNFSRb3shSSmdw/rd/uyM=} + engines: {node: '>=22.13.0 || >=24'} pe-library@0.4.1: - resolution: {integrity: sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw==} + resolution: {integrity: sha1-4mm+A0DcsTqmlJ10PafWWMPi++o=} engines: {node: '>=12', npm: '>=6'} peberminta@0.9.0: - resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==} + resolution: {integrity: sha1-jsm8DrhLfTaBJucc6QM1Adyio1I=} pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=} picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + resolution: {integrity: sha1-PTIa8+q5ObCDyPkpodEs2oHCa2s=} picomatch@2.3.2: - resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} + resolution: {integrity: sha1-WpQpFeJrNy3A8OZ1MUmhbmscVgE=} engines: {node: '>=8.6'} - picomatch@4.0.4: - resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} - engines: {node: '>=12'} - picomatch@4.0.5: - resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} + resolution: {integrity: sha1-UepXoX2G9gX4EDlZX7xA7QalX6s=} engines: {node: '>=12'} - picospinner@2.0.0: - resolution: {integrity: sha512-bRX16jAx5sDlSAEKJ26hKloGU+w2DIkGw0qeUn87WkT8xircacGumNFHS0d/s51S9QbrtoEFwRSAvIvHNstfjA==} + picospinner@2.1.0: + resolution: {integrity: sha1-gsbHVIFY0Q1USQ59y4eKxUNfSaM=} engines: {node: '>=18.0.0'} - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - pirates@4.0.7: - resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + resolution: {integrity: sha1-ZDtKGMQlfIplEEtz8wSc6aChXiI=} engines: {node: '>= 6'} pkce-challenge@5.0.1: - resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==} + resolution: {integrity: sha1-O0RGhlsXsXRems4gFqMfSN32Iw0=} engines: {node: '>=16.20.0'} pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + resolution: {integrity: sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=} engines: {node: '>=8'} pkijs@3.4.0: - resolution: {integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==} + resolution: {integrity: sha1-2RZN7zD/bZe+LYiWbV42GSSZypw=} engines: {node: '>=16.0.0'} platform@1.3.6: - resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + resolution: {integrity: sha1-SLTOmDFksgnC1FoQetsx9HOm56c=} play-sound@1.1.6: - resolution: {integrity: sha512-09eO4QiXNFXJffJaOW5P6x6F5RLihpLUkXttvUZeWml0fU6x6Zp7AjG9zaeMpgH2ZNvq4GR1ytB22ddYcqJIZA==} + resolution: {integrity: sha1-5i7Z2vhQarqVno/SZ8Sdm5edifo=} - playwright-core@1.57.0: - resolution: {integrity: sha512-agTcKlMw/mjBWOnD6kFZttAAGHgi/Nw0CZ2o6JqWSbMlI219lAFLZZCyqByTsvVAJq5XA5H8cA6PrvBRpBWEuQ==} + playwright-core@1.61.1: + resolution: {integrity: sha1-PJmEEwfvu6vJ1yTEGojJFHBdFfw=} engines: {node: '>=18'} hasBin: true - playwright@1.57.0: - resolution: {integrity: sha512-ilYQj1s8sr2ppEJ2YVadYBN0Mb3mdo9J0wQ+UuDhzYqURwSoW4n1Xs5vs7ORwgDGmyEh33tRMeS8KhdkMoLXQw==} + playwright@1.61.1: + resolution: {integrity: sha1-2MDAbrk8KJga/HR7rORTvb1QGLw=} engines: {node: '>=18'} hasBin: true plist@3.1.0: - resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==} + resolution: {integrity: sha1-eXpRapPmL1veVeC5zJyWf4YIk8k=} engines: {node: '>=10.4.0'} plist@3.1.1: - resolution: {integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==} + resolution: {integrity: sha1-+mCZ4ePPbqGAJY6+Y3jqOHjCyEE=} engines: {node: '>=10.4.0'} pluralize@2.0.0: - resolution: {integrity: sha512-TqNZzQCD4S42De9IfnnBvILN7HAW7riLqsCyp8lgjXeysyPlX5HhqKAcJHHHb9XskE4/a+7VGC9zzx8Ls0jOAw==} + resolution: {integrity: sha1-crcmqm+sHt7uQiVsfY3CVrM1Z38=} pluralize@8.0.0: - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + resolution: {integrity: sha1-Gm+hajjRKhkB4DIPoBcFHFOc47E=} engines: {node: '>=4'} points-on-curve@0.2.0: - resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==} + resolution: {integrity: sha1-fbuYxDeRhZQ0KEdhMw+ok8uBtNE=} points-on-path@0.2.1: - resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==} + resolution: {integrity: sha1-VTICtUJMU77TcTWzGIWOrP+F3VI=} portfinder@1.0.38: - resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==} + resolution: {integrity: sha1-5Ps6LYiLINKXfaBQ5Iq14fV6GF4=} engines: {node: '>= 10.12'} possible-typed-array-names@1.1.0: - resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + resolution: {integrity: sha1-k+NYK8DlQmWG2dB7ee5A/IQd5K4=} engines: {node: '>= 0.4'} postcss-values-parser@6.0.2: - resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==} + resolution: {integrity: sha1-Y27cW4bJU4lvG7DXp6ZhXfAPt28=} engines: {node: '>=10'} peerDependencies: postcss: ^8.2.9 - postcss@8.5.19: - resolution: {integrity: sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==} - engines: {node: ^10 || ^12 || >=14} - - postcss@8.5.21: - resolution: {integrity: sha512-v4sDNP3fdNiWMfabO7OwOQdOX8TiQSztKyT1Wj0w+j7LDallJThJRBBBmzVGyYj0crMh7jlV4zepPkiNu9UwDQ==} + postcss@8.5.22: + resolution: {integrity: sha1-CGoNVoWnFaz1lQ67yxU4+vMFFpc=} engines: {node: ^10 || ^12 || >=14} postject@1.0.0-alpha.6: - resolution: {integrity: sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==} + resolution: {integrity: sha1-nQIjMicuLPzo3qTPzh7m3Rsu4TU=} engines: {node: '>=14.0.0'} hasBin: true prebuild-install@7.1.3: - resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} + resolution: {integrity: sha1-1jCrrSsUdEPyCiEpF76uaLgJLuw=} engines: {node: '>=10'} deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true precinct@12.3.2: - resolution: {integrity: sha512-JbJevI1K80z8e/WIyDt/4vUN/4qcfBSKKqOjJA4mosPPPb7zODKRJQV7YN7apVWN3k58nZYm/vEsLgEGYmnxwg==} + resolution: {integrity: sha1-DWoV0umVF0SiT13mqyfJsmk2URk=} engines: {node: '>=18'} hasBin: true prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + resolution: {integrity: sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=} engines: {node: '>= 0.8.0'} prettier@3.5.3: @@ -16036,96 +15114,102 @@ packages: hasBin: true pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + resolution: {integrity: sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY=} pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + resolution: {integrity: sha1-ykLHWDEPNlv6caC9oKgHFgt3aBI=} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} pretty-ms@7.0.1: - resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} + resolution: {integrity: sha1-fZA+qrKB99jgPGb4Z+I53DL7c+g=} engines: {node: '>=10'} priorityqueuejs@2.0.0: - resolution: {integrity: sha512-19BMarhgpq3x4ccvVi8k2QpJZcymo/iFUcrhPd4V96kYGovOdTsWwy7fxChYi4QY+m2EnGBWSX9Buakz+tWNQQ==} + resolution: {integrity: sha1-lgZAQO3YR+6d0wE9jhYpc5mmvU8=} prismjs@1.30.0: - resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + resolution: {integrity: sha1-2XCZadnU4WQD9vNIxjVTsZ8Jdak=} engines: {node: '>=6'} + probe-image-size@7.3.0: + resolution: {integrity: sha1-oH3y4s/8EFcCbVob2jpbEe6XADQ=} + proc-log@6.1.0: - resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==} + resolution: {integrity: sha1-GFGUgqN9UZjiMRM6cBRKUPIfAhU=} engines: {node: ^20.17.0 || >=22.9.0} process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + resolution: {integrity: sha1-eCDZsWEgzFXKmud5JoCufbptf+I=} process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=} engines: {node: '>= 0.6.0'} progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + resolution: {integrity: sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=} engines: {node: '>=0.4.0'} promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + resolution: {integrity: sha1-/3R6E2IKtXumiPX8Z4VUEMNw2iI=} engines: {node: '>=10'} promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + resolution: {integrity: sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=} prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + resolution: {integrity: sha1-e1fnOzpIAprRDr1E90sBcipMsGk=} engines: {node: '>= 6'} proper-lockfile@4.1.2: - resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} + resolution: {integrity: sha1-yLneKvay8WAQZ/mOAaxmuqIjFB8=} - prosemirror-changeset@2.3.1: - resolution: {integrity: sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ==} + prosemirror-changeset@2.4.1: + resolution: {integrity: sha1-aFCRJFvzKZzRyuK4mDz5sDQuazk=} prosemirror-commands@1.7.1: - resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==} + resolution: {integrity: sha1-0QH++FYYsb5T1bmeoXvuVgB4Gzg=} + + prosemirror-drop-indicator@0.1.4: + resolution: {integrity: sha1-7Z+dyML6yT0wcCK8Q+Ju8t12CSM=} - prosemirror-dropcursor@1.8.2: - resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==} + prosemirror-dropcursor@1.8.3: + resolution: {integrity: sha1-cmrpe6olEJcwaw9xlKIXpa2ej58=} - prosemirror-gapcursor@1.3.2: - resolution: {integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==} + prosemirror-gapcursor@1.4.1: + resolution: {integrity: sha1-2jPJBf7OFH31dzQsBvSSmyXTZe4=} - prosemirror-history@1.4.1: - resolution: {integrity: sha512-2JZD8z2JviJrboD9cPuX/Sv/1ChFng+xh2tChQ2X4bB2HeK+rra/bmJ3xGntCcjhOqIzSDG6Id7e8RJ9QPXLEQ==} + prosemirror-history@1.5.0: + resolution: {integrity: sha1-7iH8XehaFHPj43UgFf/W1kmgaFk=} - prosemirror-inputrules@1.5.0: - resolution: {integrity: sha512-K0xJRCmt+uSw7xesnHmcn72yBGTbY45vm8gXI4LZXbx2Z0jwh5aF9xrGQgrVPu0WbyFVFF3E/o9VhJYz6SQWnA==} + prosemirror-inputrules@1.5.1: + resolution: {integrity: sha1-0uk19ghuOAFIawkiJjj2Ha6JpXA=} prosemirror-keymap@1.2.3: - resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==} + resolution: {integrity: sha1-wParlfdcC4LJfkTraq8py/wVBHI=} - prosemirror-model@1.25.1: - resolution: {integrity: sha512-AUvbm7qqmpZa5d9fPKMvH1Q5bqYQvAZWOGRvxsB6iFLyycvC9MwNemNVjHVrWgjaoxAfY8XVg7DbvQ/qxvI9Eg==} + prosemirror-model@1.25.11: + resolution: {integrity: sha1-KsAdzlF2CUpSzBuInCDzhJVjq6k=} prosemirror-safari-ime-span@1.0.2: - resolution: {integrity: sha512-QJqD8s1zE/CuK56kDsUhndh5hiHh/gFnAuPOA9ytva2s85/ZEt2tNWeALTJN48DtWghSKOmiBsvVn2OlnJ5H2w==} + resolution: {integrity: sha1-IMncsz39aLLlneiSO2UG+dwHw1Y=} prosemirror-schema-list@1.5.1: - resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==} + resolution: {integrity: sha1-WGnI90nodFw5RUi7EYILD+seMvU=} - prosemirror-state@1.4.3: - resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==} + prosemirror-state@1.4.4: + resolution: {integrity: sha1-crXpJvnpLc7hK2KgX8yKLeO/Wzk=} - prosemirror-tables@1.7.1: - resolution: {integrity: sha512-eRQ97Bf+i9Eby99QbyAiyov43iOKgWa7QCGly+lrDt7efZ1v8NWolhXiB43hSDGIXT1UXgbs4KJN3a06FGpr1Q==} + prosemirror-tables@1.8.5: + resolution: {integrity: sha1-EEQnAS5aXaHSo4wSLv7o1mvdUQQ=} - prosemirror-transform@1.10.4: - resolution: {integrity: sha512-pwDy22nAnGqNR1feOQKHxoFkkUtepoFAd3r2hbEDsnf4wp57kKA36hXsB3njA9FtONBEwSDnDeCiJe+ItD+ykw==} + prosemirror-transform@1.12.0: + resolution: {integrity: sha1-AjkojQ6Y2R5q890mmoloRmvkBtc=} - prosemirror-view@1.40.0: - resolution: {integrity: sha512-2G3svX0Cr1sJjkD/DYWSe3cfV5VPVTBOxI9XQEGWJDFEpsZb/gh4MV29ctv+OJx2RFX4BLt09i+6zaGM/ldkCw==} + prosemirror-view@1.42.1: + resolution: {integrity: sha1-fY2uGadX3hG5GHYLoJSmiik9u4c=} prosemirror-virtual-cursor@0.4.2: - resolution: {integrity: sha512-pUMKnIuOhhnMcgIJUjhIQTVJruBEGxfMBVQSrK0g2qhGPDm1i12KdsVaFw15dYk+29tZcxjMeR7P5VDKwmbwJg==} + resolution: {integrity: sha1-t5gloF2cmseLLdaQwtnrZ0UPtC0=} peerDependencies: prosemirror-model: ^1.0.0 prosemirror-state: ^1.0.0 @@ -16139,89 +15223,86 @@ packages: optional: true protobufjs@7.6.5: - resolution: {integrity: sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw==} + resolution: {integrity: sha1-e5JQza9KBhOanw/kaKQNfU/rynE=} engines: {node: '>=12.0.0'} protocol-buffers-schema@3.6.1: - resolution: {integrity: sha512-VG2K63Igkiv9p76tk1lilczEK1cT+kCjKtkdhw1dQZV3k3IXJbd3o6Ho8b9zJZaHSnT2hKe4I+ObmX9w6m5SmQ==} + resolution: {integrity: sha1-/ZpYpcTpY4W5ZICPPd1Y+e8Yw8g=} proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + resolution: {integrity: sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=} engines: {node: '>= 0.10'} proxy-agent@6.5.0: - resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} + resolution: {integrity: sha1-nkmsuo5O4jSqy1Ofie2cI9AvIy0=} engines: {node: '>= 14'} proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + resolution: {integrity: sha1-4QLxbKNVQkhldV0sno6k8k1Yw+I=} prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=} psl@1.15.0: - resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + resolution: {integrity: sha1-vazjGJbx2XzsannoIkiYzpPZdMY=} pug-attrs@3.0.0: - resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} + resolution: {integrity: sha1-sQRR4DSBZeMfrRzCPr3dncc0fEE=} pug-code-gen@3.0.4: - resolution: {integrity: sha512-6okWYIKdasTyXICyEtvobmTZAVX57JkzgzIi4iRJlin8kmhG+Xry2dsus+Mun/nGCn6F2U49haHI5mkELXB14g==} + resolution: {integrity: sha1-KoLNMX9Jg9m2G1EDXeNOT5ZNeI0=} pug-error@2.1.0: - resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==} + resolution: {integrity: sha1-F+o3tYe2RD1LjxSDdOwntUtAblU=} pug-filters@4.0.0: - resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} + resolution: {integrity: sha1-0+Sa9bqEcum3pm2YDnB86dLMm14=} pug-lexer@5.0.1: - resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} + resolution: {integrity: sha1-rkRijFvvmxkLZlaDsojKkCS4sNU=} pug-linker@4.0.0: - resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} + resolution: {integrity: sha1-EsvAWU/Fo+Brn8Web5PBRpYqdwg=} pug-load@3.0.0: - resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} + resolution: {integrity: sha1-n9nNpSICsIrbEdJWgfufNL1BtmI=} pug-parser@6.0.0: - resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} + resolution: {integrity: sha1-qP3ANYY6lbLB3F6/Ts+AtOdqEmA=} pug-runtime@3.0.1: - resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} + resolution: {integrity: sha1-9jaXYgRyPzWoxfb61qzaKhkbg9c=} pug-strip-comments@2.0.0: - resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} + resolution: {integrity: sha1-+UsH/WtJVSMzD0kKf1VLT/h2MD4=} pug-walk@2.0.0: - resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} + resolution: {integrity: sha1-QXqrwpIyu0SZtbUGmistKiTV9f4=} pug@3.0.4: - resolution: {integrity: sha512-kFfq5mMzrS7+wrl5pLJzZEzemx34OQ0w4SARfhy/3yxTlhbstsudDwJzhf1hP02yHzbjoVMSXUj/Sz6RNfMyXg==} - - pump@3.0.2: - resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + resolution: {integrity: sha1-kEOujdhfyL61vs8J3Y5LdUuUsp8=} pump@3.0.4: - resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} + resolution: {integrity: sha1-HzE0MFJ/qLkFYi69Iv4UROdXqzw=} punycode.js@2.3.1: - resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + resolution: {integrity: sha1-a1PlatdViCNOefSv+pCXLH3Yzbc=} engines: {node: '>=6'} punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + resolution: {integrity: sha1-AnQi4vrsCyXhVJw+G9gwm5EztuU=} engines: {node: '>=6'} puppeteer-core@23.11.1: - resolution: {integrity: sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==} + resolution: {integrity: sha1-PgZN4Rs8s6LfGoBg/y0FtBvlg9s=} engines: {node: '>=18'} - puppeteer-core@24.37.5: - resolution: {integrity: sha512-ybL7iE78YPN4T6J+sPLO7r0lSByp/0NN6PvfBEql219cOnttoTFzCWKiBOjstXSqi/OKpwae623DWAsL7cn2MQ==} + puppeteer-core@24.43.1: + resolution: {integrity: sha1-wQpdOYtpkRwyTgTIXuKyNrnslA4=} engines: {node: '>=18'} puppeteer-extra-plugin-adblocker@2.13.6: - resolution: {integrity: sha512-AftgnUZ1rg2RPe9RpX6rkYAxEohwp3iFeGIyjsAuTaIiw4VLZqOb1LSY8/S60vAxpeat60fbCajxoUetmLy4Dw==} + resolution: {integrity: sha1-mYKCQ1ebWe2B6LHaI9FqOg265Vc=} engines: {node: '>=8'} peerDependencies: puppeteer: '*' @@ -16236,7 +15317,7 @@ packages: optional: true puppeteer-extra-plugin-stealth@2.11.2: - resolution: {integrity: sha512-bUemM5XmTj9i2ZerBzsk2AN5is0wHMNE6K0hXBzBXOzP5m5G3Wl0RHhiqKeHToe/uIH8AoZiGhc1tCkLZQPKTQ==} + resolution: {integrity: sha1-vT9aF4HKyKmMmD0UgIZYWoT8yPE=} engines: {node: '>=8'} peerDependencies: playwright-extra: '*' @@ -16248,7 +15329,7 @@ packages: optional: true puppeteer-extra-plugin-user-data-dir@2.4.1: - resolution: {integrity: sha512-kH1GnCcqEDoBXO7epAse4TBPJh9tEpVEK/vkedKfjOVOhZAvLkHGc9swMs5ChrJbRnf8Hdpug6TJlEuimXNQ+g==} + resolution: {integrity: sha1-TqnVbSBFVnKlT+CGMJoQKlEmQRw=} engines: {node: '>=8'} peerDependencies: playwright-extra: '*' @@ -16260,7 +15341,7 @@ packages: optional: true puppeteer-extra-plugin-user-preferences@2.4.1: - resolution: {integrity: sha512-i1oAZxRbc1bk8MZufKCruCEC3CCafO9RKMkkodZltI4OqibLFXF3tj6HZ4LZ9C5vCXZjYcDWazgtY69mnmrQ9A==} + resolution: {integrity: sha1-247GPASmoQqPiZfhX9/98TJyFh0=} engines: {node: '>=8'} peerDependencies: playwright-extra: '*' @@ -16272,7 +15353,7 @@ packages: optional: true puppeteer-extra-plugin@3.2.3: - resolution: {integrity: sha512-6RNy0e6pH8vaS3akPIKGg28xcryKscczt4wIl0ePciZENGE2yoaQJNd17UiEbdmh5/6WW6dPcfRWT9lxBwCi2Q==} + resolution: {integrity: sha1-UMnwdJwAW7x7iyCLzQCp1GoVtYU=} engines: {node: '>=9.11.2'} peerDependencies: playwright-extra: '*' @@ -16284,7 +15365,7 @@ packages: optional: true puppeteer-extra@3.3.6: - resolution: {integrity: sha512-rsLBE/6mMxAjlLd06LuGacrukP2bqbzKCLzV1vrhHFavqQE/taQ2UXv3H5P0Ls7nsrASa+6x3bDbXHpqMwq+7A==} + resolution: {integrity: sha1-/Bb/OWquUmZIQtqaVX6o+lHqqLc=} engines: {node: '>=8'} peerDependencies: '@types/puppeteer': '*' @@ -16298,1245 +15379,1054 @@ packages: puppeteer-core: optional: true - puppeteer@24.37.5: - resolution: {integrity: sha512-3PAOIQLceyEmn1Fi76GkGO2EVxztv5OtdlB1m8hMUZL3f8KDHnlvXbvCXv+Ls7KzF1R0KdKBqLuT/Hhrok12hQ==} + puppeteer@24.43.1: + resolution: {integrity: sha1-hsrZFwzi3sLbO40dNMDJFCS74+M=} engines: {node: '>=18'} hasBin: true pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + resolution: {integrity: sha1-0XPPIyWCMZdsy9sFJHyXh5V2BPI=} pvtsutils@1.3.6: - resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==} + resolution: {integrity: sha1-7EbjTbdCK55P3FSQV4wYg2V9YAE=} pvutils@1.1.5: - resolution: {integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==} + resolution: {integrity: sha1-hLDepKXWcCSaqYAFEYBO4LfCgJw=} engines: {node: '>=16.0.0'} - qs@6.14.2: - resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==} - engines: {node: '>=0.6'} - qs@6.15.3: - resolution: {integrity: sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==} + resolution: {integrity: sha1-doUhMqWO1cfA72fkRBubtdYGGzs=} engines: {node: '>=0.6'} querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: {integrity: sha1-M0WUG0FTy50ILY7uTNogFqmu9/Y=} queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=} quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + resolution: {integrity: sha1-NmST5rPkKjpoheLpnRj4D7eoyTI=} engines: {node: '>=10'} quote-unquote@1.0.0: - resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==} + resolution: {integrity: sha1-Z6mncUjv/q+BpNQoQEpxC6qsigs=} range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + resolution: {integrity: sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=} engines: {node: '>= 0.6'} range-parser@1.3.0: - resolution: {integrity: sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==} + resolution: {integrity: sha1-1/Gb6BK7YnIUcrRdO+IZ7wlXK0c=} engines: {node: '>= 0.6'} raw-body@2.5.3: - resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==} + resolution: {integrity: sha1-EcZlDudwp94bSU8ZeSfeDJI4IuI=} engines: {node: '>= 0.8'} raw-body@3.0.2: - resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==} + resolution: {integrity: sha1-PjraWuVWj5CV2EN2/TpJuPsAClE=} engines: {node: '>= 0.10'} - rc-config-loader@4.1.3: - resolution: {integrity: sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==} + rc-config-loader@4.1.4: + resolution: {integrity: sha1-bMeQQqwZPr7Z8IL8unuCPZ3BQ8w=} rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + resolution: {integrity: sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0=} hasBin: true - react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + react-is@18.3.1: + resolution: {integrity: sha1-6DVX3BLq5jqZ4AOkY4ix3LtE234=} react-reconciler@0.29.2: - resolution: {integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==} + resolution: {integrity: sha1-js+vymNUmk9PPkweBJ3VrZrDpU8=} engines: {node: '>=0.10.0'} peerDependencies: react: ^18.3.1 react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + resolution: {integrity: sha1-SauJIAnFOTNiW9FrJTP8dUyrKJE=} engines: {node: '>=0.10.0'} read-binary-file-arch@1.0.6: - resolution: {integrity: sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg==} + resolution: {integrity: sha1-lZxGN9qpMigKm5EbGmdmp+RCiPw=} hasBin: true - read-pkg@8.1.0: - resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} - engines: {node: '>=16'} + read-pkg@9.0.1: + resolution: {integrity: sha1-sbgfsVEE9duxIba73um7yXOfVps=} + engines: {node: '>=18'} read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + resolution: {integrity: sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=} engines: {node: '>=0.8'} readable-stream@1.0.34: - resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} + resolution: {integrity: sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=} readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + resolution: {integrity: sha1-kRJegEK7obmIf0k0X2J3Anzovps=} readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + resolution: {integrity: sha1-VqmzbqllwAxak+8x6xEaDxEFaWc=} engines: {node: '>= 6'} - readable-stream@4.5.2: - resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} + readable-stream@4.7.0: + resolution: {integrity: sha1-ztvYoRRsE9//jasUBoAo1YwVrJE=} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} readdir-glob@1.1.3: - resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} + resolution: {integrity: sha1-w9gx9R9ee/pi+i/75LUIxkDwlYQ=} readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=} engines: {node: '>=8.10.0'} readdirp@4.1.2: - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + resolution: {integrity: sha1-64WAFDX78qfuWPGeCSGwaPxplI0=} engines: {node: '>= 14.18.0'} readline@1.3.0: - resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + resolution: {integrity: sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=} rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} engines: {node: '>= 0.10'} rechoir@0.8.0: - resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} + resolution: {integrity: sha1-Sfhm4NMhRhQto62PDv81KzIV/yI=} engines: {node: '>= 10.13.0'} refa@0.12.1: - resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} + resolution: {integrity: sha1-2sE8R4LcIra65szoGiuGOIjqOcY=} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} reflect-metadata@0.2.2: - resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==} + resolution: {integrity: sha1-QAyEW2y6h6IfLGXErrFY9PpNnFs=} reflect.getprototypeof@1.0.10: - resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + resolution: {integrity: sha1-xikhnnijMW2LYEx2XvaJlpZOe/k=} engines: {node: '>= 0.4'} - regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} - regexp-ast-analysis@0.7.1: - resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} + resolution: {integrity: sha1-wOJMsqkPbq3Uy6q6EpMX4p0pxII=} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} regexp.escape@2.0.1: - resolution: {integrity: sha512-JItRb4rmyTzmERBkAf6J87LjDPy/RscIwmaJQ3gsFlAzrmZbZU8LwBw5IydFZXW9hqpgbPlGbMhtpqtuAhMgtg==} + resolution: {integrity: sha1-CeS+750gLb1zmGjzgYIj+XfPkdo=} engines: {node: '>= 0.4'} regexp.prototype.flags@1.5.4: - resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + resolution: {integrity: sha1-GtbGLUSiWQB+VbOXDgD3Ru+8qhk=} engines: {node: '>= 0.4'} relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=} engines: {node: '>= 0.10'} remark-gfm@4.0.1: - resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + resolution: {integrity: sha1-MyJ7KnQ5dnDTV78FwJjq+FE/DWs=} remark-inline-links@7.0.0: - resolution: {integrity: sha512-4uj1pPM+F495ySZhTIB6ay2oSkTsKgmYaKk/q5HIdhX2fuyLEegpjWa0VdJRJ01sgOqAFo7MBKdDUejIYBMVMQ==} + resolution: {integrity: sha1-d/v/gGGrw9DsNBh6txZ4pxDfBeE=} remark-math@6.0.0: - resolution: {integrity: sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==} + resolution: {integrity: sha1-Cs33RnXxwZX+pu//p4WC9+1/wNc=} remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + resolution: {integrity: sha1-qmB0P8s36/awaSBOtNowTkDbRaE=} remark-stringify@11.0.0: - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + resolution: {integrity: sha1-TFsB3XEcJp3xqq4RdD634udjb9M=} remark@15.0.1: - resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==} + resolution: {integrity: sha1-rH51YyYFE7ZkJrxH+FDnqlhiw3w=} renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + resolution: {integrity: sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo=} repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} engines: {node: '>=0.10'} require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} engines: {node: '>=0.10.0'} require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + resolution: {integrity: sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=} engines: {node: '>=0.10.0'} requirejs-config-file@4.0.0: - resolution: {integrity: sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw==} + resolution: {integrity: sha1-QkTaXdH1mHQDjMEJHQeNYgq7brw=} engines: {node: '>=10.13.0'} requirejs@2.3.8: - resolution: {integrity: sha512-7/cTSLOdYkNBNJcDMWf+luFvMriVm7eYxp4BcFCsAX0wF421Vyce5SXP17c+Jd5otXKGNehIonFlyQXSowL6Mw==} + resolution: {integrity: sha1-vKBhS2GKshIkYll+RIeNt1WLu6M=} engines: {node: '>=0.4.0'} hasBin: true requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} resedit@1.7.2: - resolution: {integrity: sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA==} + resolution: {integrity: sha1-sQQRcLmYEXEME/lJx9Ilhx3kzHg=} engines: {node: '>=12', npm: '>=6'} resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + resolution: {integrity: sha1-t629rDVGqq7CC0Xn2CZZJwcnJvk=} resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + resolution: {integrity: sha1-DwB18bslRHZs9zumpuKt/ryxPy0=} engines: {node: '>=8'} resolve-dependency-path@4.0.1: - resolution: {integrity: sha512-YQftIIC4vzO9UMhO/sCgXukNyiwVRCVaxiWskCBy7Zpqkplm8kTAISZ8O1MoKW1ca6xzgLUBjZTcDgypXvXxiQ==} + resolution: {integrity: sha1-G51D5bYjhDAeJtBAufzmHuXbYL0=} engines: {node: '>=18'} resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=} engines: {node: '>=4'} resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=} engines: {node: '>=8'} resolve-path@1.4.0: - resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==} + resolution: {integrity: sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc=} engines: {node: '>= 0.8'} resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolution: {integrity: sha1-YWs9wsVwVrVYjDHN9LPWTbEzcg8=} resolve-protobuf-schema@2.1.0: - resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + resolution: {integrity: sha1-nKmp5pzxkrva8QBuwZc5SKpKN1g=} resolve.exports@2.0.3: - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + resolution: {integrity: sha1-QZVebxtAE7dYb4c3SaY13qB+vj8=} engines: {node: '>=10'} resolve@1.22.12: - resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + resolution: {integrity: sha1-9bKmgIl8acI4oTzRaxVnH4tzVJ8=} engines: {node: '>= 0.4'} hasBin: true - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + resolution: {integrity: sha1-mgvI/cJS8/scymiwFlkQWboUIrw=} restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + resolution: {integrity: sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=} engines: {node: '>=8'} restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + resolution: {integrity: sha1-UZVgpDGJdQlt725gnUQQDtqkzLk=} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} restore-cursor@5.1.0: - resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + resolution: {integrity: sha1-B2bZVpnvrLFBUJk/VbrwlT6h6+c=} engines: {node: '>=18'} retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=} engines: {node: '>= 4'} retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + resolution: {integrity: sha1-GFsVh6z2eRnWOzVzSeA1N7JIRlg=} engines: {node: '>= 4'} - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + reusify@1.1.0: + resolution: {integrity: sha1-D+E7lSLhRz9RtVjueW4I8R+bSJ8=} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + resolution: {integrity: sha1-stEE/g2Psnz54KHNqCYt04M8bKs=} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: {integrity: sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@4.4.1: - resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} + resolution: {integrity: sha1-vTM2T2cCHFt56T1/T6BWjHwht1U=} engines: {node: '>=14'} hasBin: true rimraf@5.0.10: - resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} + resolution: {integrity: sha1-I7mEPT3JLbcfluGizpLjn9KoIhw=} hasBin: true - rimraf@6.0.1: - resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} + rimraf@6.1.3: + resolution: {integrity: sha1-r77iNrO9K+Mx1OfORJO6wXGJga8=} engines: {node: 20 || >=22} hasBin: true roarr@2.15.4: - resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} + resolution: {integrity: sha1-9f55W3uDjM/jXcYI4Cgrnrouev0=} engines: {node: '>=8.0'} - robust-predicates@3.0.2: - resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + robust-predicates@3.0.3: + resolution: {integrity: sha1-EJkGGzNJ4sWr7GwqsKzUQNJNQGI=} rollup@4.62.2: - resolution: {integrity: sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA==} + resolution: {integrity: sha1-2Q/Ey4EfBxMDyJC3eVlWNPNflUE=} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rope-sequence@1.3.4: - resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==} + resolution: {integrity: sha1-34VxGq7NMvHnVvduQ6QVFxI11CU=} roughjs@4.6.6: - resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==} + resolution: {integrity: sha1-EFn0ml4MgN7lQaAFsgzDIrIiFYs=} router@2.2.0: - resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} + resolution: {integrity: sha1-AZvmILcRyHZBFnzHm5kJDwCxRu8=} engines: {node: '>= 18'} - run-applescript@7.0.0: - resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + run-applescript@7.1.0: + resolution: {integrity: sha1-Lp5UxGZOwxBsW1Yw4knT1llcSRE=} engines: {node: '>=18'} run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=} run-script-os@1.1.6: - resolution: {integrity: sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==} + resolution: {integrity: sha1-iwF3+xtUyZpnD5XH/cVPGLnHI0c=} hasBin: true rw@1.3.3: - resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + resolution: {integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=} - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.2: + resolution: {integrity: sha1-lVvEc+2K8RoAKivlIHG/R1Y4YHs=} - safe-array-concat@1.1.3: - resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + safe-array-concat@1.1.4: + resolution: {integrity: sha1-pUzJthpX8ztCq608vdo6KzjMVxk=} engines: {node: '>=0.4'} safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=} safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=} safe-push-apply@1.0.0: - resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + resolution: {integrity: sha1-AYUOmBwWAtOYyFCB82Dk5tA9J/U=} engines: {node: '>= 0.4'} safe-regex-test@1.1.0: - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + resolution: {integrity: sha1-f4fftnoxUHguqvGFg/9dFxGsEME=} engines: {node: '>= 0.4'} safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - sanitize-filename@1.6.3: - resolution: {integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==} + resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=} sanitize-filename@1.6.4: - resolution: {integrity: sha512-9ZyI08PsvdQl2r/bBIGubpVdR3RR9sY6RDiWFPreA21C/EFlQhmgo20UZlNjZMMZNubusLhAQozkA0Od5J21Eg==} + resolution: {integrity: sha1-trOevtm9GhiYuFxcAwidp0WQ1vg=} sass-lookup@6.1.2: - resolution: {integrity: sha512-GjmndmKQBtlPil79RK72L7yc5kDXZPCQeH97bP8R8DcxtXQJO6vECExb3WP/m6+cxaV9h4ZxrSRvCkPG2v/VSw==} + resolution: {integrity: sha1-7vzJDr6uRR0lKkqdjQkP7xpionk=} engines: {node: '>=18'} hasBin: true - sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} - sax@1.6.0: - resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} + resolution: {integrity: sha1-2lljdikwe5fnxMso4ICnvDhWDVs=} engines: {node: '>=11.0.0'} saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + resolution: {integrity: sha1-/ltKR2jfTxSiAbG6amXB89mYjMU=} engines: {node: '>=v12.22.7'} scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + resolution: {integrity: sha1-QUumSjsoKJLpRM8hCOzAeNEVzcM=} schema-utils@4.3.3: - resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} + resolution: {integrity: sha1-WxhQkS+jHfkHFpY9RdkSH9/An0Y=} engines: {node: '>= 10.13.0'} scslre@0.3.0: - resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} + resolution: {integrity: sha1-wyEem/xVR/yGseq6o07RplcGAVU=} engines: {node: ^14.0.0 || >=16.0.0} - secretlint@9.3.2: - resolution: {integrity: sha512-IuFrtWMGeVFSWpuhn1T6JC0mgfwD9rbFNZG1aWtpkBKOUCbcKZ+RoJcJjdJ0DXv8oa9vRg/+DZUl6Q6omZdPQQ==} - engines: {node: ^14.13.1 || >=16.0.0} + secretlint@10.2.2: + resolution: {integrity: sha1-wM+ZcVOivvC2U4dNyHAw2qajUUA=} + engines: {node: '>=20.0.0'} hasBin: true secure-json-parse@4.1.0: - resolution: {integrity: sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==} + resolution: {integrity: sha1-Txq0HGehNJfqG5Exu0GDoihlR3w=} selderee@0.11.0: - resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} + resolution: {integrity: sha1-avDHmD4HOtPjV4f/4gzv2drw7Io=} select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=} selfsigned@5.5.0: - resolution: {integrity: sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==} + resolution: {integrity: sha1-TJq3x8nzXxj7apiCwlPrDmvWVXs=} engines: {node: '>=18'} semaphore@1.1.0: - resolution: {integrity: sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA==} + resolution: {integrity: sha1-qq2LhrIP6OmzKxbcLuaCqM0mqKo=} engines: {node: '>=0.8.0'} semver-compare@1.0.0: - resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} + resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=} semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + resolution: {integrity: sha1-SNVdtzfDKHzUg14X+hP+rOHEHvg=} hasBin: true semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.7.3: - resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} - engines: {node: '>=10'} + resolution: {integrity: sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=} hasBin: true semver@7.7.4: - resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.8.0: - resolution: {integrity: sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.8.4: - resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==} + resolution: {integrity: sha1-KEZONgYOmR+noR0CedLT87V6foo=} engines: {node: '>=10'} hasBin: true semver@7.8.5: - resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==} + resolution: {integrity: sha1-ObZGA33VDBT7RR5+TKxY7YuGP2k=} engines: {node: '>=10'} hasBin: true - send@0.19.0: - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} - engines: {node: '>= 0.8.0'} - - send@0.19.1: - resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==} - engines: {node: '>= 0.8.0'} - send@0.19.2: - resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} + resolution: {integrity: sha1-WbwNobTqetQnNv1kKxxClOEU/yk=} engines: {node: '>= 0.8.0'} send@1.2.1: - resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} + resolution: {integrity: sha1-nqt0O4dPNVD0CiaGe/KGrWDT8+0=} engines: {node: '>= 18'} serialize-error@7.0.1: - resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} + resolution: {integrity: sha1-8TYLBEf2H/tIPsQVfHN/q313jhg=} engines: {node: '>=10'} - serialize-javascript@7.0.5: - resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==} - engines: {node: '>=20.0.0'} - serialize-javascript@7.0.7: - resolution: {integrity: sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==} + resolution: {integrity: sha1-BuxAV21M6pbWgBClNFIL/x+UinI=} engines: {node: '>=20.0.0'} serve-index@1.9.2: - resolution: {integrity: sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==} - engines: {node: '>= 0.8.0'} - - serve-static@1.16.2: - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} + resolution: {integrity: sha1-KYjjYSEG14peSEnd/1Us5709m8s=} engines: {node: '>= 0.8.0'} serve-static@1.16.3: - resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==} + resolution: {integrity: sha1-qXt02VV3hYPzhipPC4QetNXXjPk=} engines: {node: '>= 0.8.0'} serve-static@2.2.1: - resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==} + resolution: {integrity: sha1-fxhqSk5fW2Y616QpT/G/N88OmKk=} engines: {node: '>= 18'} set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + resolution: {integrity: sha1-qscjFBmOrtl1z3eyw7a4gGleVEk=} engines: {node: '>= 0.4'} set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + resolution: {integrity: sha1-FqcFxaDcL15jjKltiozU4cK5CYU=} engines: {node: '>= 0.4'} set-proto@1.0.0: - resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + resolution: {integrity: sha1-B2Dbz/MLLX6AH9bhmYPlbaM3Vl4=} engines: {node: '>= 0.4'} setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=} setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + resolution: {integrity: sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=} setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=} shallow-clone@0.1.2: - resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + resolution: {integrity: sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=} engines: {node: '>=0.10.0'} shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + resolution: {integrity: sha1-jymBrZJTH1UDWwH7IwdppA4C76M=} engines: {node: '>=8'} sharp@0.33.5: - resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + resolution: {integrity: sha1-E+DkEwzDCdapSXWWcVJAsuwMWU4=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} sharp@0.34.5: - resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} + resolution: {integrity: sha1-tvFI5LjGHxeXveEanRz+u64sV7A=} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} engines: {node: '>=0.10.0'} shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + resolution: {integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=} engines: {node: '>=8'} shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} engines: {node: '>=0.10.0'} shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + resolution: {integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=} engines: {node: '>=8'} shell-quote@1.10.0: - resolution: {integrity: sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==} + resolution: {integrity: sha1-SCAz4ZLk9cBxUVIf+gNADscbGw8=} + engines: {node: '>= 0.4'} + + shell-quote@1.9.0: + resolution: {integrity: sha1-4QixoTZYbVlk7bMwABbUvtug/lc=} engines: {node: '>= 0.4'} shelljs@0.9.2: - resolution: {integrity: sha512-S3I64fEiKgTZzKCC46zT/Ib9meqofLrQVbpSswtjFfAVDW+AZ54WTnAM/3/yENoxz/V1Cy6u3kiiEbQ4DNphvw==} + resolution: {integrity: sha1-qKxyRDRSDNeuJNUgceN6GKwrsYM=} engines: {node: '>=18'} hasBin: true shx@0.4.0: - resolution: {integrity: sha512-Z0KixSIlGPpijKgcH6oCMCbltPImvaKy0sGH8AkLRXw1KyzpKtaCTizP2xen+hNDqVF4xxgvA0KXSb9o4Q6hnA==} + resolution: {integrity: sha1-xupqzn53jaCrMtLqud71nXiOkzY=} engines: {node: '>=18'} hasBin: true - side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} - engines: {node: '>= 0.4'} - side-channel-list@1.0.1: - resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==} + resolution: {integrity: sha1-wuC1oUpUCuvuO7xsP4ZmzJtQkSc=} engines: {node: '>= 0.4'} side-channel-map@1.0.1: - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + resolution: {integrity: sha1-1rtrN5Asb+9RdOX1M/q0xzKib0I=} engines: {node: '>= 0.4'} side-channel-weakmap@1.0.2: - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} - engines: {node: '>= 0.4'} - - side-channel@1.1.0: - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + resolution: {integrity: sha1-Ed2hnVNo5Azp7CvcH7DsvAeQ7Oo=} engines: {node: '>= 0.4'} side-channel@1.1.1: - resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==} + resolution: {integrity: sha1-6gLGLgXcS+pn1EQvD7ce4ZL44Ks=} engines: {node: '>= 0.4'} signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: {integrity: sha1-qaF2f4r4QVURTqq9c/mSc8j1mtk=} signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + resolution: {integrity: sha1-lSGIwcvVRgcOLdIND0HArgUwywQ=} engines: {node: '>=14'} simple-concat@1.0.1: - resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + resolution: {integrity: sha1-9Gl2CCujXCJj8cirXt/ibEHJVS8=} simple-get@4.0.1: - resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + resolution: {integrity: sha1-SjnbVJKHyXnTUhEvoD/Zn9a8NUM=} - simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + simple-swizzle@0.2.4: + resolution: {integrity: sha1-qNEaRaEWANah7N/2NjMp42SMNmc=} simple-update-notifier@2.0.0: - resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + resolution: {integrity: sha1-1wuSvat9bZDf1zkxGVowtuPXzrs=} engines: {node: '>=10'} sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + resolution: {integrity: sha1-E01oEpd1ZDfMBcoBNw06elcQde0=} skin-tone@2.0.0: - resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} + resolution: {integrity: sha1-Tjkzq0XA1PT3gXRdZLn0wgjkEjc=} engines: {node: '>=8'} slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=} engines: {node: '>=8'} slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + resolution: {integrity: sha1-vjrd3N8JrDjuvo3Nx7GlenWwlc4=} engines: {node: '>=14.16'} slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + resolution: {integrity: sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c=} engines: {node: '>=8'} slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + resolution: {integrity: sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=} engines: {node: '>=10'} slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + resolution: {integrity: sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo=} engines: {node: '>=12'} slice-ansi@7.1.2: - resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} + resolution: {integrity: sha1-rfe+cKptchYtkHzQ5tXBH1B7VAM=} engines: {node: '>=18'} smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + resolution: {integrity: sha1-bh1x+k8YwF99D/IW3RakgdDo2a4=} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} smol-toml@1.7.0: - resolution: {integrity: sha512-aqVvWoyO21L23mb+drl4RmMXbf6N7FdHjAhTRA9ZBL7apWBgfWC16KjrASI+1p9GAroljyMHj6fK67i0UiTNvQ==} + resolution: {integrity: sha1-7RslnOfgWQffGr51iXG9Cg7ywN0=} engines: {node: '>= 18'} sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + resolution: {integrity: sha1-ybyJlfM6ERvqA5XsMKoyBr21zM4=} socks-proxy-agent@8.0.5: - resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + resolution: {integrity: sha1-uc205+mYUJ12WdaJznaXrCFkW+4=} engines: {node: '>= 14'} - socks@2.8.7: - resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} + socks@2.8.9: + resolution: {integrity: sha1-ql8TDKD4ikP6RPr0hpxQ0iqid1I=} engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} sort-object-keys@1.1.3: - resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} + resolution: {integrity: sha1-v/gz/oXKsUezR0LkWGNFPB4ZC0U=} + + sort-object-keys@2.1.0: + resolution: {integrity: sha1-ryT7t7kfzKlFOZoE+pAKEPlQYkI=} sort-package-json@1.57.0: - resolution: {integrity: sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==} + resolution: {integrity: sha1-6V+0Svjt4LthR+PzklgQLUuyP8Q=} hasBin: true - sort-package-json@3.2.1: - resolution: {integrity: sha512-rTfRdb20vuoAn7LDlEtCqOkYfl2X+Qze6cLbNOzcDpbmKEhJI30tTN44d5shbKJnXsvz24QQhlCm81Bag7EOKg==} + sort-package-json@3.7.1: + resolution: {integrity: sha1-fy6YFf4lp031sOpyXk2MnLQ7Nvw=} + engines: {node: '>=20'} hasBin: true source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + resolution: {integrity: sha1-HOVlD93YerwJnto33P8CTCZnrkY=} engines: {node: '>=0.10.0'} source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + resolution: {integrity: sha1-MbJKnC5zwt6FBmwP631Edn7VKTI=} source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: {integrity: sha1-BP58f54e0tZiIzwoyys1ufY/bk8=} source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=} engines: {node: '>=0.10.0'} - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - source-map@0.7.6: - resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + resolution: {integrity: sha1-o2WKuH5bZCnIofO6AIPUxhyj7wI=} engines: {node: '>= 12'} spark-md5@3.0.2: - resolution: {integrity: sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw==} + resolution: {integrity: sha1-eVLEoweENHq87nMmjkc7nAFn4/w=} sparse-bitfield@3.0.3: - resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==} + resolution: {integrity: sha1-/0rm5oZWBWuks+eSqzM004JzyhE=} spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + resolution: {integrity: sha1-T1qwZo8AWeNPnADc4zF4ShLeTpw=} spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + resolution: {integrity: sha1-XWB9J/yAb2bXtkp2ZlD6iQ8E7WY=} spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=} - spdx-license-ids@3.0.21: - resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} + spdx-license-ids@3.0.23: + resolution: {integrity: sha1-sGnmh7EpGjLxJok+12onp0XuITM=} spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + resolution: {integrity: sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=} spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + resolution: {integrity: sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=} engines: {node: '>=6.0.0'} split@0.3.3: - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} + resolution: {integrity: sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=} sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + resolution: {integrity: sha1-SRS5A6L4toXRf994pw6RfocuREo=} stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + resolution: {integrity: sha1-qvB0gWnAL8M8gjKrzPkz9Uocw08=} engines: {node: '>=10'} stat-mode@1.0.0: - resolution: {integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==} + resolution: {integrity: sha1-aLVcth6mOf9XE282shaikYANFGU=} engines: {node: '>= 6'} static-eval@2.1.1: - resolution: {integrity: sha512-MgWpQ/ZjGieSVB3eOJVs4OA2LT/q1vx98KPCTTQPzq/aLr0YUXTsgryTXr4SLfR0ZfUUCiedM9n/ABeDIyy4mA==} + resolution: {integrity: sha1-caxqE6oyueFMW18GPDYhdrDVhLo=} statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} engines: {node: '>= 0.6'} - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - statuses@2.0.2: - resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} + resolution: {integrity: sha1-j3XuzvdlteHPzcCA2llAntQk44I=} engines: {node: '>= 0.8'} stdin-discarder@0.2.2: - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + resolution: {integrity: sha1-OQA39ExK4aGuU1xf443Dq6jZl74=} engines: {node: '>=18'} stop-iteration-iterator@1.1.0: - resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + resolution: {integrity: sha1-9IH/cKVI9hJNAxLDqhTL+nqlQq0=} engines: {node: '>= 0.4'} stream-browserify@3.0.0: - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + resolution: {integrity: sha1-IrCihQzfZQPnMIXaH8e30MISLy8=} stream-combiner@0.0.4: - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} + resolution: {integrity: sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=} - stream-to-array@2.3.0: - resolution: {integrity: sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA==} + stream-parser@0.3.1: + resolution: {integrity: sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=} - streamx@2.22.0: - resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==} + stream-to-array@2.3.0: + resolution: {integrity: sha1-u/azn19D7DC8cbq8s3VXrOzzQ1M=} streamx@2.28.0: - resolution: {integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==} + resolution: {integrity: sha1-A1q1YFe37SIRtR1TLmlz8PmfvxE=} string-compare@1.1.2: - resolution: {integrity: sha512-LKBVyWCmTPu6fg5Q8Jfdz7yFK9qaJMPVW+zJ1a23o8VuZa0UIgQ3oIsNaNUAXONRtFwD4dP5F/C/VuH+nDruig==} + resolution: {integrity: sha1-ByuOAKcTCLTkE3caGcpVtQ0L41g=} string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + resolution: {integrity: sha1-qKjce9XBqCubPIuH4SX2aHG25Xo=} engines: {node: '>=10'} string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + resolution: {integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=} engines: {node: '>=8'} string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + resolution: {integrity: sha1-FPja7G2B5yIdKjV+Zoyrc728p5Q=} engines: {node: '>=12'} string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + resolution: {integrity: sha1-tbuOIWXOJ11NQ0dt0nAK2Qkdttw=} engines: {node: '>=18'} - string.prototype.trim@1.2.10: - resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + string-width@8.2.2: + resolution: {integrity: sha1-cxBRZJPfV1dC/pivb66H2F1e0Kw=} + engines: {node: '>=20'} + + string.prototype.trim@1.2.11: + resolution: {integrity: sha1-5r0ZzaOYXQWkLdox89300100MOM=} engines: {node: '>= 0.4'} - string.prototype.trimend@1.0.9: - resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + string.prototype.trimend@1.0.10: + resolution: {integrity: sha1-vmvPTz/gRgvezNss9PlxsxD4NG4=} engines: {node: '>= 0.4'} string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + resolution: {integrity: sha1-fug03ajHwX7/MRhHK7Nb/tqjTd4=} engines: {node: '>= 0.4'} string_decoder@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + resolution: {integrity: sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=} string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + resolution: {integrity: sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=} string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=} stringify-object@3.3.0: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + resolution: {integrity: sha1-cDBlrvyhkwDTzoivT1s5VtdVZik=} engines: {node: '>=4'} strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=} engines: {node: '>=8'} - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-ansi@7.1.2: - resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} - engines: {node: '>=12'} - strip-ansi@7.2.0: - resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==} + resolution: {integrity: sha1-0iomlSKDamJ6+NBLXD/Sx/o+MuM=} engines: {node: '>=12'} strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} engines: {node: '>=4'} strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + resolution: {integrity: sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=} engines: {node: '>=8'} strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=} engines: {node: '>=0.10.0'} strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + resolution: {integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=} engines: {node: '>=6'} strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=} engines: {node: '>=0.10.0'} strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=} engines: {node: '>=8'} strip-json-comments@5.0.3: - resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} + resolution: {integrity: sha1-tzBCSd1ALuZ/1RitqZOrNZNFi88=} engines: {node: '>=14.16'} strnum@2.4.1: - resolution: {integrity: sha512-M9eUSMT2dCB2cTNPG7UYj6KuK7RJR2SN2+yCV/fTW3xzTCS6EaGZ5pSMgDIjB7r8zSfTGk+dvvn9rTjpVS9Mwg==} + resolution: {integrity: sha1-hUF/aDETut6g/n4XInZ2+In/flg=} structured-source@4.0.0: - resolution: {integrity: sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==} - - style-mod@4.1.2: - resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} + resolution: {integrity: sha1-DJ5Z7kPe3Y/GCmNzH2DjWBAqSUg=} style-mod@4.1.3: - resolution: {integrity: sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==} + resolution: {integrity: sha1-bpASJVu3mb2sN+KI92cbXXG/n3M=} stylis@4.4.0: - resolution: {integrity: sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==} + resolution: {integrity: sha1-xYRsk0X0v8Ub0MvXyjWgdE9IWl0=} stylus-lookup@6.1.2: - resolution: {integrity: sha512-O+Q/SJ8s1X2aMLh4213fQ9X/bND9M3dhSsyTRe+O1OXPcewGLiYmAtKCrnP7FDvDBaXB2ZHPkCt3zi4cJXBlCQ==} + resolution: {integrity: sha1-W/3hcwW8dj31511FXpGe95Vf4Ms=} engines: {node: '>=18'} hasBin: true sumchecker@3.0.1: - resolution: {integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==} + resolution: {integrity: sha1-Y3fplnlauwttNI6bPh37JDRajkI=} engines: {node: '>= 8.0'} supports-color@10.2.2: - resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} + resolution: {integrity: sha1-RmwpeMxc0AUtVCoLV2RhwrgC67Q=} engines: {node: '>=18'} - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=} engines: {node: '>=8'} supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + resolution: {integrity: sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=} engines: {node: '>=10'} - supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} - supports-hyperlinks@3.2.0: - resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} + resolution: {integrity: sha1-uOSFsXloHepJah56vfiYW9MUVGE=} engines: {node: '>=14.18'} supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + resolution: {integrity: sha1-btpL00SjyUrqN21MwxvHcxEDngk=} engines: {node: '>= 0.4'} symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + resolution: {integrity: sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=} table-layout@4.1.1: - resolution: {integrity: sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==} + resolution: {integrity: sha1-D3KWXeGlwMFBnJuiHK5Oc6L3OkI=} engines: {node: '>=12.17'} table@6.9.0: - resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} + resolution: {integrity: sha1-UAQK+mJkFBx1ZrO4HU2CxHqGaPU=} engines: {node: '>=10.0.0'} - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - tapable@2.3.3: - resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} + resolution: {integrity: sha1-XafJmSxGA4IhJnmFqyhCGoh58WA=} engines: {node: '>=6'} - tar-fs@2.1.4: - resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==} - - tar-fs@3.1.1: - resolution: {integrity: sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==} + tar-fs@2.1.5: + resolution: {integrity: sha1-M+nClBPc4MWK2n/3fbTlowr//nA=} tar-fs@3.1.3: - resolution: {integrity: sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ==} + resolution: {integrity: sha1-BWaMxoowdBw4E/nBZZO43sfcvNE=} tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + resolution: {integrity: sha1-rK2EwoQTawYNw/qmRHSqmuvXcoc=} engines: {node: '>=6'} - tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - tar-stream@3.2.0: - resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==} + resolution: {integrity: sha1-DQBk2bZ+o8n1q94VXjX6qw3zdZE=} tar@7.5.21: - resolution: {integrity: sha512-XdhtCvlMywwxpCW8YEq3lOXBJpUPTR2OHHcwLPO3HwsJqOHa2Ok/oJ7ruGzp+JrKoRPVCzJwAdEjqLW/vNRPHA==} + resolution: {integrity: sha1-s0Ba8utJNSPOQ3n1Menr2gYBvFk=} engines: {node: '>=18'} teex@1.0.1: - resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==} + resolution: {integrity: sha1-uPpyRe+Ojv+oB4KBlGyFq3gKCxI=} temp-file@3.4.0: - resolution: {integrity: sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==} + resolution: {integrity: sha1-dm6iiRHGg5lsJI7xog7qBNUWUsc=} temp@0.9.4: - resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==} + resolution: {integrity: sha1-zSCoWAy2NjXQ5OnUvZidRChudiA=} engines: {node: '>=6.0.0'} - terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - - terser-webpack-plugin@5.6.1: - resolution: {integrity: sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@minify-html/node': '*' - '@swc/core': '*' - '@swc/css': '*' - '@swc/html': '*' - clean-css: '*' - cssnano: '*' - csso: '*' - esbuild: '*' - html-minifier-terser: '*' - lightningcss: '*' - postcss: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@minify-html/node': - optional: true - '@swc/core': - optional: true - '@swc/css': - optional: true - '@swc/html': - optional: true - clean-css: - optional: true - cssnano: - optional: true - csso: - optional: true - esbuild: - optional: true - html-minifier-terser: - optional: true - lightningcss: - optional: true - postcss: - optional: true - uglify-js: - optional: true - - terser@5.27.0: - resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==} - engines: {node: '>=10'} - hasBin: true + terminal-link@4.0.0: + resolution: {integrity: sha1-Xz5QMpQg+tl9B9Yk998YUdgpY/E=} + engines: {node: '>=18'} terser@5.49.0: - resolution: {integrity: sha512-SNiDnXyHSrxVcIOtVbULzcTmniUiwcV7Nwdyj1twVubeTmbjoa8p69KKDpfkdoOavuM4/GRm1+ykI8qqnavHoA==} + resolution: {integrity: sha1-MLNB/fcM/JhIaWUSWuZg/ahANnA=} engines: {node: '>=10'} hasBin: true test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + resolution: {integrity: sha1-BKhphmHYBepvopO2y55jrARO8V4=} engines: {node: '>=8'} - test-exclude@7.0.1: - resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} + test-exclude@7.0.2: + resolution: {integrity: sha1-SCOSB3YwvFfVYwwTq+kIu5EN/GU=} engines: {node: '>=18'} - text-decoder@1.2.1: - resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==} - text-decoder@1.2.7: - resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==} + resolution: {integrity: sha1-XQc6mnS5wKnSjfrcq5a2BK9X2Lo=} text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} - textextensions@5.16.0: - resolution: {integrity: sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw==} - engines: {node: '>=0.8'} + textextensions@6.11.0: + resolution: {integrity: sha1-hkU10J9JAmFQyW8LDXnx+ghp2xU=} + engines: {node: '>=4'} thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=} engines: {node: '>=0.8'} thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + resolution: {integrity: sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8=} thingies@2.6.0: - resolution: {integrity: sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==} + resolution: {integrity: sha1-4JuYueb2yvinWeyoSB/qHel00rE=} engines: {node: '>=10.18'} peerDependencies: tslib: ^2 through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + resolution: {integrity: sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=} through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + resolution: {integrity: sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=} tiny-async-pool@1.3.0: - resolution: {integrity: sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA==} + resolution: {integrity: sha1-wBPhs2kJXnAF21WV+V5kbMpu+KU=} tiny-typed-emitter@2.1.0: - resolution: {integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==} + resolution: {integrity: sha1-s7An/dOJ/4GhUsjoR+4vW+n617U=} - tinyexec@1.1.2: - resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==} + tinyexec@1.2.4: + resolution: {integrity: sha1-rkW7Lt69qUxw9OqJfg8SQ+Rw23E=} engines: {node: '>=18'} - tinyglobby@0.2.12: - resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} - engines: {node: '>=12.0.0'} - - tinyglobby@0.2.14: - resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} - engines: {node: '>=12.0.0'} - - tinyglobby@0.2.15: - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} - engines: {node: '>=12.0.0'} - tinyglobby@0.2.17: - resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} + resolution: {integrity: sha1-ViqabJ6ys7Ej05cZ+a9btE/NdjE=} engines: {node: '>=12.0.0'} tlds@1.261.0: - resolution: {integrity: sha512-QXqwfEl9ddlGBaRFXIvNKK6OhipSiLXuRuLJX5DErz0o0Q0rYxulWLdFryTkV5PkdZct5iMInwYEGe/eR++1AA==} + resolution: {integrity: sha1-BV5BLpLwH4SpyKwFBNNHLWizxMk=} hasBin: true tldts-core@5.7.112: - resolution: {integrity: sha512-mutrEUgG2sp0e/MIAnv9TbSLR0IPbvmAImpzqul5O/HJ2XM1/I1sajchQ/fbj0fPdA31IiuWde8EUhfwyldY1Q==} + resolution: {integrity: sha1-FoRZqnlJX11GQHpoWnqfDNyaJys=} tldts-core@6.1.86: - resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + resolution: {integrity: sha1-qT5u2dUFy1TFQs5D/rFMc5EyZdg=} - tldts-core@7.0.26: - resolution: {integrity: sha512-5WJ2SqFsv4G2Dwi7ZFVRnz6b2H1od39QME1lc2y5Ew3eWiZMAeqOAfWpRP9jHvhUl881406QtZTODvjttJs+ew==} + tldts-core@7.4.9: + resolution: {integrity: sha1-jD5vw2EjtgASkIYNKr2mVGRmmAs=} tldts-experimental@5.7.112: - resolution: {integrity: sha512-Nq5qWN4OiLziAOOOEoSME7cZI4Hz8Srt+9q6cl8mZ5EAhCfmeE6l7K5XjuIKN+pySuGUvthE5aPiD185YU1/lg==} + resolution: {integrity: sha1-akS+EoERYefa8uiZUFY7jn2pTtE=} tldts-experimental@6.1.86: - resolution: {integrity: sha512-X3N3+SrwSajvANDyIBFa6tf/nO0VoqaXvvINSnQkZMGbzNlD+9G7Xb24Mtk3ZBVZJRGY7UynAJJL8kRVt6Z46Q==} + resolution: {integrity: sha1-eqdyTC4uDUDQNsKvJdY8x98zJRg=} - tldts@7.0.26: - resolution: {integrity: sha512-WiGwQjr0qYdNNG8KpMKlSvpxz652lqa3Rd+/hSaDcY4Uo6SKWZq2LAF+hsAhUewTtYhXlorBKgNF3Kk8hnjGoQ==} + tldts@7.4.9: + resolution: {integrity: sha1-eOcq08aPwewGJuZSjyWd1TB6Jik=} hasBin: true tmp-promise@3.0.3: - resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} + resolution: {integrity: sha1-YKGhzJjJiGdPy/0jtuM2e96sTOc=} tmp@0.2.7: - resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==} + resolution: {integrity: sha1-JvTbEdFgHOgBLcuKeY7OHAapkFk=} engines: {node: '>=14.14'} tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + resolution: {integrity: sha1-hoPguQK7nCDE9ybjwLafNlGMB8w=} to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=} engines: {node: '>=8.0'} toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + resolution: {integrity: sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=} engines: {node: '>=0.6'} token-stream@1.0.0: - resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} + resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + resolution: {integrity: sha1-lF8UYbRbWox2ghwz6knDrBksGzY=} engines: {node: '>=6'} - tough-cookie@6.0.1: - resolution: {integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==} + tough-cookie@6.0.2: + resolution: {integrity: sha1-ex8i/PLa8GxP+dU+wYRfRMZicGI=} engines: {node: '>=16'} tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + resolution: {integrity: sha1-VVxOKXqVBhfo7t3vYzyH1NnWy/k=} engines: {node: '>=12'} - tr46@4.1.1: - resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} - engines: {node: '>=14'} - tr46@5.1.1: - resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} + resolution: {integrity: sha1-lq6GfN24/bZKScwwWajUKLzyOMo=} engines: {node: '>=18'} tr46@6.0.0: - resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==} + resolution: {integrity: sha1-9aGuVGoK2zKid6InjQ0X+i+Qk+Y=} engines: {node: '>=20'} tree-dump@1.1.0: - resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} + resolution: {integrity: sha1-qykSkWncRgBEFPWp1KPG6J8T6KQ=} engines: {node: '>=10.0'} peerDependencies: tslib: '2' tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + resolution: {integrity: sha1-TKCakJLIi3OnzcXooBtQeweQoMw=} hasBin: true trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + resolution: {integrity: sha1-lKYL1r03XBUsHfkRpLEdWwJW9Q8=} truncate-utf8-bytes@1.0.2: - resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==} + resolution: {integrity: sha1-QFkjkJWS1W94pYGENLC3hInKXys=} ts-algebra@2.0.0: - resolution: {integrity: sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==} + resolution: {integrity: sha1-Tj4JU4ePJlGPzn9rsRUGSmU4i3o=} ts-api-utils@2.5.0: - resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + resolution: {integrity: sha1-Ss1KFV4ic0mQpe0f6el/ETvLN8E=} engines: {node: '>=18.12'} peerDependencies: typescript: '>=4.8.4' - ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + ts-dedent@2.3.0: + resolution: {integrity: sha1-j6w2x5ArVBwVSsE6J6xGeZevEfg=} engines: {node: '>=6.10'} - ts-deepmerge@7.0.2: - resolution: {integrity: sha512-akcpDTPuez4xzULo5NwuoKwYRtjQJ9eoNfBACiBMaXwNAx7B1PKfe5wqUFJuW5uKzQ68YjDFwPaWHDG1KnFGsA==} + ts-deepmerge@7.0.3: + resolution: {integrity: sha1-5wU920W+CTtx1/mloFk1rhGfHTE=} engines: {node: '>=14.13.1'} ts-graphviz@2.1.6: - resolution: {integrity: sha512-XyLVuhBVvdJTJr2FJJV2L1pc4MwSjMhcunRVgDE9k4wbb2ee7ORYnPewxMWUav12vxyfUM686MSGsqnVRIInuw==} + resolution: {integrity: sha1-AH/LQrToxV0mVD7OnoY5W9PDz9Y=} engines: {node: '>=18'} - ts-jest@29.3.3: - resolution: {integrity: sha512-y6jLm19SL4GroiBmHwFK4dSHUfDNmOrJbRfp6QmDIlI9p5tT5Q8ItccB4pTIslCIqOZuQnBwpTR0bQ5eUMYwkw==} + ts-jest@29.4.12: + resolution: {integrity: sha1-w0zZHwLTZOkobSwBaEMxX9Dv/3Y=} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - - ts-jest@29.4.9: - resolution: {integrity: sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 || ^30.0.0 - '@jest/types': ^29.0.0 || ^30.0.0 - babel-jest: ^29.0.0 || ^30.0.0 + '@jest/transform': ^29.0.0 || ^30.0.0 + '@jest/types': ^29.0.0 || ^30.0.0 + babel-jest: ^29.0.0 || ^30.0.0 esbuild: '*' jest: ^29.0.0 || ^30.0.0 jest-util: ^29.0.0 || ^30.0.0 @@ -17555,15 +16445,19 @@ packages: jest-util: optional: true - ts-loader@9.5.2: - resolution: {integrity: sha512-Qo4piXvOTWcMGIgRiuFa6nHNm+54HbYaZCKqc9eeZCLRy3XqafQgwX2F7mofrbJG3g7EEb+lkiR+z2Lic2s3Zw==} + ts-loader@9.6.2: + resolution: {integrity: sha1-oI9JNd24ftvVjOM7eyVYwqd/3Uc=} engines: {node: '>=12.0.0'} peerDependencies: + loader-utils: '*' typescript: '*' - webpack: ^5.0.0 + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + loader-utils: + optional: true ts-node@10.9.2: - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + resolution: {integrity: sha1-cPAhyeGFvM3Kgg4m3EE4BcEBxx8=} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -17577,76 +16471,69 @@ packages: optional: true tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + resolution: {integrity: sha1-73jhkDkTNEbSRL6sD9ahYy4tEHw=} engines: {node: '>=6'} tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=} tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + resolution: {integrity: sha1-YS7+TtI11Wfoq6Xypfq3AoCt6D8=} tsscmp@1.0.6: - resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} + resolution: {integrity: sha1-hbmVg6w1iexL/vgltQAKqRHWBes=} engines: {node: '>=0.6.x'} - tsx@4.21.0: - resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} + tsx@4.23.1: + resolution: {integrity: sha1-FwPaAC7kQyuaBTkXQx+RRi/KI1s=} engines: {node: '>=18.0.0'} hasBin: true tsyringe@4.10.0: - resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==} + resolution: {integrity: sha1-0MlYFdWERkIUBgKF6qrdlKoDKZw=} engines: {node: '>= 6.0.0'} tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=} tunnel@0.0.6: - resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} + resolution: {integrity: sha1-cvExSzSlsZLbASMk3yzFh8pH+Sw=} engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + resolution: {integrity: sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=} engines: {node: '>= 0.8.0'} type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + resolution: {integrity: sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=} engines: {node: '>=4'} type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + resolution: {integrity: sha1-AXLLW86AsL1ULqNI21DH4hg02TQ=} engines: {node: '>=10'} type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + resolution: {integrity: sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=} engines: {node: '>=10'} type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + resolution: {integrity: sha1-iAaAFbszA2pZi5UuVekxGmD9Ops=} engines: {node: '>=12.20'} - type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} - type-fest@4.41.0: - resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + resolution: {integrity: sha1-auHI5XMSc8K/H1itOcuuLJGkbFg=} engines: {node: '>=16'} type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + resolution: {integrity: sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=} engines: {node: '>= 0.6'} type-is@2.1.0: - resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==} + resolution: {integrity: sha1-cdGnBTKTWC4WrJ8+uvGrmqSeVXA=} engines: {node: '>= 18'} typechat@0.1.1: - resolution: {integrity: sha512-Sw96vmkYqbAahqam7vCp8P/MjIGsR26Odz17UHpVGniYN5ir2B37nRRkoDuRpA5djwNQB+W5TB7w2xoF6kwbHQ==} + resolution: {integrity: sha1-+qW7DRtkeF9FbOnD7HMCxXfZJQk=} engines: {node: '>=18'} peerDependencies: typescript: ^5.3.3 @@ -17658,255 +16545,243 @@ packages: optional: true typed-array-buffer@1.0.3: - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + resolution: {integrity: sha1-pyOVRQpIaewDP9VJNxtHrzou5TY=} engines: {node: '>= 0.4'} typed-array-byte-length@1.0.3: - resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + resolution: {integrity: sha1-hAegT314aE89JSqhoUPSt3tBYM4=} engines: {node: '>= 0.4'} typed-array-byte-offset@1.0.4: - resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + resolution: {integrity: sha1-rjaYuOyRqKuUUBYQiu8A1b/xI1U=} engines: {node: '>= 0.4'} - typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + typed-array-length@1.0.8: + resolution: {integrity: sha1-C3Dpgsnp2v4t721kWP9LPy0rbXA=} engines: {node: '>= 0.4'} - typed-query-selector@2.12.0: - resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==} - typed-query-selector@2.12.2: - resolution: {integrity: sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ==} + resolution: {integrity: sha1-ZeJGKsawrs+uG/rBpPMCcHDbq6o=} typed-rest-client@1.8.11: - resolution: {integrity: sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==} + resolution: {integrity: sha1-aQbwLjyR6NhRV58lWr8P1ggAoE0=} - typescript-eslint@8.62.1: - resolution: {integrity: sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==} + typescript-eslint@8.65.0: + resolution: {integrity: sha1-dUyVP9apo9NvpUAVvbqApusqSVc=} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + resolution: {integrity: sha1-QszvLFcf29D2cYsdH15uXvAG9hE=} engines: {node: '>=14.17'} hasBin: true typescript@5.9.3: - resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + resolution: {integrity: sha1-W09Z4VMQqxeiFvXWz1PuR27eZw8=} engines: {node: '>=14.17'} hasBin: true typical@4.0.0: - resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + resolution: {integrity: sha1-y+r/O5164eK7+vWk5vEezP3pT8Q=} engines: {node: '>=8'} typical@7.3.0: - resolution: {integrity: sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw==} + resolution: {integrity: sha1-kwN2vjRCKHCfE0YTkR+iKqCWF6Q=} engines: {node: '>=12.17'} uc.micro@2.1.0: - resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + resolution: {integrity: sha1-+NP30OxMPeo1p+PI76TLi0XJ5+4=} uglify-js@3.19.3: - resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + resolution: {integrity: sha1-gjFem7xvKyWIiFis0f/4RBA1t38=} engines: {node: '>=0.8.0'} hasBin: true - unbash@4.0.2: - resolution: {integrity: sha512-8gwNZ29+0/3zmXw7ToIHZtg6wK37xnniRUdBt7B27xZxaxfgR5tGMaGHT0t0dLtBV9fXE7zurh0s6Z1DHVjfWg==} + unbash@4.0.3: + resolution: {integrity: sha1-z6QjEcjVWNsCD2Ilp4iQgQeKib0=} engines: {node: '>=14'} unbox-primitive@1.1.0: - resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + resolution: {integrity: sha1-jZ0snt7qhGDH81AzqIhnlEk00eI=} engines: {node: '>= 0.4'} unbzip2-stream@1.4.3: - resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} + resolution: {integrity: sha1-sNoExDcTEd93HNwhXofyEwmRrOc=} underscore@1.13.6: - resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + resolution: {integrity: sha1-BHhqH1idxsCfdh/F9FuJ6TUTZEE=} underscore@1.13.8: - resolution: {integrity: sha512-DXtD3ZtEQzc7M8m4cXotyHR+FAS18C64asBYY5vqZexfYryNNnDc02W4hKg3rdQuqOYas1jkseX0+nZXjTXnvQ==} + resolution: {integrity: sha1-qTohGGwEnb8OhHSW26cre9jB6Ss=} undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + resolution: {integrity: sha1-vNU5iT0AtW6WT9JlekhmsiGmVhc=} undici-types@6.21.0: - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + resolution: {integrity: sha1-aR0ArzkJvpOn+qE75hs6W1DvEss=} undici-types@7.18.2: - resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - - undici-types@7.24.4: - resolution: {integrity: sha512-cRaY9PagdEZoRmcwzk3tUV3SVGrVQkR6bcSilav/A0vXsfpW4Lvd0BvgRMwTEDTLLGN+QdyBTG+nnvTgJhdt6w==} + resolution: {integrity: sha1-KTV6iee3ykrvO/D9P9DNc4hCKek=} - undici-types@8.3.0: - resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==} + undici-types@7.28.0: + resolution: {integrity: sha1-KVw+Yy4MC7+vmrZrbVc+l985ubM=} undici@6.27.0: - resolution: {integrity: sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==} + resolution: {integrity: sha1-Qfnkj3xaQNJzdsqurYyan8e8qcQ=} engines: {node: '>=18.17'} undici@7.28.0: - resolution: {integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==} + resolution: {integrity: sha1-l9ZFZBmLKFvCgfDo4pWX49Ef5+w=} engines: {node: '>=20.18.1'} unicode-emoji-modifier-base@1.0.0: - resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} + resolution: {integrity: sha1-271bVLow8ofiqNWiSdpsDO82lFk=} engines: {node: '>=4'} unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + resolution: {integrity: sha1-G7mlHII6r51zqL/NPRoj3elLDOQ=} engines: {node: '>=18'} unicorn-magic@0.3.0: - resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} + resolution: {integrity: sha1-Tv1FyFpp4N1XbSVTL7+iKqXIoQQ=} engines: {node: '>=18'} unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + resolution: {integrity: sha1-9mZ3YQpcCp7pDKsrjU1mA3Am2eE=} unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} - - unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + resolution: {integrity: sha1-t0lg4UXBjctiJrxXkzWX9Uht6uk=} unist-util-is@6.0.1: - resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} + resolution: {integrity: sha1-0KP4by3Q23rNfYwkeAgLXGf5xqk=} unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + resolution: {integrity: sha1-/qaKJWWECclGBAi8a0mRuWW1IWM=} unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + resolution: {integrity: sha1-RJxuIaiA4IVb9aq63rOnQDFKusI=} unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} - - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + resolution: {integrity: sha1-tFIIEbDKNChWM3hQRd96jWd2z+s=} unist-util-visit-parents@6.0.2: - resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} + resolution: {integrity: sha1-d333+5hlLOFrS3zZmdChpA76OgI=} unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + resolution: {integrity: sha1-ElpC0euHYoNxWjy1zOqlMYKMcuI=} unist-util-visit@5.1.0: - resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} + resolution: {integrity: sha1-mioosKp2oV4NpwoIpYY6LwYOJGg=} universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + resolution: {integrity: sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=} engines: {node: '>= 4.0.0'} universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + resolution: {integrity: sha1-ZFF2BWb6hXU0dFqx3elS0bF2G+A=} engines: {node: '>= 4.0.0'} universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + resolution: {integrity: sha1-Fo78IYCWTmOG0GHglN9hr+I5sY0=} engines: {node: '>= 10.0.0'} unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} engines: {node: '>= 0.8'} untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + resolution: {integrity: sha1-K8lHuVNlJIfkYAlJ+wkeOujNkZs=} engines: {node: '>=8'} update-browserslist-db@1.2.3: - resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} + resolution: {integrity: sha1-ZNdttYcTE2rL60xJEUNmzGzC6A0=} hasBin: true peerDependencies: browserslist: '>= 4.21.0' uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: {integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=} url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + resolution: {integrity: sha1-tkLiGiZGgI/6F4xMX9o5hE4Szec=} url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: {integrity: sha1-nTwvc2wddd070r5QfcwRHx4uqcE=} url-template@2.0.8: - resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==} + resolution: {integrity: sha1-/FZaPMy/93MMd19WQflVV5FDnyE=} user-home@2.0.0: - resolution: {integrity: sha512-KMWqdlOcjCYdtIJpicDSFBQ8nFwS2i9sslAd6f4+CBGcU4gist2REnr2fxj2YocvJFxSF3ZOHLYLVZnUxv4BZQ==} + resolution: {integrity: sha1-nHC/2Babwdy/SGBODwS4tJzenp8=} engines: {node: '>=0.10.0'} - utf8-byte-length@1.0.4: - resolution: {integrity: sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==} + utf8-byte-length@1.0.5: + resolution: {integrity: sha1-+fY5ENFVNu4rLV3UZlOJcV6sXB4=} util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=} utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} engines: {node: '>= 0.4.0'} uuid@14.0.1: - resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==} + resolution: {integrity: sha1-ill1s+A4kCv9FpoQtSAvXsDPP68=} hasBin: true uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + resolution: {integrity: sha1-gNW1ztJxu5r2xEXyGhoExgbO++I=} deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + resolution: {integrity: sha1-4YjUyIU8xyIiA5LEJM1jfzIpPzA=} deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - - v8-to-istanbul@9.1.3: - resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} - engines: {node: '>=10.12.0'} + resolution: {integrity: sha1-Yzbo1xllyz01obu3hoRFp8BSZL8=} v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + resolution: {integrity: sha1-uVcqv6Yr1VbBbXX968GkEdX/MXU=} engines: {node: '>=10.12.0'} validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=} - validate-npm-package-name@6.0.0: - resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==} + validate-npm-package-name@6.0.2: + resolution: {integrity: sha1-To0sTZOZdac90bemXo8I1EyF35Y=} engines: {node: ^18.17.0 || >=20.5.0} - validator@13.15.23: - resolution: {integrity: sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==} + validator@13.15.35: + resolution: {integrity: sha1-gc9FXFHxW2nY00C+WRTz+rANv38=} engines: {node: '>= 0.10'} vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} engines: {node: '>= 0.8'} verror@1.10.1: - resolution: {integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==} + resolution: {integrity: sha1-S/Ce7M9FY7EJ7Us9RYOAyXKwzes=} engines: {node: '>=0.6.0'} - vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + version-range@4.15.0: + resolution: {integrity: sha1-id8ekhsU03UVqrXkLtSsBRXKssE=} + engines: {node: '>=4'} + + vfile-message@4.0.3: + resolution: {integrity: sha1-h7RN3de3DwZBwuPtCGS6c+LqjfQ=} vfile@6.0.3: - resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + resolution: {integrity: sha1-NlKrHEllMYUr9VprrFevmB68OKs=} vite@6.4.3: - resolution: {integrity: sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==} + resolution: {integrity: sha1-haFk23znBvKndoEu+is0DxchhY4=} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -17946,36 +16821,36 @@ packages: optional: true void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=} engines: {node: '>=0.10.0'} vscode-jsonrpc@8.2.0: - resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} + resolution: {integrity: sha1-9D36NftR52PRfNlNzKDJRY81q/k=} engines: {node: '>=14.0.0'} vscode-jsonrpc@8.2.1: - resolution: {integrity: sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==} + resolution: {integrity: sha1-oyLMDx2X95T/2cTNKomKC94JfzQ=} engines: {node: '>=14.0.0'} vscode-languageclient@9.0.1: - resolution: {integrity: sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==} + resolution: {integrity: sha1-zf4gJncmyNTbg53B6dGBbhKW6FQ=} engines: {vscode: ^1.82.0} vscode-languageserver-protocol@3.17.5: - resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} + resolution: {integrity: sha1-hkqLjzkINVcvThO9n4MT0OOsS+o=} vscode-languageserver-textdocument@1.0.12: - resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} + resolution: {integrity: sha1-RX7gQnGrOJmKCTxowjQvU/bkpjE=} vscode-languageserver-types@3.17.5: - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + resolution: {integrity: sha1-MnNnbwzy6rQLP0TQhay7fwijnYo=} vscode-languageserver@9.0.1: - resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} + resolution: {integrity: sha1-UArvggl+uU35DQCGeLC2tfR0AVs=} hasBin: true - vue@3.5.16: - resolution: {integrity: sha512-rjOV2ecxMd5SiAmof2xzh2WxntRcigkX/He4YFJ6WdRvVUrbt6DxC1Iujh10XLl8xCDRDtGKMeO3D+pRQ1PP9w==} + vue@3.5.40: + resolution: {integrity: sha1-xKnUxi+Y6jOqgRp1w/vUdtx4IYQ=} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -17983,57 +16858,57 @@ packages: optional: true w3c-keyname@2.2.8: - resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + resolution: {integrity: sha1-exfIxog9TouGrIq6edOeiA+IacU=} w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + resolution: {integrity: sha1-rr3ISSDYBiIpNuPNzkCOMkiKMHM=} engines: {node: '>=14'} w3c-xmlserializer@5.0.0: - resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + resolution: {integrity: sha1-+SW6JoVRWFlNkHMTzt0UdsWWf2w=} engines: {node: '>=18'} walk-up-path@4.0.0: - resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} + resolution: {integrity: sha1-WQZm3PgUbi1yMYFk8fKsbvUdQZg=} engines: {node: 20 || >=22} walkdir@0.4.1: - resolution: {integrity: sha512-3eBwRyEln6E1MSzcxcVpQIhRG8Q1jLvEqRmCZqS3dsfXEDR/AhOF4d+jHg1qvDCpYaVRZjENPQyrVxAkQqxPgQ==} + resolution: {integrity: sha1-3BGfg/RCHfUuMGHlFCKKLbIK+jk=} engines: {node: '>=6.0.0'} walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + resolution: {integrity: sha1-vUmNtHev5XPcBBhfAR06uKjXZT8=} watchpack@2.5.2: - resolution: {integrity: sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==} + resolution: {integrity: sha1-4S6C2EZ0Jm/Bxtv+OIkbkv8FIuw=} engines: {node: '>=10.13.0'} wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + resolution: {integrity: sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=} wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=} web-streams-polyfill@4.0.0-beta.3: - resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} + resolution: {integrity: sha1-KJhIa3T1FWCV5HPv6Ync8YUEejg=} engines: {node: '>= 14'} webdriver-bidi-protocol@0.4.1: - resolution: {integrity: sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==} + resolution: {integrity: sha1-1BHnuOFYQI2DuxZrC08QVPo/B34=} webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + resolution: {integrity: sha1-JWtOGIK+feu/AdBfCqIDl3jqCAo=} engines: {node: '>=12'} webidl-conversions@8.0.1: - resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==} + resolution: {integrity: sha1-Blflcf5vBvyxXKUO0f28tJXNFoY=} engines: {node: '>=20'} webpack-cli@5.1.4: - resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==} + resolution: {integrity: sha1-yOBGun6q5JEdfnHislt3b8w1dZs=} engines: {node: '>=14.15.0'} hasBin: true peerDependencies: @@ -18050,7 +16925,7 @@ packages: optional: true webpack-dev-middleware@7.4.5: - resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==} + resolution: {integrity: sha1-1OhyCqKcsDvBWAhKlO20WU47esA=} engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.0.0 @@ -18059,7 +16934,7 @@ packages: optional: true webpack-dev-server@5.2.6: - resolution: {integrity: sha512-HNLRmamRvVavZQ+avceZifmv8hmdUjg43t6MI4SqJDwFdW7RPQwH5vzGhDRZSX59SgfbeHhLnq3g+uooWo7pVw==} + resolution: {integrity: sha1-Ol1BIzy7dQT4FNGeWaWRc/uK4j0=} engines: {node: '>= 18.12.0'} hasBin: true peerDependencies: @@ -18072,15 +16947,15 @@ packages: optional: true webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + resolution: {integrity: sha1-o61ddzJB6caCgDq/Yo1M1iuKQXc=} engines: {node: '>=10.0.0'} webpack-sources@3.5.1: - resolution: {integrity: sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw==} + resolution: {integrity: sha1-dsJBhIbcwCsqoGlMEEF2woWP6Eo=} engines: {node: '>=10.13.0'} - webpack@5.105.0: - resolution: {integrity: sha512-gX/dMkRQc7QOMzgTe6KsYFM7DxeIONQSui1s0n/0xht36HvrgbxtM1xBlgx596NbpHuQU8P7QpKwrZYwUX48nw==} + webpack@5.108.4: + resolution: {integrity: sha1-FBgYpBFmJ3OguzLcVTasxUCZQ7c=} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -18090,152 +16965,148 @@ packages: optional: true websocket-driver@0.7.5: - resolution: {integrity: sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA==} + resolution: {integrity: sha1-Vp0idkqyHy3iCvDnS0EeiuWg+kY=} engines: {node: '>=0.8.0'} websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + resolution: {integrity: sha1-f4RzvIOd/YdgituV1+sHUhFXikI=} engines: {node: '>=0.8.0'} webvtt-parser@2.2.0: - resolution: {integrity: sha512-FzmaED+jZyt8SCJPTKbSsimrrnQU8ELlViE1wuF3x1pgiQUM8Llj5XWj2j/s6Tlk71ucPfGSMFqZWBtKn/0uEA==} + resolution: {integrity: sha1-eQKfuQZ+3LIQgg+mEBw32bi3jZ8=} whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + resolution: {integrity: sha1-52NfWX/YcCCFhiaAWicp+naYrFM=} engines: {node: '>=12'} deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-encoding@3.1.1: - resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + resolution: {integrity: sha1-0PTvdpkF1CbhaI8+NDgambYLduU=} engines: {node: '>=18'} deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + resolution: {integrity: sha1-X6GnYjhn/xr2yj3HKta4pCCL66c=} engines: {node: '>=12'} whatwg-mimetype@4.0.0: - resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + resolution: {integrity: sha1-vBv5SphdxQOI1UqSWKxAXDyi/Ao=} engines: {node: '>=18'} whatwg-mimetype@5.0.0: - resolution: {integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==} + resolution: {integrity: sha1-2CMoldvVJ86u5079QWIAj7ioz0g=} engines: {node: '>=20'} whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + resolution: {integrity: sha1-CoSe67X68hGbkBu3b9eVwoSNQBg=} engines: {node: '>=12'} - whatwg-url@13.0.0: - resolution: {integrity: sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==} - engines: {node: '>=16'} - whatwg-url@14.2.0: - resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} + resolution: {integrity: sha1-TuAtXXJRVdrgBPaulcc+fvXZVmM=} engines: {node: '>=18'} whatwg-url@16.0.1: - resolution: {integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==} + resolution: {integrity: sha1-BH9/S9Nu92txmMFy0bHOvGb3ZN0=} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} which-boxed-primitive@1.1.1: - resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + resolution: {integrity: sha1-127Cfff6Fl8Y1YCDdKX+I8KbF24=} engines: {node: '>= 0.4'} which-builtin-type@1.2.1: - resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + resolution: {integrity: sha1-iRg9obSQerCJprAgKcxdjWV0Jw4=} engines: {node: '>= 0.4'} which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + resolution: {integrity: sha1-Yn73YkOSChB+fOjpYZHevksWwqA=} engines: {node: '>= 0.4'} - which-typed-array@1.1.19: - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + which-typed-array@1.1.22: + resolution: {integrity: sha1-jzzHiu+0C0NzRt1Aodv6XR2kP+k=} engines: {node: '>= 0.4'} which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + resolution: {integrity: sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=} hasBin: true which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + resolution: {integrity: sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=} engines: {node: '>= 8'} hasBin: true which@5.0.0: - resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==} + resolution: {integrity: sha1-2T8tk/eYNNQ2PH0MI+ANB8RmyNY=} engines: {node: ^18.17.0 || >=20.5.0} hasBin: true which@6.0.1: - resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==} + resolution: {integrity: sha1-AhZCRDoZj7k7eEpWBnIcsYz8v84=} engines: {node: ^20.17.0 || >=22.9.0} hasBin: true widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + resolution: {integrity: sha1-gpIzO79my0X/DeFgOxNreuFJbso=} engines: {node: '>=8'} widest-line@5.0.0: - resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} + resolution: {integrity: sha1-t0gmoeSAeDNF8M2QYbSXU8nacNA=} engines: {node: '>=18'} wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + resolution: {integrity: sha1-WrENAkhxmJVINrY0n3T/+WHhD2c=} winreg@1.2.5: - resolution: {integrity: sha512-uf7tHf+tw0B1y+x+mKTLHkykBgK2KMs3g+KlzmyMbLvICSHQyB/xOFjTT8qZ3oeTFyU7Bbj4FzXitGG6jvKhYw==} + resolution: {integrity: sha1-tlA4PokniVJJS10RO6BJpaT6ltg=} with@7.0.2: - resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} + resolution: {integrity: sha1-zO461ULSVTinp6gKrSErmChJW6w=} engines: {node: '>= 10.0.0'} word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + resolution: {integrity: sha1-0sRcbdT7zmIaZvE2y+Mor9BBCzQ=} engines: {node: '>=0.10.0'} wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} - wordwrapjs@5.1.0: - resolution: {integrity: sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==} + wordwrapjs@5.1.1: + resolution: {integrity: sha1-v9HrQm8Pfuxzt98yz33x9hi/s6k=} engines: {node: '>=12.17'} workerpool@6.5.1: - resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} + resolution: {integrity: sha1-Bg9zs50Mr5fG22TaAEzQG0wJlUQ=} workerpool@9.3.4: - resolution: {integrity: sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==} + resolution: {integrity: sha1-9skjlbIUGv144qiJ6AyzOP6fykE=} wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + resolution: {integrity: sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=} engines: {node: '>=8'} wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + resolution: {integrity: sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=} engines: {node: '>=10'} wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + resolution: {integrity: sha1-VtwiNo7lcPrOG0mBmXXZuaXq0hQ=} engines: {node: '>=12'} wrap-ansi@9.0.2: - resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + resolution: {integrity: sha1-lWgy3qlJQwbm0gnrhxZDu4c9fJg=} engines: {node: '>=18'} wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + resolution: {integrity: sha1-qd8Brlt3hYoCf9LoB2juQzVV/P0=} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} ws@7.5.13: - resolution: {integrity: sha512-rsKI6xDBFVf4r/x8XyChGK04QR/XHroxs/jUcoWvtEZM8TPU/X/uIY9B1CsSzYws9ZJb/6bbBu7dPhFW00CAoA==} + resolution: {integrity: sha1-EqpQfqynbClcJ4sa6/RpirLBhF8=} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -18247,7 +17118,7 @@ packages: optional: true ws@8.21.1: - resolution: {integrity: sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==} + resolution: {integrity: sha1-BFZQzUsSB4CedUcUYiPDgUqa9YY=} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -18259,63 +17130,59 @@ packages: optional: true wsl-utils@0.1.0: - resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + resolution: {integrity: sha1-h4PU32cdTVA2W+LuTHGRegVXuqs=} engines: {node: '>=18'} xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + resolution: {integrity: sha1-eaAG4uYxSahgDxVDDwpHJdFSSDU=} engines: {node: '>=12'} xml-name-validator@5.0.0: - resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + resolution: {integrity: sha1-gr6blX96/az5YeWYDxvyJ8C/dnM=} engines: {node: '>=18'} - xml-naming@0.1.0: - resolution: {integrity: sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==} - engines: {node: '>=16.0.0'} - xml-naming@0.3.0: - resolution: {integrity: sha512-ghig2TBE/H11aOVgmahA3MhimvkBr6JIYknH/Dhdk10nXwdbIqBJsbfMxpvFPG8bAw77gN29aQWvKpmVoPlvPQ==} + resolution: {integrity: sha1-RsHhi/4oWEeZgt0qzPNNFudJ7aI=} engines: {node: '>=16.0.0'} xml2js@0.4.23: - resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} + resolution: {integrity: sha1-oMaVFnUkIesqx1juTUzPWIQ+rGY=} engines: {node: '>=4.0.0'} xml2js@0.5.0: - resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} + resolution: {integrity: sha1-2UQGMfuy7YACA/rRBvJyT2LEk7c=} engines: {node: '>=4.0.0'} xml2js@0.6.2: - resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} + resolution: {integrity: sha1-3QtjAIOqCcFh4lpNCQHisqkptJk=} engines: {node: '>=4.0.0'} xmlbuilder2@4.0.3: - resolution: {integrity: sha512-bx8Q1STctnNaaDymWnkfQLKofs0mGNN7rLLapJlGuV3VlvegD7Ls4ggMjE3aUSWItCCzU0PEv45lI87iSigiCA==} + resolution: {integrity: sha1-kWYPptMPGdcW+LEZTFZ2htRALGM=} engines: {node: '>=20.0'} xmlbuilder@11.0.1: - resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + resolution: {integrity: sha1-vpuuHIoEbnazESdyY0fQrXACvrM=} engines: {node: '>=4.0'} xmlbuilder@15.1.1: - resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} + resolution: {integrity: sha1-nc3OSe6mbY0QtCyulKecPI0MLsU=} engines: {node: '>=8.0'} xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + resolution: {integrity: sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=} xss@1.0.15: - resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} + resolution: {integrity: sha1-lqDhOIbwZhBjAotBDtGxhnD05Zo=} engines: {node: '>= 0.10.0'} hasBin: true xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + resolution: {integrity: sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=} engines: {node: '>=0.4'} - y-prosemirror@1.3.5: - resolution: {integrity: sha512-qW8fXCb72L6H2BWiuhZdSJ6hiShHUog08gh6KvBqLjhK6Et9DxfDnMDvx6yyO3iCdnEhDfUJviRvaMAAXb0dNg==} + y-prosemirror@1.3.7: + resolution: {integrity: sha1-+I5VPaTqMyeLEUzwtqDql4sVToQ=} engines: {node: '>=16.0.0', npm: '>=8.0.0'} peerDependencies: prosemirror-model: ^1.7.1 @@ -18324,138 +17191,122 @@ packages: y-protocols: ^1.0.1 yjs: ^13.5.38 - y-protocols@1.0.6: - resolution: {integrity: sha512-vHRF2L6iT3rwj1jub/K5tYcTT/mEYDUppgNPXwp8fmLpui9f7Yeq3OEtTLVF012j39QnV+KEQpNqoN7CWU7Y9Q==} + y-protocols@1.0.7: + resolution: {integrity: sha1-ZjHEkudbeLOmE1OmAGfm+KTDjV8=} engines: {node: '>=16.0.0', npm: '>=8.0.0'} peerDependencies: yjs: ^13.0.0 y-websocket@3.0.0: - resolution: {integrity: sha512-mUHy7AzkOZ834T/7piqtlA8Yk6AchqKqcrCXjKW8J1w2lPtRDjz8W5/CvXz9higKAHgKRKqpI3T33YkRFLkPtg==} + resolution: {integrity: sha1-6GvbKcwKU8uNbjPsjSRhSnI4Mq8=} engines: {node: '>=16.0.0', npm: '>=8.0.0'} peerDependencies: yjs: ^13.5.6 y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + resolution: {integrity: sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=} engines: {node: '>=10'} yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: {integrity: sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=} yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: {integrity: sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=} yallist@5.0.0: - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} + resolution: {integrity: sha1-AOLeRDY57Q14/YfeDSdGn7z/tTM=} engines: {node: '>=18'} - yaml@2.8.3: - resolution: {integrity: sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==} - engines: {node: '>= 14.6'} - hasBin: true - yaml@2.9.0: - resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} + resolution: {integrity: sha1-eCdK/ZNZih391hMN9qVm3vy/mqQ=} engines: {node: '>= 14.6'} hasBin: true yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + resolution: {integrity: sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=} engines: {node: '>=10'} yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + resolution: {integrity: sha1-kJa87r+ZDSG7MfqVFuDt4pSnfTU=} engines: {node: '>=12'} yargs-unparser@2.0.0: - resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} - engines: {node: '>=10'} - - yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + resolution: {integrity: sha1-8TH5ImkRrl2a04xDL+gJNmwjJes=} engines: {node: '>=10'} yargs@16.2.2: - resolution: {integrity: sha512-Nt9ZJjXTv5R8MHbqby/wXQ6Gi0Bb3TcYZkR1bzuL4yB2OxWPkXknz513gEF0GoA6tn00UpbPvERW8rzCuWCA6w==} + resolution: {integrity: sha1-xWcx3KDSeIrghm3TyDkH1rq4X30=} engines: {node: '>=10'} yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + resolution: {integrity: sha1-mR3zmspnWhkrgW4eA2P5110qomk=} engines: {node: '>=12'} yargs@17.7.3: - resolution: {integrity: sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==} + resolution: {integrity: sha1-d53/5ryv7FlqcXLpgyiaWIZH+qo=} engines: {node: '>=12'} yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} + + yauzl@3.4.0: + resolution: {integrity: sha1-iLKiFFXzfKfczy7rM7rLQ5IyJxk=} + engines: {node: '>=12'} yazl@2.5.1: - resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} + resolution: {integrity: sha1-o9ZdPdZZpbCTeFDoYJ8i//orXDU=} - yjs@13.6.27: - resolution: {integrity: sha512-OIDwaflOaq4wC6YlPBy2L6ceKeKuF7DeTxx+jPzv1FHn9tCZ0ZwSRnUBxD05E3yed46fv/FWJbvR+Ud7x0L7zw==} + yjs@13.6.31: + resolution: {integrity: sha1-Op3f5tDF14hSG3Df3XuQcUhhBBg=} engines: {node: '>=16.0.0', npm: '>=8.0.0'} ylru@1.4.0: - resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==} + resolution: {integrity: sha1-DPCqV+nCT4osveDMHKLJWSrE4PY=} engines: {node: '>= 4.0.0'} yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + resolution: {integrity: sha1-HodAGgnXZ8HV6rJqbkwYUYLS61A=} engines: {node: '>=6'} yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + resolution: {integrity: sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=} engines: {node: '>=10'} - yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + yocto-queue@1.2.2: + resolution: {integrity: sha1-PgnJXT8aqJpYwRTJkiPt9jkVLAA=} engines: {node: '>=12.20'} - yoctocolors-cjs@2.1.2: - resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==} + yoctocolors-cjs@2.1.3: + resolution: {integrity: sha1-fklk6o7EIrekCskX06NEz9IwS6o=} engines: {node: '>=18'} yoga-wasm-web@0.3.3: - resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==} + resolution: {integrity: sha1-646fyxjl5lGZRzLxmiIMuIXZMro=} zip-stream@2.1.3: - resolution: {integrity: sha512-EkXc2JGcKhO5N5aZ7TmuNo45budRaFGHOmz24wtJR7znbNqDPmdZtUauKX6et8KAVseAMBOyWJqEpXcHTBsh7Q==} + resolution: {integrity: sha1-JsxL25NkGoWQ3QcRLh93rxdYhls=} engines: {node: '>= 6'} zip-stream@6.0.1: - resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} + resolution: {integrity: sha1-4UG5MO1gzK9df6nIJg4NF0iiu/s=} engines: {node: '>= 14'} - zod-to-json-schema@3.25.1: - resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==} - peerDependencies: - zod: ^3.25 || ^4 - zod-to-json-schema@3.25.2: - resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==} + resolution: {integrity: sha1-P6eZp7rdVUVBRy+2WEP9xGCy5ao=} peerDependencies: zod: ^3.25.28 || ^4 zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + resolution: {integrity: sha1-43uVe11SB5dp+4CXCZtZLw70Bn0=} zod@3.25.76: - resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} - - zod@4.1.13: - resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==} - - zod@4.3.6: - resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} + resolution: {integrity: sha1-JoQcP2/SKmonYOfMtxkXl2hHHjQ=} zod@4.4.3: - resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} + resolution: {integrity: sha1-toDxcohdGLvr8hqDTqJeVaG781Y=} zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + resolution: {integrity: sha1-yCfUsKy3b8PmhaTG7CkC1RBw6dc=} snapshots: @@ -18470,107 +17321,62 @@ snapshots: '@antfu/install-pkg@1.1.0': dependencies: - package-manager-detector: 1.6.0 - tinyexec: 1.1.2 + package-manager-detector: 1.8.0 + tinyexec: 1.2.4 - '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.162': + '@anthropic-ai/claude-agent-sdk-darwin-arm64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.162': + '@anthropic-ai/claude-agent-sdk-darwin-x64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.162': + '@anthropic-ai/claude-agent-sdk-linux-arm64-musl@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.162': + '@anthropic-ai/claude-agent-sdk-linux-arm64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.162': + '@anthropic-ai/claude-agent-sdk-linux-x64-musl@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.162': + '@anthropic-ai/claude-agent-sdk-linux-x64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.162': + '@anthropic-ai/claude-agent-sdk-win32-arm64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.162': + '@anthropic-ai/claude-agent-sdk-win32-x64@0.3.218': optional: true - '@anthropic-ai/claude-agent-sdk@0.3.162(@anthropic-ai/sdk@0.93.0(zod@3.25.76))(@modelcontextprotocol/sdk@1.26.0(zod@3.25.76))(zod@3.25.76)': + '@anthropic-ai/claude-agent-sdk@0.3.218(@anthropic-ai/sdk@0.93.0(zod@3.25.76))(@modelcontextprotocol/sdk@1.26.0(zod@3.25.76))(zod@3.25.76)': dependencies: '@anthropic-ai/sdk': 0.93.0(zod@3.25.76) '@modelcontextprotocol/sdk': 1.26.0(zod@3.25.76) zod: 3.25.76 optionalDependencies: - '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.162 - - '@anthropic-ai/claude-agent-sdk@0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.1.13))(@modelcontextprotocol/sdk@1.26.0(zod@4.1.13))(zod@4.1.13)': - dependencies: - '@anthropic-ai/sdk': 0.93.0(zod@4.1.13) - '@modelcontextprotocol/sdk': 1.26.0(supports-color@8.1.1)(zod@4.1.13) - zod: 4.1.13 - optionalDependencies: - '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.162 - - '@anthropic-ai/claude-agent-sdk@0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.3.6))(@modelcontextprotocol/sdk@1.26.0(zod@4.3.6))(zod@4.3.6)': - dependencies: - '@anthropic-ai/sdk': 0.93.0(zod@4.3.6) - '@modelcontextprotocol/sdk': 1.26.0(zod@4.3.6) - zod: 4.3.6 - optionalDependencies: - '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.162 - - '@anthropic-ai/claude-agent-sdk@0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.3.6))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6)': - dependencies: - '@anthropic-ai/sdk': 0.93.0(zod@4.3.6) - '@modelcontextprotocol/sdk': 1.26.0(zod@4.4.3) - zod: 4.3.6 - optionalDependencies: - '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.162 + '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.218 + '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.218 - '@anthropic-ai/claude-agent-sdk@0.3.162(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.3.6)': + '@anthropic-ai/claude-agent-sdk@0.3.218(@anthropic-ai/sdk@0.93.0(zod@4.4.3))(@modelcontextprotocol/sdk@1.26.0(zod@4.4.3))(zod@4.4.3)': dependencies: '@anthropic-ai/sdk': 0.93.0(zod@4.4.3) - '@modelcontextprotocol/sdk': 1.26.0(zod@4.4.3) - zod: 4.3.6 + '@modelcontextprotocol/sdk': 1.26.0(supports-color@8.1.1)(zod@4.4.3) + zod: 4.4.3 optionalDependencies: - '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.162 - '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.162 + '@anthropic-ai/claude-agent-sdk-darwin-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-darwin-x64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-arm64-musl': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-x64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-linux-x64-musl': 0.3.218 + '@anthropic-ai/claude-agent-sdk-win32-arm64': 0.3.218 + '@anthropic-ai/claude-agent-sdk-win32-x64': 0.3.218 '@anthropic-ai/sdk@0.93.0(zod@3.25.76)': dependencies: @@ -18578,31 +17384,19 @@ snapshots: optionalDependencies: zod: 3.25.76 - '@anthropic-ai/sdk@0.93.0(zod@4.1.13)': - dependencies: - json-schema-to-ts: 3.1.1 - optionalDependencies: - zod: 4.1.13 - - '@anthropic-ai/sdk@0.93.0(zod@4.3.6)': - dependencies: - json-schema-to-ts: 3.1.1 - optionalDependencies: - zod: 4.3.6 - '@anthropic-ai/sdk@0.93.0(zod@4.4.3)': dependencies: json-schema-to-ts: 3.1.1 optionalDependencies: zod: 4.4.3 - '@asamuzakjp/css-color@5.0.1': + '@asamuzakjp/css-color@5.1.11': dependencies: - '@csstools/css-calc': 3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - '@csstools/css-color-parser': 4.0.2(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@asamuzakjp/generational-cache': 1.0.1 + '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - lru-cache: 11.2.7 '@asamuzakjp/dom-selector@6.8.1': dependencies: @@ -18610,463 +17404,186 @@ snapshots: bidi-js: 1.0.3 css-tree: 3.2.1 is-potential-custom-element-name: 1.0.1 - lru-cache: 11.2.7 - - '@asamuzakjp/nwsapi@2.3.9': {} + lru-cache: 11.5.2 - '@aws-crypto/crc32@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.5 - tslib: 2.8.1 + '@asamuzakjp/generational-cache@1.0.1': {} - '@aws-crypto/crc32c@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.5 - tslib: 2.8.1 + '@asamuzakjp/nwsapi@2.3.9': {} - '@aws-crypto/sha1-browser@5.2.0': + '@aws-sdk/checksums@3.1000.19': dependencies: - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-locate-window': 3.965.5 - '@smithy/util-utf8': 2.3.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-crypto/sha256-browser@5.2.0': - dependencies: - '@aws-crypto/sha256-js': 5.2.0 - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-locate-window': 3.965.5 - '@smithy/util-utf8': 2.3.0 + '@aws-sdk/client-s3@3.1093.0': + dependencies: + '@aws-sdk/checksums': 3.1000.19 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/credential-provider-node': 3.972.71 + '@aws-sdk/middleware-sdk-s3': 3.972.65 + '@aws-sdk/signature-v4-multi-region': 3.996.41 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/fetch-http-handler': 5.6.9 + '@smithy/node-http-handler': 4.9.9 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-crypto/sha256-js@5.2.0': + '@aws-sdk/core@3.976.0': dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.973.5 + '@aws-sdk/types': 3.974.2 + '@aws-sdk/xml-builder': 3.972.36 + '@aws/lambda-invoke-store': 0.3.0 + '@smithy/core': 3.29.7 + '@smithy/signature-v4': 5.6.8 + '@smithy/types': 4.16.1 + bowser: 2.14.1 tslib: 2.8.1 - '@aws-crypto/supports-web-crypto@5.2.0': + '@aws-sdk/credential-provider-env@3.972.60': dependencies: + '@aws-sdk/core': 3.976.0 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-crypto/util@5.2.0': + '@aws-sdk/credential-provider-http@3.972.62': dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/util-utf8': 2.3.0 - tslib: 2.8.1 - - '@aws-sdk/client-s3@3.1004.0': - dependencies: - '@aws-crypto/sha1-browser': 5.2.0 - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.973.18 - '@aws-sdk/credential-provider-node': 3.972.18 - '@aws-sdk/middleware-bucket-endpoint': 3.972.7 - '@aws-sdk/middleware-expect-continue': 3.972.7 - '@aws-sdk/middleware-flexible-checksums': 3.973.4 - '@aws-sdk/middleware-host-header': 3.972.7 - '@aws-sdk/middleware-location-constraint': 3.972.7 - '@aws-sdk/middleware-logger': 3.972.7 - '@aws-sdk/middleware-recursion-detection': 3.972.7 - '@aws-sdk/middleware-sdk-s3': 3.972.18 - '@aws-sdk/middleware-ssec': 3.972.7 - '@aws-sdk/middleware-user-agent': 3.972.19 - '@aws-sdk/region-config-resolver': 3.972.7 - '@aws-sdk/signature-v4-multi-region': 3.996.6 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-endpoints': 3.996.4 - '@aws-sdk/util-user-agent-browser': 3.972.7 - '@aws-sdk/util-user-agent-node': 3.973.4 - '@smithy/config-resolver': 4.4.10 - '@smithy/core': 3.23.9 - '@smithy/eventstream-serde-browser': 4.2.11 - '@smithy/eventstream-serde-config-resolver': 4.3.11 - '@smithy/eventstream-serde-node': 4.2.11 - '@smithy/fetch-http-handler': 5.3.13 - '@smithy/hash-blob-browser': 4.2.12 - '@smithy/hash-node': 4.2.11 - '@smithy/hash-stream-node': 4.2.11 - '@smithy/invalid-dependency': 4.2.11 - '@smithy/md5-js': 4.2.11 - '@smithy/middleware-content-length': 4.2.11 - '@smithy/middleware-endpoint': 4.4.23 - '@smithy/middleware-retry': 4.4.40 - '@smithy/middleware-serde': 4.2.12 - '@smithy/middleware-stack': 4.2.11 - '@smithy/node-config-provider': 4.3.11 - '@smithy/node-http-handler': 4.4.14 - '@smithy/protocol-http': 5.3.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/url-parser': 4.2.11 - '@smithy/util-base64': 4.3.2 - '@smithy/util-body-length-browser': 4.2.2 - '@smithy/util-body-length-node': 4.2.3 - '@smithy/util-defaults-mode-browser': 4.3.39 - '@smithy/util-defaults-mode-node': 4.2.42 - '@smithy/util-endpoints': 3.3.2 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-retry': 4.2.11 - '@smithy/util-stream': 4.5.17 - '@smithy/util-utf8': 4.2.2 - '@smithy/util-waiter': 4.2.11 - tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/core@3.973.18': - dependencies: - '@aws-sdk/types': 3.973.5 - '@aws-sdk/xml-builder': 3.972.10 - '@smithy/core': 3.23.9 - '@smithy/node-config-provider': 4.3.11 - '@smithy/property-provider': 4.2.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/signature-v4': 5.3.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/util-base64': 4.3.2 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-utf8': 4.2.2 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/fetch-http-handler': 5.6.9 + '@smithy/node-http-handler': 4.9.9 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/crc64-nvme@3.972.4': - dependencies: - '@smithy/types': 4.13.0 + '@aws-sdk/credential-provider-ini@3.973.5': + dependencies: + '@aws-sdk/core': 3.976.0 + '@aws-sdk/credential-provider-env': 3.972.60 + '@aws-sdk/credential-provider-http': 3.972.62 + '@aws-sdk/credential-provider-login': 3.972.67 + '@aws-sdk/credential-provider-process': 3.972.60 + '@aws-sdk/credential-provider-sso': 3.973.4 + '@aws-sdk/credential-provider-web-identity': 3.972.66 + '@aws-sdk/nested-clients': 3.997.34 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/credential-provider-imds': 4.4.12 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.972.16': + '@aws-sdk/credential-provider-login@3.972.67': dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/credential-provider-http@3.972.18': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/types': 3.973.5 - '@smithy/fetch-http-handler': 5.3.13 - '@smithy/node-http-handler': 4.4.14 - '@smithy/property-provider': 4.2.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/util-stream': 4.5.17 - tslib: 2.8.1 - - '@aws-sdk/credential-provider-ini@3.972.17': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/credential-provider-env': 3.972.16 - '@aws-sdk/credential-provider-http': 3.972.18 - '@aws-sdk/credential-provider-login': 3.972.17 - '@aws-sdk/credential-provider-process': 3.972.16 - '@aws-sdk/credential-provider-sso': 3.972.17 - '@aws-sdk/credential-provider-web-identity': 3.972.17 - '@aws-sdk/nested-clients': 3.996.7 - '@aws-sdk/types': 3.973.5 - '@smithy/credential-provider-imds': 4.2.11 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/nested-clients': 3.997.34 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - '@aws-sdk/credential-provider-login@3.972.17': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/nested-clients': 3.996.7 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/credential-provider-node@3.972.18': - dependencies: - '@aws-sdk/credential-provider-env': 3.972.16 - '@aws-sdk/credential-provider-http': 3.972.18 - '@aws-sdk/credential-provider-ini': 3.972.17 - '@aws-sdk/credential-provider-process': 3.972.16 - '@aws-sdk/credential-provider-sso': 3.972.17 - '@aws-sdk/credential-provider-web-identity': 3.972.17 - '@aws-sdk/types': 3.973.5 - '@smithy/credential-provider-imds': 4.2.11 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 + '@aws-sdk/credential-provider-node@3.972.71': + dependencies: + '@aws-sdk/credential-provider-env': 3.972.60 + '@aws-sdk/credential-provider-http': 3.972.62 + '@aws-sdk/credential-provider-ini': 3.973.5 + '@aws-sdk/credential-provider-process': 3.972.60 + '@aws-sdk/credential-provider-sso': 3.973.4 + '@aws-sdk/credential-provider-web-identity': 3.972.66 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/credential-provider-imds': 4.4.12 + '@smithy/types': 4.16.1 tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - '@aws-sdk/credential-provider-process@3.972.16': + '@aws-sdk/credential-provider-process@3.972.60': dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.972.17': + '@aws-sdk/credential-provider-sso@3.973.4': dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/nested-clients': 3.996.7 - '@aws-sdk/token-providers': 3.1004.0 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/nested-clients': 3.997.34 + '@aws-sdk/token-providers': 3.1092.0 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - '@aws-sdk/credential-provider-web-identity@3.972.17': + '@aws-sdk/credential-provider-web-identity@3.972.66': dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/nested-clients': 3.996.7 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/nested-clients': 3.997.34 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - '@aws-sdk/lib-storage@3.1004.0(@aws-sdk/client-s3@3.1004.0)': + '@aws-sdk/lib-storage@3.1093.0(@aws-sdk/client-s3@3.1093.0)': dependencies: - '@aws-sdk/client-s3': 3.1004.0 - '@smithy/abort-controller': 4.2.11 - '@smithy/middleware-endpoint': 4.4.23 - '@smithy/smithy-client': 4.12.3 + '@aws-sdk/client-s3': 3.1093.0 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 buffer: 5.6.0 events: 3.3.0 stream-browserify: 3.0.0 tslib: 2.8.1 - '@aws-sdk/middleware-bucket-endpoint@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-arn-parser': 3.972.3 - '@smithy/node-config-provider': 4.3.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-config-provider': 4.2.2 - tslib: 2.8.1 - - '@aws-sdk/middleware-expect-continue@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-flexible-checksums@3.973.4': - dependencies: - '@aws-crypto/crc32': 5.2.0 - '@aws-crypto/crc32c': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/core': 3.973.18 - '@aws-sdk/crc64-nvme': 3.972.4 - '@aws-sdk/types': 3.973.5 - '@smithy/is-array-buffer': 4.2.2 - '@smithy/node-config-provider': 4.3.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-stream': 4.5.17 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@aws-sdk/middleware-host-header@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-location-constraint@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-logger@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-recursion-detection@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@aws/lambda-invoke-store': 0.2.3 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-sdk-s3@3.972.18': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-arn-parser': 3.972.3 - '@smithy/core': 3.23.9 - '@smithy/node-config-provider': 4.3.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/signature-v4': 5.3.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/util-config-provider': 4.2.2 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-stream': 4.5.17 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@aws-sdk/middleware-ssec@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/middleware-user-agent@3.972.19': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-endpoints': 3.996.4 - '@smithy/core': 3.23.9 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-retry': 4.2.11 - tslib: 2.8.1 - - '@aws-sdk/nested-clients@3.996.7': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.973.18 - '@aws-sdk/middleware-host-header': 3.972.7 - '@aws-sdk/middleware-logger': 3.972.7 - '@aws-sdk/middleware-recursion-detection': 3.972.7 - '@aws-sdk/middleware-user-agent': 3.972.19 - '@aws-sdk/region-config-resolver': 3.972.7 - '@aws-sdk/types': 3.973.5 - '@aws-sdk/util-endpoints': 3.996.4 - '@aws-sdk/util-user-agent-browser': 3.972.7 - '@aws-sdk/util-user-agent-node': 3.973.4 - '@smithy/config-resolver': 4.4.10 - '@smithy/core': 3.23.9 - '@smithy/fetch-http-handler': 5.3.13 - '@smithy/hash-node': 4.2.11 - '@smithy/invalid-dependency': 4.2.11 - '@smithy/middleware-content-length': 4.2.11 - '@smithy/middleware-endpoint': 4.4.23 - '@smithy/middleware-retry': 4.4.40 - '@smithy/middleware-serde': 4.2.12 - '@smithy/middleware-stack': 4.2.11 - '@smithy/node-config-provider': 4.3.11 - '@smithy/node-http-handler': 4.4.14 - '@smithy/protocol-http': 5.3.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/url-parser': 4.2.11 - '@smithy/util-base64': 4.3.2 - '@smithy/util-body-length-browser': 4.2.2 - '@smithy/util-body-length-node': 4.2.3 - '@smithy/util-defaults-mode-browser': 4.3.39 - '@smithy/util-defaults-mode-node': 4.2.42 - '@smithy/util-endpoints': 3.3.2 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-retry': 4.2.11 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/region-config-resolver@3.972.7': - dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/config-resolver': 4.4.10 - '@smithy/node-config-provider': 4.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/signature-v4-multi-region@3.996.6': - dependencies: - '@aws-sdk/middleware-sdk-s3': 3.972.18 - '@aws-sdk/types': 3.973.5 - '@smithy/protocol-http': 5.3.11 - '@smithy/signature-v4': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/token-providers@3.1004.0': - dependencies: - '@aws-sdk/core': 3.973.18 - '@aws-sdk/nested-clients': 3.996.7 - '@aws-sdk/types': 3.973.5 - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/types@3.973.5': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@aws-sdk/util-arn-parser@3.972.3': + '@aws-sdk/middleware-sdk-s3@3.972.65': dependencies: + '@aws-sdk/core': 3.976.0 + '@aws-sdk/signature-v4-multi-region': 3.996.41 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/util-endpoints@3.996.4': + '@aws-sdk/nested-clients@3.997.34': dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/types': 4.13.0 - '@smithy/url-parser': 4.2.11 - '@smithy/util-endpoints': 3.3.2 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/signature-v4-multi-region': 3.996.41 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/fetch-http-handler': 5.6.9 + '@smithy/node-http-handler': 4.9.9 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/util-locate-window@3.965.5': + '@aws-sdk/signature-v4-multi-region@3.996.41': dependencies: + '@aws-sdk/types': 3.974.2 + '@smithy/signature-v4': 5.6.8 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/util-user-agent-browser@3.972.7': + '@aws-sdk/token-providers@3.1092.0': dependencies: - '@aws-sdk/types': 3.973.5 - '@smithy/types': 4.13.0 - bowser: 2.11.0 + '@aws-sdk/core': 3.976.0 + '@aws-sdk/nested-clients': 3.997.34 + '@aws-sdk/types': 3.974.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/util-user-agent-node@3.973.4': + '@aws-sdk/types@3.974.2': dependencies: - '@aws-sdk/middleware-user-agent': 3.972.19 - '@aws-sdk/types': 3.973.5 - '@smithy/node-config-provider': 4.3.11 - '@smithy/types': 4.13.0 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws-sdk/xml-builder@3.972.10': + '@aws-sdk/xml-builder@3.972.36': dependencies: - '@smithy/types': 4.13.0 - fast-xml-parser: 5.10.1 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@aws/lambda-invoke-store@0.2.3': {} + '@aws/lambda-invoke-store@0.3.0': {} '@azu/format-text@1.0.2': {} @@ -19074,20 +17591,9 @@ snapshots: dependencies: '@azu/format-text': 1.0.2 - '@azure-rest/core-client@2.4.0': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.3.1 - '@typespec/ts-http-runtime': 0.2.2 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@azure-rest/core-client@2.8.0': dependencies: - '@azure/abort-controller': 2.1.2 + '@azure/abort-controller': 2.2.0 '@azure/core-auth': 1.11.0 '@azure/core-rest-pipeline': 1.25.0 '@azure/core-tracing': 1.4.0 @@ -19098,8 +17604,8 @@ snapshots: '@azure-rest/maps-search@2.0.0-beta.3': dependencies: - '@azure-rest/core-client': 2.4.0 - '@azure/core-auth': 1.9.0 + '@azure-rest/core-client': 2.8.0 + '@azure/core-auth': 1.11.0 '@azure/core-lro': 2.7.2 '@azure/core-rest-pipeline': 1.25.0 '@azure/logger': 1.4.0 @@ -19112,49 +17618,40 @@ snapshots: dependencies: tslib: 2.8.1 - '@azure/abort-controller@2.1.2': - dependencies: - tslib: 2.8.1 - '@azure/abort-controller@2.2.0': dependencies: tslib: 2.8.1 - '@azure/ai-projects@2.2.0(ws@8.21.1)(zod@3.25.76)': - dependencies: - '@azure-rest/core-client': 2.4.0 - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 - '@azure/core-lro': 3.2.0 - '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-sse': 2.2.0 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 + '@azure/ai-projects@2.3.1(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76)': + dependencies: + '@azure-rest/core-client': 2.8.0 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-lro': 3.4.0 + '@azure/core-paging': 1.7.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-sse': 2.4.0 + '@azure/core-util': 1.14.0 '@azure/identity': 4.13.1 - '@azure/logger': 1.3.0 - '@azure/storage-blob': 12.27.0 - openai: 6.41.0(ws@8.21.1)(zod@3.25.76) + '@azure/logger': 1.4.0 + '@azure/storage-blob': 12.33.0 + '@opentelemetry/api': 1.9.1 + openai: 6.48.0(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76) tslib: 2.8.1 transitivePeerDependencies: + - '@aws-sdk/credential-provider-node' + - '@smithy/hash-node' + - '@smithy/signature-v4' - supports-color - ws - zod '@azure/arm-authorization@9.0.0': dependencies: - '@azure/core-auth': 1.9.0 + '@azure/core-auth': 1.11.0 '@azure/core-client': 1.11.0 - '@azure/core-paging': 1.6.2 + '@azure/core-paging': 1.7.0 '@azure/core-rest-pipeline': 1.25.0 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - - '@azure/core-auth@1.10.1': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-util': 1.13.1 tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -19167,24 +17664,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-auth@1.9.0': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-util': 1.11.0 - tslib: 2.8.1 - - '@azure/core-client@1.10.1': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 - '@azure/logger': 1.4.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@azure/core-client@1.11.0': dependencies: '@azure/abort-controller': 2.2.0 @@ -19193,85 +17672,37 @@ snapshots: '@azure/core-tracing': 1.4.0 '@azure/core-util': 1.14.0 '@azure/logger': 1.4.0 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - - '@azure/core-client@1.9.2': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-rest-pipeline': 1.20.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/logger': 1.2.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/core-http-compat@2.1.2': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-client': 1.9.2 - '@azure/core-rest-pipeline': 1.20.0 - transitivePeerDependencies: - - supports-color - - '@azure/core-http-compat@2.5.0(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.22.2)': + '@azure/core-http-compat@2.5.0(@azure/core-client@1.11.0)(@azure/core-rest-pipeline@1.25.0)': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-client': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 + '@azure/abort-controller': 2.2.0 + '@azure/core-client': 1.11.0 + '@azure/core-rest-pipeline': 1.25.0 '@azure/core-lro@2.7.2': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-util': 1.11.0 + '@azure/abort-controller': 2.2.0 + '@azure/core-util': 1.14.0 '@azure/logger': 1.4.0 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - - '@azure/core-lro@3.2.0': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-util': 1.13.1 - '@azure/logger': 1.3.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/core-paging@1.6.2': - dependencies: - tslib: 2.8.1 - - '@azure/core-paging@1.7.0': - dependencies: - tslib: 2.8.1 - - '@azure/core-rest-pipeline@1.20.0': + '@azure/core-lro@3.4.0': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/logger': 1.2.0 - '@typespec/ts-http-runtime': 0.2.2 + '@azure/abort-controller': 2.2.0 + '@azure/core-util': 1.14.0 + '@azure/logger': 1.4.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/core-rest-pipeline@1.22.2': + '@azure/core-paging@1.7.0': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 - '@azure/logger': 1.4.0 - '@typespec/ts-http-runtime': 0.3.3 tslib: 2.8.1 - transitivePeerDependencies: - - supports-color '@azure/core-rest-pipeline@1.25.0': dependencies: @@ -19285,15 +17716,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-sse@2.2.0': - dependencies: - tslib: 2.8.1 - - '@azure/core-tracing@1.2.0': - dependencies: - tslib: 2.8.1 - - '@azure/core-tracing@1.3.1': + '@azure/core-sse@2.4.0': dependencies: tslib: 2.8.1 @@ -19301,19 +17724,6 @@ snapshots: dependencies: tslib: 2.8.1 - '@azure/core-util@1.11.0': - dependencies: - '@azure/abort-controller': 2.1.2 - tslib: 2.8.1 - - '@azure/core-util@1.13.1': - dependencies: - '@azure/abort-controller': 2.1.2 - '@typespec/ts-http-runtime': 0.3.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@azure/core-util@1.14.0': dependencies: '@azure/abort-controller': 2.2.0 @@ -19322,76 +17732,59 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/core-xml@1.5.0': + '@azure/core-xml@1.6.0': dependencies: fast-xml-parser: 5.10.1 tslib: 2.8.1 - '@azure/cosmos@4.9.1(@azure/core-client@1.10.1)': + '@azure/cosmos@4.10.0': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/keyvault-keys': 4.10.0(@azure/core-client@1.10.1) + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/keyvault-keys': 4.10.2 '@azure/logger': 1.4.0 fast-json-stable-stringify: 2.1.0 priorityqueuejs: 2.0.0 semaphore: 1.1.0 tslib: 2.8.1 transitivePeerDependencies: - - '@azure/core-client' - supports-color '@azure/identity-broker@1.4.0': dependencies: - '@azure/core-auth': 1.10.1 - '@azure/identity': 4.10.0 - '@azure/msal-node': 5.2.0 - '@azure/msal-node-extensions': 5.2.0 + '@azure/core-auth': 1.11.0 + '@azure/identity': 4.13.1 + '@azure/msal-node': 5.4.2 + '@azure/msal-node-extensions': 5.3.3 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/identity-cache-persistence@1.2.0': + '@azure/identity-cache-persistence@1.3.0': dependencies: - '@azure/core-auth': 1.9.0 - '@azure/identity': 4.10.0 - '@azure/msal-node': 3.5.3 - '@azure/msal-node-extensions': 1.5.13 + '@azure/core-auth': 1.11.0 + '@azure/identity': 4.13.1 + '@azure/msal-node': 5.4.2 + '@azure/msal-node-extensions': 5.3.3 keytar: 7.9.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/identity@4.10.0': - dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-client': 1.9.2 - '@azure/core-rest-pipeline': 1.20.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/logger': 1.2.0 - '@azure/msal-browser': 4.12.0 - '@azure/msal-node': 3.5.3 - open: 10.1.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@azure/identity@4.13.1': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 '@azure/core-client': 1.11.0 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 - '@azure/logger': 1.3.0 - '@azure/msal-browser': 5.11.0 - '@azure/msal-node': 5.2.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/logger': 1.4.0 + '@azure/msal-browser': 5.17.1 + '@azure/msal-node': 5.4.2 open: 10.2.0 tslib: 2.8.1 transitivePeerDependencies: @@ -19399,14 +17792,14 @@ snapshots: '@azure/keyvault-certificates@4.10.3': dependencies: - '@azure-rest/core-client': 2.4.0 - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 + '@azure-rest/core-client': 2.8.0 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 '@azure/core-lro': 2.7.2 - '@azure/core-paging': 1.6.2 + '@azure/core-paging': 1.7.0 '@azure/core-rest-pipeline': 1.25.0 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 '@azure/keyvault-common': 2.1.0 '@azure/logger': 1.4.0 tslib: 2.8.1 @@ -19415,161 +17808,141 @@ snapshots: '@azure/keyvault-common@2.1.0': dependencies: - '@azure-rest/core-client': 2.4.0 - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 - '@azure/logger': 1.4.0 - tslib: 2.8.1 - transitivePeerDependencies: + '@azure-rest/core-client': 2.8.0 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/logger': 1.4.0 + tslib: 2.8.1 + transitivePeerDependencies: - supports-color - '@azure/keyvault-keys@4.10.0(@azure/core-client@1.10.1)': + '@azure/keyvault-keys@4.10.2': dependencies: '@azure-rest/core-client': 2.8.0 - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-http-compat': 2.5.0(@azure/core-client@1.10.1)(@azure/core-rest-pipeline@1.22.2) + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 '@azure/core-lro': 2.7.2 '@azure/core-paging': 1.7.0 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 '@azure/keyvault-common': 2.1.0 '@azure/logger': 1.4.0 tslib: 2.8.1 transitivePeerDependencies: - - '@azure/core-client' - supports-color '@azure/keyvault-secrets@4.11.2': dependencies: - '@azure-rest/core-client': 2.4.0 - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.10.1 + '@azure-rest/core-client': 2.8.0 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 '@azure/core-lro': 2.7.2 - '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.22.2 - '@azure/core-tracing': 1.3.1 - '@azure/core-util': 1.13.1 + '@azure/core-paging': 1.7.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 '@azure/keyvault-common': 2.1.0 '@azure/logger': 1.4.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/logger@1.2.0': - dependencies: - '@typespec/ts-http-runtime': 0.2.2 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - - '@azure/logger@1.3.0': - dependencies: - '@typespec/ts-http-runtime': 0.3.3 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@azure/logger@1.4.0': dependencies: '@typespec/ts-http-runtime': 0.3.7 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - supports-color '@azure/maps-common@1.0.0-beta.2': dependencies: '@azure/abort-controller': 1.1.0 - '@azure/core-auth': 1.9.0 + '@azure/core-auth': 1.11.0 '@azure/core-client': 1.11.0 '@azure/core-lro': 2.7.2 '@azure/core-rest-pipeline': 1.25.0 transitivePeerDependencies: - supports-color - '@azure/msal-browser@4.12.0': - dependencies: - '@azure/msal-common': 15.6.0 - - '@azure/msal-browser@5.11.0': + '@azure/msal-browser@5.17.1': dependencies: - '@azure/msal-common': 16.6.2 - - '@azure/msal-common@15.6.0': {} + '@azure/msal-common': 16.11.2 - '@azure/msal-common@16.6.0': {} + '@azure/msal-common@15.17.0': {} - '@azure/msal-common@16.6.2': {} + '@azure/msal-common@16.11.2': {} - '@azure/msal-node-extensions@1.5.13': + '@azure/msal-node-extensions@1.5.32': dependencies: - '@azure/msal-common': 15.6.0 - '@azure/msal-node-runtime': 0.18.2 + '@azure/msal-common': 15.17.0 + '@azure/msal-node-runtime': 0.20.5 keytar: 7.9.0 - '@azure/msal-node-extensions@5.2.0': + '@azure/msal-node-extensions@5.3.3': dependencies: - '@azure/msal-common': 16.6.0 + '@azure/msal-common': 16.11.2 '@azure/msal-node-runtime': 0.20.5 keytar: 7.9.0 - '@azure/msal-node-runtime@0.18.2': {} - '@azure/msal-node-runtime@0.20.5': {} - '@azure/msal-node@3.5.3': - dependencies: - '@azure/msal-common': 15.6.0 - jsonwebtoken: 9.0.2 - uuid: 8.3.2 - - '@azure/msal-node@5.2.0': + '@azure/msal-node@5.4.2': dependencies: - '@azure/msal-common': 16.6.0 - jsonwebtoken: 9.0.2 + '@azure/msal-common': 16.11.2 + jsonwebtoken: 9.0.3 '@azure/search-documents@12.1.0': dependencies: - '@azure/core-auth': 1.9.0 - '@azure/core-client': 1.9.2 - '@azure/core-http-compat': 2.1.2 - '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.20.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/logger': 1.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-client': 1.11.0 + '@azure/core-http-compat': 2.5.0(@azure/core-client@1.11.0)(@azure/core-rest-pipeline@1.25.0) + '@azure/core-paging': 1.7.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/logger': 1.4.0 events: 3.3.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@azure/storage-blob@12.27.0': + '@azure/storage-blob@12.33.0': dependencies: - '@azure/abort-controller': 2.1.2 - '@azure/core-auth': 1.9.0 - '@azure/core-client': 1.9.2 - '@azure/core-http-compat': 2.1.2 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-client': 1.11.0 + '@azure/core-http-compat': 2.5.0(@azure/core-client@1.11.0)(@azure/core-rest-pipeline@1.25.0) '@azure/core-lro': 2.7.2 - '@azure/core-paging': 1.6.2 - '@azure/core-rest-pipeline': 1.20.0 - '@azure/core-tracing': 1.2.0 - '@azure/core-util': 1.11.0 - '@azure/core-xml': 1.5.0 + '@azure/core-paging': 1.7.0 + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/core-xml': 1.6.0 '@azure/logger': 1.4.0 + '@azure/storage-common': 12.4.1(@azure/core-client@1.11.0) events: 3.3.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@babel/code-frame@7.27.1': + '@azure/storage-common@12.4.1(@azure/core-client@1.11.0)': dependencies: - '@babel/helper-validator-identifier': 7.29.7 - js-tokens: 4.0.0 - picocolors: 1.1.1 + '@azure/abort-controller': 2.2.0 + '@azure/core-auth': 1.11.0 + '@azure/core-http-compat': 2.5.0(@azure/core-client@1.11.0)(@azure/core-rest-pipeline@1.25.0) + '@azure/core-rest-pipeline': 1.25.0 + '@azure/core-tracing': 1.4.0 + '@azure/core-util': 1.14.0 + '@azure/logger': 1.4.0 + events: 3.3.0 + tslib: 2.8.1 + transitivePeerDependencies: + - '@azure/core-client' + - supports-color '@babel/code-frame@7.29.7': dependencies: @@ -19633,8 +18006,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-plugin-utils@7.27.1': {} - '@babel/helper-plugin-utils@7.29.7': {} '@babel/helper-string-parser@7.29.7': {} @@ -19687,7 +18058,7 @@ snapshots: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.29.7)': + '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 @@ -19732,19 +18103,15 @@ snapshots: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.29.7)': + '@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.29.7)': + '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 - '@babel/helper-plugin-utils': 7.27.1 - - '@babel/runtime@7.27.0': - dependencies: - regenerator-runtime: 0.14.0 + '@babel/helper-plugin-utils': 7.29.7 '@babel/runtime@7.29.7': {} @@ -19789,11 +18156,11 @@ snapshots: '@cliqz/adblocker-extended-selectors@1.34.0': {} - '@cliqz/adblocker-puppeteer@1.23.8(puppeteer@24.37.5(typescript@5.4.5))': + '@cliqz/adblocker-puppeteer@1.23.8(puppeteer@24.43.1(typescript@5.4.5))': dependencies: '@cliqz/adblocker': 1.34.0 '@cliqz/adblocker-content': 1.34.0 - puppeteer: 24.37.5(typescript@5.4.5) + puppeteer: 24.43.1(typescript@5.4.5) tldts-experimental: 5.7.112 '@cliqz/adblocker@1.34.0': @@ -19804,171 +18171,175 @@ snapshots: '@remusao/small': 1.3.0 '@remusao/smaz': 1.10.0 '@types/chrome': 0.0.278 - '@types/firefox-webext-browser': 120.0.4 + '@types/firefox-webext-browser': 120.0.5 tldts-experimental: 6.1.86 - '@codemirror/autocomplete@6.18.6': - dependencies: - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - '@lezer/common': 1.5.2 - '@codemirror/autocomplete@6.20.3': dependencies: - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 - '@codemirror/commands@6.8.1': + '@codemirror/commands@6.10.4': dependencies: - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - '@lezer/common': 1.2.3 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 + '@lezer/common': 1.5.2 '@codemirror/lang-angular@0.1.4': dependencies: - '@codemirror/lang-html': 6.4.9 - '@codemirror/lang-javascript': 6.2.4 - '@codemirror/language': 6.11.1 + '@codemirror/lang-html': 6.4.11 + '@codemirror/lang-javascript': 6.2.5 + '@codemirror/language': 6.12.4 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@codemirror/lang-cpp@6.0.2': + '@codemirror/lang-cpp@6.0.3': dependencies: - '@codemirror/language': 6.11.1 - '@lezer/cpp': 1.1.3 + '@codemirror/language': 6.12.4 + '@lezer/cpp': 1.1.6 '@codemirror/lang-css@6.3.1': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 - '@lezer/css': 1.2.1 + '@lezer/css': 1.3.4 '@codemirror/lang-go@6.0.1': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 '@lezer/go': 1.0.1 - '@codemirror/lang-html@6.4.9': + '@codemirror/lang-html@6.4.11': dependencies: '@codemirror/autocomplete': 6.20.3 '@codemirror/lang-css': 6.3.1 - '@codemirror/lang-javascript': 6.2.4 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/lang-javascript': 6.2.5 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 - '@lezer/css': 1.2.1 - '@lezer/html': 1.3.10 + '@lezer/css': 1.3.4 + '@lezer/html': 1.3.13 - '@codemirror/lang-java@6.0.1': + '@codemirror/lang-java@6.0.2': dependencies: - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@lezer/java': 1.1.3 - '@codemirror/lang-javascript@6.2.4': + '@codemirror/lang-javascript@6.2.5': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@codemirror/lint': 6.9.7 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 - '@lezer/javascript': 1.5.1 + '@lezer/javascript': 1.5.4 + + '@codemirror/lang-jinja@6.0.1': + dependencies: + '@codemirror/autocomplete': 6.20.3 + '@codemirror/lang-html': 6.4.11 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 + '@lezer/common': 1.5.2 + '@lezer/highlight': 1.2.3 + '@lezer/lr': 1.4.10 - '@codemirror/lang-json@6.0.1': + '@codemirror/lang-json@6.0.2': dependencies: - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@lezer/json': 1.0.3 '@codemirror/lang-less@6.0.2': dependencies: '@codemirror/lang-css': 6.3.1 - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@codemirror/lang-liquid@6.2.3': + '@codemirror/lang-liquid@6.3.2': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/lang-html': 6.4.9 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/lang-html': 6.4.11 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@codemirror/lang-markdown@6.3.3': + '@codemirror/lang-markdown@6.5.1': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/lang-html': 6.4.9 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/lang-html': 6.4.11 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 - '@lezer/markdown': 1.4.3 + '@lezer/markdown': 1.7.2 - '@codemirror/lang-php@6.0.1': + '@codemirror/lang-php@6.0.2': dependencies: - '@codemirror/lang-html': 6.4.9 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/lang-html': 6.4.11 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 - '@lezer/php': 1.0.2 + '@lezer/php': 1.0.5 '@codemirror/lang-python@6.2.1': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 - '@lezer/python': 1.1.18 + '@lezer/python': 1.1.19 - '@codemirror/lang-rust@6.0.1': + '@codemirror/lang-rust@6.0.2': dependencies: - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@lezer/rust': 1.0.2 '@codemirror/lang-sass@6.0.2': dependencies: '@codemirror/lang-css': 6.3.1 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 '@lezer/sass': 1.1.0 - '@codemirror/lang-sql@6.9.0': + '@codemirror/lang-sql@6.10.0': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 '@codemirror/lang-vue@0.1.3': dependencies: - '@codemirror/lang-html': 6.4.9 - '@codemirror/lang-javascript': 6.2.4 - '@codemirror/language': 6.11.1 + '@codemirror/lang-html': 6.4.11 + '@codemirror/lang-javascript': 6.2.5 + '@codemirror/language': 6.12.4 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 '@codemirror/lang-wast@6.0.2': dependencies: - '@codemirror/language': 6.11.1 + '@codemirror/language': 6.12.4 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 @@ -19976,99 +18347,83 @@ snapshots: '@codemirror/lang-xml@6.1.0': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 '@lezer/common': 1.5.2 '@lezer/xml': 1.0.6 - '@codemirror/lang-yaml@6.1.2': + '@codemirror/lang-yaml@6.1.3': dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/yaml': 1.0.3 + '@lezer/yaml': 1.0.4 - '@codemirror/language-data@6.5.1': + '@codemirror/language-data@6.5.2': dependencies: '@codemirror/lang-angular': 0.1.4 - '@codemirror/lang-cpp': 6.0.2 + '@codemirror/lang-cpp': 6.0.3 '@codemirror/lang-css': 6.3.1 '@codemirror/lang-go': 6.0.1 - '@codemirror/lang-html': 6.4.9 - '@codemirror/lang-java': 6.0.1 - '@codemirror/lang-javascript': 6.2.4 - '@codemirror/lang-json': 6.0.1 + '@codemirror/lang-html': 6.4.11 + '@codemirror/lang-java': 6.0.2 + '@codemirror/lang-javascript': 6.2.5 + '@codemirror/lang-jinja': 6.0.1 + '@codemirror/lang-json': 6.0.2 '@codemirror/lang-less': 6.0.2 - '@codemirror/lang-liquid': 6.2.3 - '@codemirror/lang-markdown': 6.3.3 - '@codemirror/lang-php': 6.0.1 + '@codemirror/lang-liquid': 6.3.2 + '@codemirror/lang-markdown': 6.5.1 + '@codemirror/lang-php': 6.0.2 '@codemirror/lang-python': 6.2.1 - '@codemirror/lang-rust': 6.0.1 + '@codemirror/lang-rust': 6.0.2 '@codemirror/lang-sass': 6.0.2 - '@codemirror/lang-sql': 6.9.0 + '@codemirror/lang-sql': 6.10.0 '@codemirror/lang-vue': 0.1.3 '@codemirror/lang-wast': 6.0.2 '@codemirror/lang-xml': 6.1.0 - '@codemirror/lang-yaml': 6.1.2 - '@codemirror/language': 6.11.1 - '@codemirror/legacy-modes': 6.5.1 - - '@codemirror/language@6.11.1': - dependencies: - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - '@lezer/common': 1.2.3 - '@lezer/highlight': 1.2.1 - '@lezer/lr': 1.4.2 - style-mod: 4.1.2 + '@codemirror/lang-yaml': 6.1.3 + '@codemirror/language': 6.12.4 + '@codemirror/legacy-modes': 6.5.3 - '@codemirror/legacy-modes@6.5.1': + '@codemirror/language@6.12.4': dependencies: - '@codemirror/language': 6.11.1 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 + '@lezer/common': 1.5.2 + '@lezer/highlight': 1.2.3 + '@lezer/lr': 1.4.10 + style-mod: 4.1.3 - '@codemirror/lint@6.8.5': + '@codemirror/legacy-modes@6.5.3': dependencies: - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - crelt: 1.0.7 + '@codemirror/language': 6.12.4 '@codemirror/lint@6.9.7': dependencies: - '@codemirror/state': 6.5.2 + '@codemirror/state': 6.7.1 '@codemirror/view': 6.43.6 crelt: 1.0.7 - '@codemirror/search@6.5.11': + '@codemirror/search@6.7.1': dependencies: - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 crelt: 1.0.7 - '@codemirror/state@6.5.2': - dependencies: - '@marijn/find-cluster-break': 1.0.2 - '@codemirror/state@6.7.1': dependencies: '@marijn/find-cluster-break': 1.0.3 - '@codemirror/theme-one-dark@6.1.2': - dependencies: - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - '@lezer/highlight': 1.2.1 - - '@codemirror/view@6.37.2': + '@codemirror/theme-one-dark@6.1.3': dependencies: - '@codemirror/state': 6.5.2 - crelt: 1.0.6 - style-mod: 4.1.2 - w3c-keyname: 2.2.8 + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 + '@lezer/highlight': 1.2.3 '@codemirror/view@6.43.6': dependencies: @@ -20084,17 +18439,17 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@csstools/color-helpers@6.0.2': {} + '@csstools/color-helpers@6.1.0': {} - '@csstools/css-calc@3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': + '@csstools/css-calc@3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/css-color-parser@4.0.2(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': + '@csstools/css-color-parser@4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: - '@csstools/color-helpers': 6.0.2 - '@csstools/css-calc': 3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/color-helpers': 6.1.0 + '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 @@ -20102,7 +18457,7 @@ snapshots: dependencies: '@csstools/css-tokenizer': 4.0.0 - '@csstools/css-syntax-patches-for-csstree@1.1.1(css-tree@3.2.1)': + '@csstools/css-syntax-patches-for-csstree@1.1.7(css-tree@3.2.1)': optionalDependencies: css-tree: 3.2.1 @@ -20122,18 +18477,17 @@ snapshots: '@discoveryjs/json-ext@1.1.0': {} - '@elastic/elasticsearch@9.3.4(supports-color@8.1.1)': + '@elastic/elasticsearch@9.4.2(supports-color@8.1.1)': dependencies: - '@elastic/transport': 9.3.5(supports-color@8.1.1) - apache-arrow: 18.1.0 + '@elastic/transport': 9.3.7(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@elastic/transport@9.3.5(supports-color@8.1.1)': + '@elastic/transport@9.3.7(supports-color@8.1.1)': dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 2.8.0(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.10.0(@opentelemetry/api@1.9.1) debug: 4.4.3(supports-color@8.1.1) hpagent: 1.2.0 ms: 2.1.3 @@ -20206,7 +18560,7 @@ snapshots: fs-extra: 10.1.0 isbinaryfile: 4.0.10 minimist: 1.2.8 - plist: 3.1.0 + plist: 3.1.1 transitivePeerDependencies: - supports-color @@ -20227,9 +18581,9 @@ snapshots: '@malept/cross-spawn-promise': 2.0.0 debug: 4.4.3(supports-color@8.1.1) dir-compare: 4.2.0 - fs-extra: 11.4.0 + fs-extra: 11.3.6 minimatch: 9.0.9 - plist: 3.1.0 + plist: 3.1.1 transitivePeerDependencies: - supports-color @@ -20244,29 +18598,13 @@ snapshots: - supports-color optional: true - '@emnapi/core@1.11.0': - dependencies: - '@emnapi/wasi-threads': 1.2.2 - tslib: 2.8.1 - optional: true - - '@emnapi/core@1.11.1': + '@emnapi/core@1.11.2': dependencies: '@emnapi/wasi-threads': 1.2.2 tslib: 2.8.1 optional: true - '@emnapi/runtime@1.11.0': - dependencies: - tslib: 2.8.1 - optional: true - - '@emnapi/runtime@1.11.1': - dependencies: - tslib: 2.8.1 - optional: true - - '@emnapi/runtime@1.4.0': + '@emnapi/runtime@1.11.2': dependencies: tslib: 2.8.1 optional: true @@ -20283,245 +18621,167 @@ snapshots: '@esbuild/aix-ppc64@0.25.12': optional: true - '@esbuild/aix-ppc64@0.27.7': - optional: true - '@esbuild/aix-ppc64@0.28.1': optional: true '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm64@0.27.7': - optional: true - '@esbuild/android-arm64@0.28.1': optional: true '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-arm@0.27.7': - optional: true - '@esbuild/android-arm@0.28.1': optional: true '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-x64@0.27.7': - optional: true - '@esbuild/android-x64@0.28.1': optional: true '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.27.7': - optional: true - '@esbuild/darwin-arm64@0.28.1': optional: true '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.27.7': - optional: true - '@esbuild/darwin-x64@0.28.1': optional: true '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.27.7': - optional: true - '@esbuild/freebsd-arm64@0.28.1': optional: true '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.27.7': - optional: true - '@esbuild/freebsd-x64@0.28.1': optional: true '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm64@0.27.7': - optional: true - '@esbuild/linux-arm64@0.28.1': optional: true '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-arm@0.27.7': - optional: true - '@esbuild/linux-arm@0.28.1': optional: true '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-ia32@0.27.7': - optional: true - '@esbuild/linux-ia32@0.28.1': optional: true '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-loong64@0.27.7': - optional: true - '@esbuild/linux-loong64@0.28.1': optional: true '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-mips64el@0.27.7': - optional: true - '@esbuild/linux-mips64el@0.28.1': optional: true '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-ppc64@0.27.7': - optional: true - '@esbuild/linux-ppc64@0.28.1': optional: true '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.27.7': - optional: true - '@esbuild/linux-riscv64@0.28.1': optional: true '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-s390x@0.27.7': - optional: true - '@esbuild/linux-s390x@0.28.1': optional: true '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/linux-x64@0.27.7': - optional: true - '@esbuild/linux-x64@0.28.1': optional: true '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.27.7': - optional: true - '@esbuild/netbsd-arm64@0.28.1': optional: true '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.27.7': - optional: true - '@esbuild/netbsd-x64@0.28.1': optional: true '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.27.7': - optional: true - '@esbuild/openbsd-arm64@0.28.1': optional: true '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.27.7': - optional: true - '@esbuild/openbsd-x64@0.28.1': optional: true '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/openharmony-arm64@0.27.7': - optional: true - '@esbuild/openharmony-arm64@0.28.1': optional: true '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/sunos-x64@0.27.7': - optional: true - '@esbuild/sunos-x64@0.28.1': optional: true '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-arm64@0.27.7': - optional: true - '@esbuild/win32-arm64@0.28.1': optional: true '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-ia32@0.27.7': - optional: true - '@esbuild/win32-ia32@0.28.1': optional: true '@esbuild/win32-x64@0.25.12': optional: true - '@esbuild/win32-x64@0.27.7': - optional: true - '@esbuild/win32-x64@0.28.1': optional: true - '@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))': + '@eslint-community/eslint-utils@4.10.1(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))': dependencies: - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.7.0))': + '@eslint-community/eslint-utils@4.10.1(eslint@10.7.0(jiti@2.7.0))': dependencies: - eslint: 10.6.0(jiti@2.7.0) + eslint: 10.7.0(jiti@2.7.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} @@ -20530,7 +18790,7 @@ snapshots: dependencies: '@eslint/object-schema': 3.0.5 debug: 4.4.3(supports-color@8.1.1) - minimatch: 10.2.4 + minimatch: 10.2.5 transitivePeerDependencies: - supports-color @@ -20553,43 +18813,27 @@ snapshots: dependencies: '@types/chai': 4.3.20 - '@exodus/bytes@1.15.0': {} + '@exodus/bytes@1.15.1': {} - '@floating-ui/core@1.7.1': + '@floating-ui/core@1.8.0': dependencies: - '@floating-ui/utils': 0.2.9 + '@floating-ui/utils': 0.2.12 - '@floating-ui/dom@1.7.1': + '@floating-ui/dom@1.8.0': dependencies: - '@floating-ui/core': 1.7.1 - '@floating-ui/utils': 0.2.9 + '@floating-ui/core': 1.8.0 + '@floating-ui/utils': 0.2.12 - '@floating-ui/utils@0.2.9': {} - - '@fluid-tools/version-tools@0.57.0(@types/node@22.15.18)(supports-color@8.1.1)': - dependencies: - '@oclif/core': 4.11.14 - '@oclif/plugin-autocomplete': 3.2.24(supports-color@8.1.1) - '@oclif/plugin-commands': 4.1.21 - '@oclif/plugin-help': 6.2.53 - '@oclif/plugin-not-found': 3.2.65(@types/node@22.15.18) - semver: 7.8.4 - table: 6.9.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - react-devtools-core - - supports-color - - utf-8-validate + '@floating-ui/utils@0.2.12': {} - '@fluid-tools/version-tools@0.57.0(@types/node@22.20.1)': + '@fluid-tools/version-tools@0.57.0(@types/node@22.20.1)(supports-color@8.1.1)': dependencies: - '@oclif/core': 4.11.14 - '@oclif/plugin-autocomplete': 3.2.24(supports-color@8.1.1) - '@oclif/plugin-commands': 4.1.21 + '@oclif/core': 4.13.0 + '@oclif/plugin-autocomplete': 3.2.53(supports-color@8.1.1) + '@oclif/plugin-commands': 4.1.60 '@oclif/plugin-help': 6.2.53 - '@oclif/plugin-not-found': 3.2.65(@types/node@22.20.1) - semver: 7.8.4 + '@oclif/plugin-not-found': 3.2.88(@types/node@22.20.1) + semver: 7.8.5 table: 6.9.0 transitivePeerDependencies: - '@types/node' @@ -20598,43 +18842,9 @@ snapshots: - supports-color - utf-8-validate - '@fluidframework/build-tools@0.57.0(@types/node@22.15.18)(supports-color@8.1.1)': - dependencies: - '@fluid-tools/version-tools': 0.57.0(@types/node@22.15.18)(supports-color@8.1.1) - '@manypkg/get-packages': 2.2.2 - async: 3.2.6 - cosmiconfig: 8.3.6(typescript@5.4.5) - date-fns: 2.30.0 - debug: 4.4.3(supports-color@8.1.1) - detect-indent: 6.1.0 - find-up: 7.0.0 - fs-extra: 11.3.6 - glob: 7.2.3 - globby: 11.1.0 - ignore: 5.3.2 - json5: 2.2.3 - lodash.isequal: 4.5.0 - multimatch: 5.0.0 - picocolors: 1.1.1 - picomatch: 2.3.2 - picospinner: 2.0.0 - rimraf: 4.4.1 - semver: 7.8.4 - sort-package-json: 1.57.0 - ts-deepmerge: 7.0.2 - type-fest: 2.19.0 - typescript: 5.4.5 - yaml: 2.9.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - react-devtools-core - - supports-color - - utf-8-validate - - '@fluidframework/build-tools@0.57.0(@types/node@22.20.1)': + '@fluidframework/build-tools@0.57.0(@types/node@22.20.1)(supports-color@8.1.1)': dependencies: - '@fluid-tools/version-tools': 0.57.0(@types/node@22.20.1) + '@fluid-tools/version-tools': 0.57.0(@types/node@22.20.1)(supports-color@8.1.1) '@manypkg/get-packages': 2.2.2 async: 3.2.6 cosmiconfig: 8.3.6(typescript@5.4.5) @@ -20651,11 +18861,11 @@ snapshots: multimatch: 5.0.0 picocolors: 1.1.1 picomatch: 2.3.2 - picospinner: 2.0.0 + picospinner: 2.1.0 rimraf: 4.4.1 - semver: 7.8.4 + semver: 7.8.5 sort-package-json: 1.57.0 - ts-deepmerge: 7.0.2 + ts-deepmerge: 7.0.3 type-fest: 2.19.0 typescript: 5.4.5 yaml: 2.9.0 @@ -20666,56 +18876,56 @@ snapshots: - supports-color - utf-8-validate - '@fontsource/lato@5.2.5': {} + '@fontsource/lato@5.3.0': {} - '@github/copilot-darwin-arm64@1.0.69': + '@github/copilot-darwin-arm64@1.0.73': optional: true - '@github/copilot-darwin-x64@1.0.69': + '@github/copilot-darwin-x64@1.0.73': optional: true - '@github/copilot-linux-arm64@1.0.69': + '@github/copilot-linux-arm64@1.0.73': optional: true - '@github/copilot-linux-x64@1.0.69': + '@github/copilot-linux-x64@1.0.73': optional: true - '@github/copilot-linuxmusl-arm64@1.0.69': + '@github/copilot-linuxmusl-arm64@1.0.73': optional: true - '@github/copilot-linuxmusl-x64@1.0.69': + '@github/copilot-linuxmusl-x64@1.0.73': optional: true '@github/copilot-sdk@1.0.5': dependencies: - '@github/copilot': 1.0.69 + '@github/copilot': 1.0.73 vscode-jsonrpc: 8.2.1 zod: 4.4.3 - '@github/copilot-win32-arm64@1.0.69': + '@github/copilot-win32-arm64@1.0.73': optional: true - '@github/copilot-win32-x64@1.0.69': + '@github/copilot-win32-x64@1.0.73': optional: true - '@github/copilot@1.0.69': + '@github/copilot@1.0.73': dependencies: detect-libc: 2.1.2 optionalDependencies: - '@github/copilot-darwin-arm64': 1.0.69 - '@github/copilot-darwin-x64': 1.0.69 - '@github/copilot-linux-arm64': 1.0.69 - '@github/copilot-linux-x64': 1.0.69 - '@github/copilot-linuxmusl-arm64': 1.0.69 - '@github/copilot-linuxmusl-x64': 1.0.69 - '@github/copilot-win32-arm64': 1.0.69 - '@github/copilot-win32-x64': 1.0.69 + '@github/copilot-darwin-arm64': 1.0.73 + '@github/copilot-darwin-x64': 1.0.73 + '@github/copilot-linux-arm64': 1.0.73 + '@github/copilot-linux-x64': 1.0.73 + '@github/copilot-linuxmusl-arm64': 1.0.73 + '@github/copilot-linuxmusl-x64': 1.0.73 + '@github/copilot-win32-arm64': 1.0.73 + '@github/copilot-win32-x64': 1.0.73 '@hapi/bourne@3.0.0': {} - '@hono/node-server@1.19.15(hono@4.12.29)': + '@hono/node-server@1.19.14(hono@4.12.31)': dependencies: - hono: 4.12.29 + hono: 4.12.31 '@huggingface/jinja@0.5.9': optional: true @@ -20746,7 +18956,7 @@ snapshots: '@iconify/types@2.0.0': {} - '@iconify/utils@3.1.3': + '@iconify/utils@3.1.4': dependencies: '@antfu/install-pkg': 1.1.0 '@iconify/types': 2.0.0 @@ -20901,12 +19111,12 @@ snapshots: '@img/sharp-wasm32@0.33.5': dependencies: - '@emnapi/runtime': 1.4.0 + '@emnapi/runtime': 1.11.2 optional: true '@img/sharp-wasm32@0.34.5': dependencies: - '@emnapi/runtime': 1.11.1 + '@emnapi/runtime': 1.11.2 optional: true '@img/sharp-win32-arm64@0.34.5': @@ -20924,247 +19134,128 @@ snapshots: '@img/sharp-win32-x64@0.34.5': optional: true - '@inquirer/checkbox@4.2.1(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.15.18) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.15.18 + '@inquirer/ansi@1.0.2': {} - '@inquirer/checkbox@4.2.1(@types/node@22.20.1)': + '@inquirer/checkbox@4.3.2(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.20.1) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@22.20.1) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 22.20.1 - '@inquirer/confirm@5.1.15(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/confirm@5.1.15(@types/node@22.20.1)': + '@inquirer/confirm@5.1.21(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/core@10.1.15(@types/node@22.15.18)': + '@inquirer/core@10.3.2(@types/node@22.20.1)': dependencies: - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.15.18) - ansi-escapes: 4.3.2 + '@inquirer/ansi': 1.0.2 + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@22.20.1) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.2 + yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.15.18 + '@types/node': 22.20.1 - '@inquirer/core@10.1.15(@types/node@22.20.1)': + '@inquirer/editor@4.2.23(@types/node@22.20.1)': dependencies: - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.20.1) - ansi-escapes: 4.3.2 - cli-width: 4.1.0 - mute-stream: 2.0.0 - signal-exit: 4.1.0 - wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/external-editor': 1.0.3(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/editor@4.2.17(@types/node@22.15.18)': + '@inquirer/expand@4.0.23(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/external-editor': 1.0.1(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) + yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.15.18 + '@types/node': 22.20.1 - '@inquirer/editor@4.2.17(@types/node@22.20.1)': + '@inquirer/external-editor@1.0.3(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/external-editor': 1.0.1(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) + chardet: 2.2.0 + iconv-lite: 0.7.3 optionalDependencies: '@types/node': 22.20.1 - '@inquirer/expand@4.0.17(@types/node@22.15.18)': + '@inquirer/figures@1.0.15': {} + + '@inquirer/input@4.3.1(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/expand@4.0.17(@types/node@22.20.1)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.20.1 - - '@inquirer/external-editor@1.0.1(@types/node@22.15.18)': - dependencies: - chardet: 2.1.0 - iconv-lite: 0.6.3 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/external-editor@1.0.1(@types/node@22.20.1)': - dependencies: - chardet: 2.1.0 - iconv-lite: 0.6.3 - optionalDependencies: - '@types/node': 22.20.1 - - '@inquirer/figures@1.0.13': {} - - '@inquirer/input@4.2.1(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/input@4.2.1(@types/node@22.20.1)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/number@3.0.17(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/number@3.0.17(@types/node@22.20.1)': + '@inquirer/number@3.0.23(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/password@4.0.17(@types/node@22.15.18)': + '@inquirer/password@4.0.23(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - ansi-escapes: 4.3.2 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/password@4.0.17(@types/node@22.20.1)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) - ansi-escapes: 4.3.2 + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/prompts@7.8.3(@types/node@22.15.18)': - dependencies: - '@inquirer/checkbox': 4.2.1(@types/node@22.15.18) - '@inquirer/confirm': 5.1.15(@types/node@22.15.18) - '@inquirer/editor': 4.2.17(@types/node@22.15.18) - '@inquirer/expand': 4.0.17(@types/node@22.15.18) - '@inquirer/input': 4.2.1(@types/node@22.15.18) - '@inquirer/number': 3.0.17(@types/node@22.15.18) - '@inquirer/password': 4.0.17(@types/node@22.15.18) - '@inquirer/rawlist': 4.1.5(@types/node@22.15.18) - '@inquirer/search': 3.1.0(@types/node@22.15.18) - '@inquirer/select': 4.3.1(@types/node@22.15.18) - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/prompts@7.8.3(@types/node@22.20.1)': - dependencies: - '@inquirer/checkbox': 4.2.1(@types/node@22.20.1) - '@inquirer/confirm': 5.1.15(@types/node@22.20.1) - '@inquirer/editor': 4.2.17(@types/node@22.20.1) - '@inquirer/expand': 4.0.17(@types/node@22.20.1) - '@inquirer/input': 4.2.1(@types/node@22.20.1) - '@inquirer/number': 3.0.17(@types/node@22.20.1) - '@inquirer/password': 4.0.17(@types/node@22.20.1) - '@inquirer/rawlist': 4.1.5(@types/node@22.20.1) - '@inquirer/search': 3.1.0(@types/node@22.20.1) - '@inquirer/select': 4.3.1(@types/node@22.20.1) + '@inquirer/prompts@7.10.1(@types/node@22.20.1)': + dependencies: + '@inquirer/checkbox': 4.3.2(@types/node@22.20.1) + '@inquirer/confirm': 5.1.21(@types/node@22.20.1) + '@inquirer/editor': 4.2.23(@types/node@22.20.1) + '@inquirer/expand': 4.0.23(@types/node@22.20.1) + '@inquirer/input': 4.3.1(@types/node@22.20.1) + '@inquirer/number': 3.0.23(@types/node@22.20.1) + '@inquirer/password': 4.0.23(@types/node@22.20.1) + '@inquirer/rawlist': 4.1.11(@types/node@22.20.1) + '@inquirer/search': 3.2.2(@types/node@22.20.1) + '@inquirer/select': 4.4.2(@types/node@22.20.1) optionalDependencies: '@types/node': 22.20.1 - '@inquirer/rawlist@4.1.5(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/type': 3.0.8(@types/node@22.15.18) - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/rawlist@4.1.5(@types/node@22.20.1)': + '@inquirer/rawlist@4.1.11(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/type': 3.0.8(@types/node@22.20.1) - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/type': 3.0.10(@types/node@22.20.1) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 22.20.1 - '@inquirer/search@3.1.0(@types/node@22.15.18)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.15.18) - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/search@3.1.0(@types/node@22.20.1)': + '@inquirer/search@3.2.2(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.20.1) - yoctocolors-cjs: 2.1.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@22.20.1) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 22.20.1 - '@inquirer/select@4.3.1(@types/node@22.15.18)': + '@inquirer/select@4.4.2(@types/node@22.20.1)': dependencies: - '@inquirer/core': 10.1.15(@types/node@22.15.18) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.15.18) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/select@4.3.1(@types/node@22.20.1)': - dependencies: - '@inquirer/core': 10.1.15(@types/node@22.20.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.20.1) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.2 + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@22.20.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@22.20.1) + yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 22.20.1 - '@inquirer/type@3.0.8(@types/node@22.15.18)': - optionalDependencies: - '@types/node': 22.15.18 - - '@inquirer/type@3.0.8(@types/node@22.20.1)': + '@inquirer/type@3.0.10(@types/node@22.20.1)': optionalDependencies: '@types/node': 22.20.1 @@ -21177,6 +19268,8 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + '@isaacs/cliui@9.0.0': {} + '@isaacs/fs-minipass@4.0.1': dependencies: minipass: 7.1.3 @@ -21189,104 +19282,32 @@ snapshots: js-yaml: 3.15.0 resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} - '@istanbuljs/schema@0.1.6': {} '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 26.1.1 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 - - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 26.1.1 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.8 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 26.1.1 - ansi-escapes: 4.3.2 + '@types/node': 22.20.1 chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - jest-haste-map: 29.7.0 jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.8 - pretty-format: 29.7.0 slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5))': + '@jest/core@29.7.0(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5))': dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(supports-color@8.1.1) '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -21307,21 +19328,21 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5))': dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(supports-color@8.1.1) '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -21346,7 +19367,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -21364,7 +19385,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 22.15.18 + '@types/node': 22.20.1 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -21378,7 +19399,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/reporters@29.7.0': + '@jest/reporters@29.7.0(supports-color@8.1.1)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 29.7.0 @@ -21386,16 +19407,16 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.31 - '@types/node': 26.1.1 + '@types/node': 22.20.1 chalk: 4.1.2 - collect-v8-coverage: 1.0.2 + collect-v8-coverage: 1.0.3 exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) istanbul-reports: 3.2.0 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -21422,7 +19443,7 @@ snapshots: '@jest/console': 29.7.0 '@jest/types': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 + collect-v8-coverage: 1.0.3 '@jest/test-sequencer@29.7.0': dependencies: @@ -21477,13 +19498,6 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/source-map@0.3.5': - dependencies: - '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.31 - - '@jridgewell/sourcemap-codec@1.5.0': {} - '@jridgewell/sourcemap-codec@1.5.5': {} '@jridgewell/trace-mapping@0.3.31': @@ -21500,7 +19514,7 @@ snapshots: dependencies: badgen: 3.3.2 colors: 1.4.0 - fs-extra: 11.3.4 + fs-extra: 11.3.6 '@jscpd/core@4.2.5': dependencies: @@ -21515,14 +19529,14 @@ snapshots: cli-table3: 0.6.5 colors: 1.4.0 fast-glob: 3.3.3 - fs-extra: 11.3.4 + fs-extra: 11.3.6 markdown-table: 2.0.0 pug: 3.0.4 '@jscpd/html-reporter@4.2.5': dependencies: colors: 1.4.0 - fs-extra: 11.3.4 + fs-extra: 11.3.6 pug: 3.0.4 '@jscpd/tokenizer@4.2.5': @@ -21554,58 +19568,59 @@ snapshots: dependencies: tslib: 2.8.1 - '@jsonjoy.com/fs-core@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-core@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-fsa@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-fsa@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-node-builtins@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-node-builtins@4.64.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 - '@jsonjoy.com/fs-node-to-fsa@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-node-to-fsa@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-fsa': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-fsa': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-node-utils@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-node-utils@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + glob-to-regex.js: 1.2.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-node@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-node@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-print': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-snapshot': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.64.0(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-print@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-print@4.64.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 - '@jsonjoy.com/fs-snapshot@4.57.7(tslib@2.8.1)': + '@jsonjoy.com/fs-snapshot@4.64.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) '@jsonjoy.com/json-pack': 17.67.0(tslib@2.8.1) '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) tslib: 2.8.1 @@ -21659,17 +19674,15 @@ snapshots: '@leichtgewicht/ip-codec@2.0.5': {} - '@lezer/common@1.2.3': {} - '@lezer/common@1.5.2': {} - '@lezer/cpp@1.1.3': + '@lezer/cpp@1.1.6': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/css@1.2.1': + '@lezer/css@1.3.4': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 @@ -21681,15 +19694,11 @@ snapshots: '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/highlight@1.2.1': - dependencies: - '@lezer/common': 1.2.3 - '@lezer/highlight@1.2.3': dependencies: '@lezer/common': 1.5.2 - '@lezer/html@1.3.10': + '@lezer/html@1.3.13': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 @@ -21701,7 +19710,7 @@ snapshots: '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/javascript@1.5.1': + '@lezer/javascript@1.5.4': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 @@ -21717,22 +19726,18 @@ snapshots: dependencies: '@lezer/common': 1.5.2 - '@lezer/lr@1.4.2': - dependencies: - '@lezer/common': 1.2.3 - - '@lezer/markdown@1.4.3': + '@lezer/markdown@1.7.2': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 - '@lezer/php@1.0.2': + '@lezer/php@1.0.5': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/python@1.1.18': + '@lezer/python@1.1.19': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 @@ -21756,17 +19761,17 @@ snapshots: '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lezer/yaml@1.0.3': + '@lezer/yaml@1.0.4': dependencies: '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 - '@lit-labs/ssr-dom-shim@1.5.1': {} + '@lit-labs/ssr-dom-shim@1.6.0': {} '@lit/reactive-element@2.1.2': dependencies: - '@lit-labs/ssr-dom-shim': 1.5.1 + '@lit-labs/ssr-dom-shim': 1.6.0 '@malept/cross-spawn-promise@2.0.0': dependencies: @@ -21796,85 +19801,79 @@ snapshots: jju: 1.4.0 js-yaml: 4.3.0 - '@marijn/find-cluster-break@1.0.2': {} - '@marijn/find-cluster-break@1.0.3': {} - '@mermaid-js/parser@1.1.1': + '@mermaid-js/parser@1.2.0': dependencies: '@chevrotain/types': 11.1.2 - '@microsoft/microsoft-graph-client@3.0.7(@azure/identity@4.10.0)': + '@microsoft/microsoft-graph-client@3.0.7(@azure/identity@4.13.1)': dependencies: - '@babel/runtime': 7.27.0 - tslib: 2.6.2 + '@babel/runtime': 7.29.7 + tslib: 2.8.1 optionalDependencies: - '@azure/identity': 4.10.0 - - '@microsoft/microsoft-graph-types@2.40.0': {} - - '@milkdown/components@7.13.1(@codemirror/language@6.11.1)(@codemirror/state@6.5.2)(@codemirror/view@6.37.2)(typescript@5.4.5)': - dependencies: - '@codemirror/language': 6.11.1 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - '@floating-ui/dom': 1.7.1 - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/plugin-tooltip': 7.13.1 - '@milkdown/preset-commonmark': 7.13.1 - '@milkdown/preset-gfm': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 - '@milkdown/utils': 7.13.1 - '@types/lodash.debounce': 4.0.9 - '@types/lodash.throttle': 4.1.9 + '@azure/identity': 4.13.1 + + '@microsoft/microsoft-graph-types@2.43.1': {} + + '@milkdown/components@7.21.3(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)(typescript@5.4.5)': + dependencies: + '@codemirror/language': 6.12.4 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 + '@floating-ui/dom': 1.8.0 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/plugin-diff': 7.21.3 + '@milkdown/plugin-tooltip': 7.21.3 + '@milkdown/preset-commonmark': 7.21.3 + '@milkdown/preset-gfm': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + '@milkdown/utils': 7.21.3 + '@types/lodash-es': 4.17.12 clsx: 2.1.1 dompurify: 3.4.12 - lodash.debounce: 4.0.8 - lodash.throttle: 4.1.1 - nanoid: 5.1.5 - tslib: 2.8.1 + lodash-es: 4.18.1 + nanoid: 5.1.16 unist-util-visit: 5.1.0 - vue: 3.5.16(typescript@5.4.5) + vue: 3.5.40(typescript@5.4.5) transitivePeerDependencies: - supports-color - typescript - '@milkdown/core@7.13.1(supports-color@8.1.1)': + '@milkdown/core@7.21.3(supports-color@8.1.1)': dependencies: - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 remark-parse: 11.0.0(supports-color@8.1.1) remark-stringify: 11.0.0 - tslib: 2.8.1 unified: 11.0.5 transitivePeerDependencies: - supports-color - '@milkdown/crepe@7.13.1(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(typescript@5.4.5)': + '@milkdown/crepe@7.21.3(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(typescript@5.4.5)': dependencies: - '@codemirror/commands': 6.8.1 - '@codemirror/language': 6.11.1 - '@codemirror/language-data': 6.5.1 - '@codemirror/state': 6.5.2 - '@codemirror/theme-one-dark': 6.1.2 - '@codemirror/view': 6.37.2 - '@milkdown/kit': 7.13.1(@codemirror/language@6.11.1)(@codemirror/state@6.5.2)(@codemirror/view@6.37.2)(typescript@5.4.5) + '@codemirror/commands': 6.10.4 + '@codemirror/language': 6.12.4 + '@codemirror/language-data': 6.5.2 + '@codemirror/state': 6.7.1 + '@codemirror/theme-one-dark': 6.1.3 + '@codemirror/view': 6.43.6 + '@milkdown/kit': 7.21.3(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)(typescript@5.4.5) '@types/lodash-es': 4.17.12 clsx: 2.1.1 - codemirror: 6.0.1 - katex: 0.16.22 + codemirror: 6.0.2 + dompurify: 3.4.12 + katex: 0.17.0 lodash-es: 4.18.1 - nanoid: 5.1.5 - prosemirror-virtual-cursor: 0.4.2(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0) + prosemirror-virtual-cursor: 0.4.2(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1) remark-math: 6.0.0 - tslib: 2.8.1 unist-util-visit: 5.1.0 - vue: 3.5.16(typescript@5.4.5) + vue: 3.5.40(typescript@5.4.5) transitivePeerDependencies: - prosemirror-model - prosemirror-state @@ -21882,36 +19881,35 @@ snapshots: - supports-color - typescript - '@milkdown/ctx@7.13.1': - dependencies: - '@milkdown/exception': 7.13.1 - tslib: 2.8.1 - - '@milkdown/exception@7.13.1': - dependencies: - tslib: 2.8.1 - - '@milkdown/kit@7.13.1(@codemirror/language@6.11.1)(@codemirror/state@6.5.2)(@codemirror/view@6.37.2)(typescript@5.4.5)': - dependencies: - '@milkdown/components': 7.13.1(@codemirror/language@6.11.1)(@codemirror/state@6.5.2)(@codemirror/view@6.37.2)(typescript@5.4.5) - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/plugin-block': 7.13.1 - '@milkdown/plugin-clipboard': 7.13.1 - '@milkdown/plugin-cursor': 7.13.1 - '@milkdown/plugin-history': 7.13.1 - '@milkdown/plugin-indent': 7.13.1 - '@milkdown/plugin-listener': 7.13.1 - '@milkdown/plugin-slash': 7.13.1 - '@milkdown/plugin-tooltip': 7.13.1 - '@milkdown/plugin-trailing': 7.13.1 - '@milkdown/plugin-upload': 7.13.1 - '@milkdown/preset-commonmark': 7.13.1 - '@milkdown/preset-gfm': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/ctx@7.21.3': + dependencies: + '@milkdown/exception': 7.21.3 + + '@milkdown/exception@7.21.3': {} + + '@milkdown/kit@7.21.3(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)(typescript@5.4.5)': + dependencies: + '@milkdown/components': 7.21.3(@codemirror/language@6.12.4)(@codemirror/state@6.7.1)(@codemirror/view@6.43.6)(typescript@5.4.5) + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/plugin-block': 7.21.3 + '@milkdown/plugin-clipboard': 7.21.3 + '@milkdown/plugin-cursor': 7.21.3 + '@milkdown/plugin-diff': 7.21.3 + '@milkdown/plugin-history': 7.21.3 + '@milkdown/plugin-indent': 7.21.3 + '@milkdown/plugin-listener': 7.21.3 + '@milkdown/plugin-slash': 7.21.3 + '@milkdown/plugin-streaming': 7.21.3 + '@milkdown/plugin-tooltip': 7.21.3 + '@milkdown/plugin-trailing': 7.21.3 + '@milkdown/plugin-upload': 7.21.3 + '@milkdown/preset-commonmark': 7.21.3 + '@milkdown/preset-gfm': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - '@codemirror/language' - '@codemirror/state' @@ -21919,220 +19917,212 @@ snapshots: - supports-color - typescript - '@milkdown/plugin-block@7.13.1': + '@milkdown/plugin-block@7.21.3': dependencies: - '@floating-ui/dom': 1.7.1 - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - '@types/lodash.throttle': 4.1.9 - lodash.throttle: 4.1.1 - tslib: 2.8.1 + '@floating-ui/dom': 1.8.0 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 + '@types/lodash-es': 4.17.12 + lodash-es: 4.18.1 transitivePeerDependencies: - supports-color - '@milkdown/plugin-clipboard@7.13.1': + '@milkdown/plugin-clipboard@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/plugin-collab@7.13.1(y-prosemirror@1.3.5(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)': + '@milkdown/plugin-collab@7.21.3(y-prosemirror@1.3.7(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31))(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31)': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 - y-prosemirror: 1.3.5(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27) - y-protocols: 1.0.6(yjs@13.6.27) - yjs: 13.6.27 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 + y-prosemirror: 1.3.7(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31) + y-protocols: 1.0.7(yjs@13.6.31) + yjs: 13.6.31 transitivePeerDependencies: - supports-color - '@milkdown/plugin-cursor@7.13.1': + '@milkdown/plugin-cursor@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 + prosemirror-drop-indicator: 0.1.4 transitivePeerDependencies: - supports-color - '@milkdown/plugin-history@7.13.1': + '@milkdown/plugin-diff@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/plugin-indent@7.13.1': + '@milkdown/plugin-history@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/plugin-listener@7.13.1': + '@milkdown/plugin-indent@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - '@types/lodash.debounce': 4.0.9 - lodash.debounce: 4.0.8 - tslib: 2.8.1 + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/plugin-slash@7.13.1': + '@milkdown/plugin-listener@7.21.3': dependencies: - '@floating-ui/dom': 1.7.1 - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - '@types/lodash.debounce': 4.0.9 - lodash.debounce: 4.0.8 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@types/lodash-es': 4.17.12 + lodash-es: 4.18.1 transitivePeerDependencies: - supports-color - '@milkdown/plugin-tooltip@7.13.1': + '@milkdown/plugin-slash@7.21.3': dependencies: - '@floating-ui/dom': 1.7.1 - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - '@types/lodash.throttle': 4.1.9 - lodash.throttle: 4.1.1 - tslib: 2.8.1 + '@floating-ui/dom': 1.8.0 + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 + '@types/lodash-es': 4.17.12 + lodash-es: 4.18.1 transitivePeerDependencies: - supports-color - '@milkdown/plugin-trailing@7.13.1': + '@milkdown/plugin-streaming@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/plugin-diff': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/plugin-upload@7.13.1': + '@milkdown/plugin-tooltip@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/utils': 7.13.1 - tslib: 2.8.1 + '@floating-ui/dom': 1.8.0 + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 + '@types/lodash-es': 4.17.12 + lodash-es: 4.18.1 + transitivePeerDependencies: + - supports-color + + '@milkdown/plugin-trailing@7.21.3': + dependencies: + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 transitivePeerDependencies: - supports-color - '@milkdown/preset-commonmark@7.13.1': + '@milkdown/plugin-upload@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 - '@milkdown/utils': 7.13.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/utils': 7.21.3 + transitivePeerDependencies: + - supports-color + + '@milkdown/preset-commonmark@7.21.3': + dependencies: + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + '@milkdown/utils': 7.21.3 remark-inline-links: 7.0.0 - tslib: 2.8.1 unist-util-visit: 5.1.0 - unist-util-visit-parents: 6.0.1 + unist-util-visit-parents: 6.0.2 transitivePeerDependencies: - supports-color - '@milkdown/preset-gfm@7.13.1': + '@milkdown/preset-gfm@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/preset-commonmark': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 - '@milkdown/utils': 7.13.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/preset-commonmark': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + '@milkdown/utils': 7.21.3 prosemirror-safari-ime-span: 1.0.2 remark-gfm: 4.0.1 - tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@milkdown/prose@7.13.1': + '@milkdown/prose@7.21.3': dependencies: - '@milkdown/exception': 7.13.1 - prosemirror-changeset: 2.3.1 + '@milkdown/exception': 7.21.3 + prosemirror-changeset: 2.4.1 prosemirror-commands: 1.7.1 - prosemirror-dropcursor: 1.8.2 - prosemirror-gapcursor: 1.3.2 - prosemirror-history: 1.4.1 - prosemirror-inputrules: 1.5.0 + prosemirror-dropcursor: 1.8.3 + prosemirror-gapcursor: 1.4.1 + prosemirror-history: 1.5.0 + prosemirror-inputrules: 1.5.1 prosemirror-keymap: 1.2.3 - prosemirror-model: 1.25.1 + prosemirror-model: 1.25.11 prosemirror-schema-list: 1.5.1 - prosemirror-state: 1.4.3 - prosemirror-tables: 1.7.1 - prosemirror-transform: 1.10.4 - prosemirror-view: 1.40.0 - tslib: 2.8.1 + prosemirror-state: 1.4.4 + prosemirror-tables: 1.8.5 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.42.1 - '@milkdown/theme-nord@7.13.1': + '@milkdown/theme-nord@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/prose': 7.13.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/prose': 7.21.3 clsx: 2.1.1 - tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@milkdown/transformer@7.13.1': + '@milkdown/transformer@7.21.3': dependencies: - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 remark: 15.0.1 - remark-parse: 11.0.0(supports-color@8.1.1) - remark-stringify: 11.0.0 - tslib: 2.8.1 unified: 11.0.5 transitivePeerDependencies: - supports-color - '@milkdown/utils@7.13.1': + '@milkdown/utils@7.21.3': dependencies: - '@milkdown/core': 7.13.1(supports-color@8.1.1) - '@milkdown/ctx': 7.13.1 - '@milkdown/exception': 7.13.1 - '@milkdown/prose': 7.13.1 - '@milkdown/transformer': 7.13.1 - nanoid: 5.1.5 - tslib: 2.8.1 + '@milkdown/core': 7.21.3(supports-color@8.1.1) + '@milkdown/ctx': 7.21.3 + '@milkdown/exception': 7.21.3 + '@milkdown/prose': 7.21.3 + '@milkdown/transformer': 7.21.3 + nanoid: 5.1.16 transitivePeerDependencies: - supports-color - '@modelcontextprotocol/sdk@1.26.0(supports-color@8.1.1)(zod@4.1.13)': + '@modelcontextprotocol/sdk@1.26.0(supports-color@8.1.1)(zod@4.4.3)': dependencies: - '@hono/node-server': 1.19.15(hono@4.12.29) + '@hono/node-server': 1.19.14(hono@4.12.31) ajv: 8.20.0 ajv-formats: 3.0.1(ajv@8.20.0) content-type: 1.0.5 @@ -22141,20 +20131,20 @@ snapshots: eventsource: 3.0.7 eventsource-parser: 3.1.0 express: 5.2.1(supports-color@8.1.1) - express-rate-limit: 8.5.2(express@5.2.1) - hono: 4.12.29 - jose: 6.2.3 + express-rate-limit: 8.6.0(express@5.2.1(supports-color@8.1.1))(supports-color@8.1.1) + hono: 4.12.31 + jose: 6.2.4 json-schema-typed: 8.0.2 pkce-challenge: 5.0.1 raw-body: 3.0.2 - zod: 4.1.13 - zod-to-json-schema: 3.25.2(zod@4.1.13) + zod: 4.4.3 + zod-to-json-schema: 3.25.2(zod@4.4.3) transitivePeerDependencies: - supports-color '@modelcontextprotocol/sdk@1.26.0(zod@3.25.76)': dependencies: - '@hono/node-server': 1.19.15(hono@4.12.29) + '@hono/node-server': 1.19.14(hono@4.12.31) ajv: 8.20.0 ajv-formats: 3.0.1(ajv@8.20.0) content-type: 1.0.5 @@ -22163,9 +20153,9 @@ snapshots: eventsource: 3.0.7 eventsource-parser: 3.1.0 express: 5.2.1(supports-color@8.1.1) - express-rate-limit: 8.5.2(express@5.2.1) - hono: 4.12.29 - jose: 6.2.3 + express-rate-limit: 8.6.0(express@5.2.1(supports-color@8.1.1))(supports-color@8.1.1) + hono: 4.12.31 + jose: 6.2.4 json-schema-typed: 8.0.2 pkce-challenge: 5.0.1 raw-body: 3.0.2 @@ -22174,123 +20164,76 @@ snapshots: transitivePeerDependencies: - supports-color - '@modelcontextprotocol/sdk@1.26.0(zod@4.3.6)': - dependencies: - '@hono/node-server': 1.19.15(hono@4.12.29) - ajv: 8.20.0 - ajv-formats: 3.0.1(ajv@8.20.0) - content-type: 1.0.5 - cors: 2.8.6 - cross-spawn: 7.0.6 - eventsource: 3.0.7 - eventsource-parser: 3.1.0 - express: 5.2.1(supports-color@8.1.1) - express-rate-limit: 8.5.2(express@5.2.1) - hono: 4.12.29 - jose: 6.2.3 - json-schema-typed: 8.0.2 - pkce-challenge: 5.0.1 - raw-body: 3.0.2 - zod: 4.3.6 - zod-to-json-schema: 3.25.2(zod@4.3.6) - transitivePeerDependencies: - - supports-color - - '@modelcontextprotocol/sdk@1.26.0(zod@4.4.3)': - dependencies: - '@hono/node-server': 1.19.15(hono@4.12.29) - ajv: 8.20.0 - ajv-formats: 3.0.1(ajv@8.20.0) - content-type: 1.0.5 - cors: 2.8.6 - cross-spawn: 7.0.6 - eventsource: 3.0.7 - eventsource-parser: 3.1.0 - express: 5.2.1(supports-color@8.1.1) - express-rate-limit: 8.5.2(express@5.2.1) - hono: 4.12.29 - jose: 6.2.3 - json-schema-typed: 8.0.2 - pkce-challenge: 5.0.1 - raw-body: 3.0.2 - zod: 4.4.3 - zod-to-json-schema: 3.25.2(zod@4.4.3) - transitivePeerDependencies: - - supports-color - - '@modelcontextprotocol/server-filesystem@2026.1.14(zod@4.1.13)': + '@modelcontextprotocol/server-filesystem@2026.1.14(zod@4.4.3)': dependencies: - '@modelcontextprotocol/sdk': 1.26.0(supports-color@8.1.1)(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(supports-color@8.1.1)(zod@4.4.3) diff: 5.2.2 glob: 10.5.0 - minimatch: 10.2.4 - zod-to-json-schema: 3.25.1(zod@4.1.13) + minimatch: 10.2.5 + zod-to-json-schema: 3.25.2(zod@4.4.3) transitivePeerDependencies: - '@cfworker/json-schema' - supports-color - zod - '@mongodb-js/saslprep@1.2.2': + '@mongodb-js/saslprep@1.4.12': dependencies: sparse-bitfield: 3.0.3 '@mozilla/readability@0.6.0': {} - '@napi-rs/canvas-android-arm64@0.1.72': + '@napi-rs/canvas-android-arm64@0.1.100': optional: true - '@napi-rs/canvas-darwin-arm64@0.1.72': + '@napi-rs/canvas-darwin-arm64@0.1.100': optional: true - '@napi-rs/canvas-darwin-x64@0.1.72': + '@napi-rs/canvas-darwin-x64@0.1.100': optional: true - '@napi-rs/canvas-linux-arm-gnueabihf@0.1.72': + '@napi-rs/canvas-linux-arm-gnueabihf@0.1.100': optional: true - '@napi-rs/canvas-linux-arm64-gnu@0.1.72': + '@napi-rs/canvas-linux-arm64-gnu@0.1.100': optional: true - '@napi-rs/canvas-linux-arm64-musl@0.1.72': + '@napi-rs/canvas-linux-arm64-musl@0.1.100': optional: true - '@napi-rs/canvas-linux-riscv64-gnu@0.1.72': + '@napi-rs/canvas-linux-riscv64-gnu@0.1.100': optional: true - '@napi-rs/canvas-linux-x64-gnu@0.1.72': + '@napi-rs/canvas-linux-x64-gnu@0.1.100': optional: true - '@napi-rs/canvas-linux-x64-musl@0.1.72': + '@napi-rs/canvas-linux-x64-musl@0.1.100': optional: true - '@napi-rs/canvas-win32-x64-msvc@0.1.72': + '@napi-rs/canvas-win32-arm64-msvc@0.1.100': optional: true - '@napi-rs/canvas@0.1.72': - optionalDependencies: - '@napi-rs/canvas-android-arm64': 0.1.72 - '@napi-rs/canvas-darwin-arm64': 0.1.72 - '@napi-rs/canvas-darwin-x64': 0.1.72 - '@napi-rs/canvas-linux-arm-gnueabihf': 0.1.72 - '@napi-rs/canvas-linux-arm64-gnu': 0.1.72 - '@napi-rs/canvas-linux-arm64-musl': 0.1.72 - '@napi-rs/canvas-linux-riscv64-gnu': 0.1.72 - '@napi-rs/canvas-linux-x64-gnu': 0.1.72 - '@napi-rs/canvas-linux-x64-musl': 0.1.72 - '@napi-rs/canvas-win32-x64-msvc': 0.1.72 - optional: true - - '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)': - dependencies: - '@emnapi/core': 1.11.0 - '@emnapi/runtime': 1.11.0 - '@tybys/wasm-util': 0.10.3 + '@napi-rs/canvas-win32-x64-msvc@0.1.100': optional: true - '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': - dependencies: - '@emnapi/core': 1.11.1 - '@emnapi/runtime': 1.11.1 + '@napi-rs/canvas@0.1.100': + optionalDependencies: + '@napi-rs/canvas-android-arm64': 0.1.100 + '@napi-rs/canvas-darwin-arm64': 0.1.100 + '@napi-rs/canvas-darwin-x64': 0.1.100 + '@napi-rs/canvas-linux-arm-gnueabihf': 0.1.100 + '@napi-rs/canvas-linux-arm64-gnu': 0.1.100 + '@napi-rs/canvas-linux-arm64-musl': 0.1.100 + '@napi-rs/canvas-linux-riscv64-gnu': 0.1.100 + '@napi-rs/canvas-linux-x64-gnu': 0.1.100 + '@napi-rs/canvas-linux-x64-musl': 0.1.100 + '@napi-rs/canvas-win32-arm64-msvc': 0.1.100 + '@napi-rs/canvas-win32-x64-msvc': 0.1.100 + optional: true + + '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)': + dependencies: + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 '@tybys/wasm-util': 0.10.3 optional: true @@ -22308,11 +20251,13 @@ snapshots: '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + fastq: 1.20.1 '@nornagon/put@0.0.8': {} - '@oclif/core@4.11.14': + '@ocavue/utils@1.7.0': {} + + '@oclif/core@4.13.0': dependencies: ansi-escapes: 4.3.2 ansis: 3.17.0 @@ -22325,7 +20270,7 @@ snapshots: is-wsl: 2.2.0 lilconfig: 3.1.3 minimatch: 10.2.5 - semver: 7.8.4 + semver: 7.8.5 string-width: 4.2.3 supports-color: 8.1.1 tinyglobby: 0.2.17 @@ -22333,61 +20278,19 @@ snapshots: wordwrap: 1.0.0 wrap-ansi: 7.0.0 - '@oclif/core@4.5.2': - dependencies: - ansi-escapes: 4.3.2 - ansis: 3.17.0 - clean-stack: 3.0.1 - cli-spinners: 2.9.2 - debug: 4.4.3(supports-color@8.1.1) - ejs: 3.1.10 - get-package-type: 0.1.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - lilconfig: 3.1.3 - minimatch: 9.0.9 - semver: 7.7.2 - string-width: 4.2.3 - supports-color: 8.1.1 - tinyglobby: 0.2.14 - widest-line: 3.1.0 - wordwrap: 1.0.0 - wrap-ansi: 7.0.0 - - '@oclif/core@4.8.0': - dependencies: - ansi-escapes: 4.3.2 - ansis: 3.17.0 - clean-stack: 3.0.1 - cli-spinners: 2.9.2 - debug: 4.4.3(supports-color@8.1.1) - ejs: 3.1.10 - get-package-type: 0.1.0 - indent-string: 4.0.0 - is-wsl: 2.2.0 - lilconfig: 3.1.3 - minimatch: 9.0.9 - semver: 7.7.3 - string-width: 4.2.3 - supports-color: 8.1.1 - tinyglobby: 0.2.15 - widest-line: 3.1.0 - wordwrap: 1.0.0 - wrap-ansi: 7.0.0 - - '@oclif/plugin-autocomplete@3.2.24(supports-color@8.1.1)': + '@oclif/plugin-autocomplete@3.2.53(supports-color@8.1.1)': dependencies: - '@oclif/core': 4.11.14 + '@oclif/core': 4.13.0 ansis: 3.17.0 debug: 4.4.3(supports-color@8.1.1) ejs: 3.1.10 transitivePeerDependencies: - supports-color - '@oclif/plugin-commands@4.1.21': + '@oclif/plugin-commands@4.1.60': dependencies: - '@oclif/core': 4.11.14 - '@oclif/table': 0.4.6 + '@oclif/core': 4.13.0 + '@oclif/table': 0.5.9 lodash: 4.18.1 object-treeify: 4.0.1 transitivePeerDependencies: @@ -22395,41 +20298,29 @@ snapshots: - react-devtools-core - utf-8-validate - '@oclif/plugin-help@6.2.26': - dependencies: - '@oclif/core': 4.5.2 - '@oclif/plugin-help@6.2.53': dependencies: - '@oclif/core': 4.11.14 - - '@oclif/plugin-not-found@3.2.65(@types/node@22.15.18)': - dependencies: - '@inquirer/prompts': 7.8.3(@types/node@22.15.18) - '@oclif/core': 4.11.14 - ansis: 3.17.0 - fast-levenshtein: 3.0.0 - transitivePeerDependencies: - - '@types/node' + '@oclif/core': 4.13.0 - '@oclif/plugin-not-found@3.2.65(@types/node@22.20.1)': + '@oclif/plugin-not-found@3.2.88(@types/node@22.20.1)': dependencies: - '@inquirer/prompts': 7.8.3(@types/node@22.20.1) - '@oclif/core': 4.11.14 + '@inquirer/prompts': 7.10.1(@types/node@22.20.1) + '@oclif/core': 4.13.0 ansis: 3.17.0 fast-levenshtein: 3.0.0 transitivePeerDependencies: - '@types/node' - '@oclif/table@0.4.6': + '@oclif/table@0.5.9': dependencies: - '@types/react': 18.3.18 + '@types/react': 18.3.31 change-case: 5.4.4 cli-truncate: 4.0.0 - ink: 5.0.1(@types/react@18.3.18)(react@18.3.1) + ink: 5.0.1(@types/react@18.3.31)(react@18.3.1) natural-orderby: 3.0.2 object-hash: 3.0.0 react: 18.3.1 + string-width: 8.2.2 strip-ansi: 7.2.0 wrap-ansi: 9.0.2 transitivePeerDependencies: @@ -22456,10 +20347,10 @@ snapshots: '@open-wc/dedupe-mixin@2.0.1': {} - '@open-wc/scoped-elements@3.0.6': + '@open-wc/scoped-elements@3.0.10': dependencies: '@open-wc/dedupe-mixin': 2.0.1 - lit: 3.3.2 + lit: 3.3.3 '@open-wc/semantic-dom-diff@0.20.1': dependencies: @@ -22472,8 +20363,8 @@ snapshots: '@open-wc/testing-helpers@3.0.1': dependencies: - '@open-wc/scoped-elements': 3.0.6 - lit: 3.3.2 + '@open-wc/scoped-elements': 3.0.10 + lit: 3.3.3 lit-html: 3.3.3 '@open-wc/testing@4.0.0': @@ -22489,140 +20380,140 @@ snapshots: - supports-color - utf-8-validate - '@opentelemetry/api@1.9.0': {} + '@opentelemetry/api@1.9.1': {} - '@opentelemetry/core@2.8.0(@opentelemetry/api@1.9.0)': + '@opentelemetry/core@2.10.0(@opentelemetry/api@1.9.1)': dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/semantic-conventions': 1.34.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/semantic-conventions': 1.43.0 - '@opentelemetry/semantic-conventions@1.34.0': {} + '@opentelemetry/semantic-conventions@1.43.0': {} - '@oxc-parser/binding-android-arm-eabi@0.137.0': + '@oxc-parser/binding-android-arm-eabi@0.140.0': optional: true - '@oxc-parser/binding-android-arm64@0.137.0': + '@oxc-parser/binding-android-arm64@0.140.0': optional: true - '@oxc-parser/binding-darwin-arm64@0.137.0': + '@oxc-parser/binding-darwin-arm64@0.140.0': optional: true - '@oxc-parser/binding-darwin-x64@0.137.0': + '@oxc-parser/binding-darwin-x64@0.140.0': optional: true - '@oxc-parser/binding-freebsd-x64@0.137.0': + '@oxc-parser/binding-freebsd-x64@0.140.0': optional: true - '@oxc-parser/binding-linux-arm-gnueabihf@0.137.0': + '@oxc-parser/binding-linux-arm-gnueabihf@0.140.0': optional: true - '@oxc-parser/binding-linux-arm-musleabihf@0.137.0': + '@oxc-parser/binding-linux-arm-musleabihf@0.140.0': optional: true - '@oxc-parser/binding-linux-arm64-gnu@0.137.0': + '@oxc-parser/binding-linux-arm64-gnu@0.140.0': optional: true - '@oxc-parser/binding-linux-arm64-musl@0.137.0': + '@oxc-parser/binding-linux-arm64-musl@0.140.0': optional: true - '@oxc-parser/binding-linux-ppc64-gnu@0.137.0': + '@oxc-parser/binding-linux-ppc64-gnu@0.140.0': optional: true - '@oxc-parser/binding-linux-riscv64-gnu@0.137.0': + '@oxc-parser/binding-linux-riscv64-gnu@0.140.0': optional: true - '@oxc-parser/binding-linux-riscv64-musl@0.137.0': + '@oxc-parser/binding-linux-riscv64-musl@0.140.0': optional: true - '@oxc-parser/binding-linux-s390x-gnu@0.137.0': + '@oxc-parser/binding-linux-s390x-gnu@0.140.0': optional: true - '@oxc-parser/binding-linux-x64-gnu@0.137.0': + '@oxc-parser/binding-linux-x64-gnu@0.140.0': optional: true - '@oxc-parser/binding-linux-x64-musl@0.137.0': + '@oxc-parser/binding-linux-x64-musl@0.140.0': optional: true - '@oxc-parser/binding-openharmony-arm64@0.137.0': + '@oxc-parser/binding-openharmony-arm64@0.140.0': optional: true - '@oxc-parser/binding-wasm32-wasi@0.137.0': + '@oxc-parser/binding-wasm32-wasi@0.140.0': dependencies: - '@emnapi/core': 1.11.1 - '@emnapi/runtime': 1.11.1 - '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) optional: true - '@oxc-parser/binding-win32-arm64-msvc@0.137.0': + '@oxc-parser/binding-win32-arm64-msvc@0.140.0': optional: true - '@oxc-parser/binding-win32-ia32-msvc@0.137.0': + '@oxc-parser/binding-win32-ia32-msvc@0.140.0': optional: true - '@oxc-parser/binding-win32-x64-msvc@0.137.0': + '@oxc-parser/binding-win32-x64-msvc@0.140.0': optional: true - '@oxc-project/types@0.137.0': {} + '@oxc-project/types@0.140.0': {} - '@oxc-resolver/binding-android-arm-eabi@11.21.3': + '@oxc-resolver/binding-android-arm-eabi@11.24.2': optional: true - '@oxc-resolver/binding-android-arm64@11.21.3': + '@oxc-resolver/binding-android-arm64@11.24.2': optional: true - '@oxc-resolver/binding-darwin-arm64@11.21.3': + '@oxc-resolver/binding-darwin-arm64@11.24.2': optional: true - '@oxc-resolver/binding-darwin-x64@11.21.3': + '@oxc-resolver/binding-darwin-x64@11.24.2': optional: true - '@oxc-resolver/binding-freebsd-x64@11.21.3': + '@oxc-resolver/binding-freebsd-x64@11.24.2': optional: true - '@oxc-resolver/binding-linux-arm-gnueabihf@11.21.3': + '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2': optional: true - '@oxc-resolver/binding-linux-arm-musleabihf@11.21.3': + '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2': optional: true - '@oxc-resolver/binding-linux-arm64-gnu@11.21.3': + '@oxc-resolver/binding-linux-arm64-gnu@11.24.2': optional: true - '@oxc-resolver/binding-linux-arm64-musl@11.21.3': + '@oxc-resolver/binding-linux-arm64-musl@11.24.2': optional: true - '@oxc-resolver/binding-linux-ppc64-gnu@11.21.3': + '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2': optional: true - '@oxc-resolver/binding-linux-riscv64-gnu@11.21.3': + '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2': optional: true - '@oxc-resolver/binding-linux-riscv64-musl@11.21.3': + '@oxc-resolver/binding-linux-riscv64-musl@11.24.2': optional: true - '@oxc-resolver/binding-linux-s390x-gnu@11.21.3': + '@oxc-resolver/binding-linux-s390x-gnu@11.24.2': optional: true - '@oxc-resolver/binding-linux-x64-gnu@11.21.3': + '@oxc-resolver/binding-linux-x64-gnu@11.24.2': optional: true - '@oxc-resolver/binding-linux-x64-musl@11.21.3': + '@oxc-resolver/binding-linux-x64-musl@11.24.2': optional: true - '@oxc-resolver/binding-openharmony-arm64@11.21.3': + '@oxc-resolver/binding-openharmony-arm64@11.24.2': optional: true - '@oxc-resolver/binding-wasm32-wasi@11.21.3': + '@oxc-resolver/binding-wasm32-wasi@11.24.2': dependencies: - '@emnapi/core': 1.11.0 - '@emnapi/runtime': 1.11.0 - '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) optional: true - '@oxc-resolver/binding-win32-arm64-msvc@11.21.3': + '@oxc-resolver/binding-win32-arm64-msvc@11.24.2': optional: true - '@oxc-resolver/binding-win32-x64-msvc@11.21.3': + '@oxc-resolver/binding-win32-x64-msvc@11.24.2': optional: true '@peculiar/asn1-cms@2.8.0': @@ -22722,9 +20613,9 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@playwright/test@1.57.0': + '@playwright/test@1.61.1': dependencies: - playwright: 1.57.0 + playwright: 1.61.1 '@popperjs/core@2.11.8': {} @@ -22754,17 +20645,17 @@ snapshots: '@protobufjs/pool@1.1.0': optional: true - '@protobufjs/utf8@1.1.1': + '@protobufjs/utf8@1.1.2': optional: true - '@puppeteer/browsers@2.13.0': + '@puppeteer/browsers@2.13.2': dependencies: debug: 4.4.3(supports-color@8.1.1) extract-zip: 2.0.1 progress: 2.0.3 proxy-agent: 6.5.0 semver: 7.8.5 - tar-fs: 3.1.1 + tar-fs: 3.1.3 yargs: 17.7.3 transitivePeerDependencies: - bare-abort-controller @@ -22807,7 +20698,7 @@ snapshots: '@rollup/plugin-node-resolve@15.3.1(rollup@4.62.2)': dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.62.2) + '@rollup/pluginutils': 5.4.0(rollup@4.62.2) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 @@ -22815,7 +20706,7 @@ snapshots: optionalDependencies: rollup: 4.62.2 - '@rollup/pluginutils@5.3.0(rollup@4.62.2)': + '@rollup/pluginutils@5.4.0(rollup@4.62.2)': dependencies: '@types/estree': 1.0.9 estree-walker: 2.0.2 @@ -22898,466 +20789,129 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.62.2': optional: true - '@secretlint/config-creator@9.3.2': + '@secretlint/config-creator@10.2.2': dependencies: - '@secretlint/types': 9.3.4 + '@secretlint/types': 10.2.2 - '@secretlint/config-loader@9.3.2': + '@secretlint/config-loader@10.2.2(supports-color@8.1.1)': dependencies: - '@secretlint/profiler': 9.3.2 - '@secretlint/resolver': 9.3.2 - '@secretlint/types': 9.3.2 + '@secretlint/profiler': 10.2.2 + '@secretlint/resolver': 10.2.2 + '@secretlint/types': 10.2.2 ajv: 8.20.0 debug: 4.4.3(supports-color@8.1.1) - rc-config-loader: 4.1.3 + rc-config-loader: 4.1.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@secretlint/core@9.3.2': - dependencies: - '@secretlint/profiler': 9.3.2 - '@secretlint/types': 9.3.2 - debug: 4.4.3(supports-color@8.1.1) - structured-source: 4.0.0 - transitivePeerDependencies: - - supports-color - - '@secretlint/formatter@9.3.2': - dependencies: - '@secretlint/resolver': 9.3.2 - '@secretlint/types': 9.3.2 - '@textlint/linter-formatter': 14.7.1 - '@textlint/module-interop': 14.7.1 - '@textlint/types': 14.7.1 - chalk: 4.1.2 - debug: 4.4.3(supports-color@8.1.1) - pluralize: 8.0.0 - strip-ansi: 6.0.1 - table: 6.9.0 - terminal-link: 2.1.1 - transitivePeerDependencies: - - supports-color - - '@secretlint/node@9.3.2': - dependencies: - '@secretlint/config-loader': 9.3.2 - '@secretlint/core': 9.3.2 - '@secretlint/formatter': 9.3.2 - '@secretlint/profiler': 9.3.2 - '@secretlint/source-creator': 9.3.2 - '@secretlint/types': 9.3.2 - debug: 4.4.3(supports-color@8.1.1) - p-map: 4.0.0 - transitivePeerDependencies: - - supports-color - - '@secretlint/profiler@9.3.2': {} - - '@secretlint/resolver@9.3.2': {} - - '@secretlint/secretlint-formatter-sarif@9.3.2': - dependencies: - node-sarif-builder: 2.0.3 - - '@secretlint/secretlint-rule-no-dotenv@9.3.2': - dependencies: - '@secretlint/types': 9.3.2 - - '@secretlint/secretlint-rule-preset-recommend@9.3.2': {} - - '@secretlint/source-creator@9.3.2': - dependencies: - '@secretlint/types': 9.3.2 - istextorbinary: 6.0.0 - - '@secretlint/types@9.3.2': {} - - '@secretlint/types@9.3.4': {} - - '@selderee/plugin-htmlparser2@0.11.0': - dependencies: - domhandler: 5.0.3 - selderee: 0.11.0 - - '@sinclair/typebox@0.27.12': {} - - '@sindresorhus/is@4.6.0': {} - - '@sindresorhus/merge-streams@2.2.1': {} - - '@sindresorhus/merge-streams@2.3.0': {} - - '@sinonjs/commons@3.0.0': - dependencies: - type-detect: 4.0.8 - - '@sinonjs/fake-timers@10.3.0': - dependencies: - '@sinonjs/commons': 3.0.0 - - '@smithy/abort-controller@4.2.11': - dependencies: - '@smithy/types': 4.16.1 - tslib: 2.8.1 - - '@smithy/abort-controller@4.3.3': - dependencies: - '@smithy/types': 4.16.1 - tslib: 2.8.1 - - '@smithy/chunked-blob-reader-native@4.2.3': - dependencies: - '@smithy/util-base64': 4.3.2 - tslib: 2.8.1 - - '@smithy/chunked-blob-reader@5.2.2': - dependencies: - tslib: 2.8.1 - - '@smithy/config-resolver@4.4.10': - dependencies: - '@smithy/node-config-provider': 4.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-config-provider': 4.2.2 - '@smithy/util-endpoints': 3.3.2 - '@smithy/util-middleware': 4.2.11 - tslib: 2.8.1 - - '@smithy/core@3.23.9': - dependencies: - '@smithy/middleware-serde': 4.2.12 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-base64': 4.3.2 - '@smithy/util-body-length-browser': 4.2.2 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-stream': 4.5.17 - '@smithy/util-utf8': 4.2.2 - '@smithy/uuid': 1.1.2 - tslib: 2.8.1 - - '@smithy/core@3.29.6': - dependencies: - '@smithy/types': 4.16.1 - tslib: 2.8.1 - - '@smithy/credential-provider-imds@4.2.11': - dependencies: - '@smithy/node-config-provider': 4.3.11 - '@smithy/property-provider': 4.2.11 - '@smithy/types': 4.13.0 - '@smithy/url-parser': 4.2.11 - tslib: 2.8.1 - - '@smithy/eventstream-codec@4.2.11': - dependencies: - '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 4.13.0 - '@smithy/util-hex-encoding': 4.4.11 - tslib: 2.8.1 - - '@smithy/eventstream-serde-browser@4.2.11': - dependencies: - '@smithy/eventstream-serde-universal': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/eventstream-serde-config-resolver@4.3.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/eventstream-serde-node@4.2.11': - dependencies: - '@smithy/eventstream-serde-universal': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/eventstream-serde-universal@4.2.11': - dependencies: - '@smithy/eventstream-codec': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/fetch-http-handler@5.3.13': - dependencies: - '@smithy/protocol-http': 5.3.11 - '@smithy/querystring-builder': 4.2.11 - '@smithy/types': 4.13.0 - '@smithy/util-base64': 4.3.2 - tslib: 2.8.1 - - '@smithy/hash-blob-browser@4.2.12': - dependencies: - '@smithy/chunked-blob-reader': 5.2.2 - '@smithy/chunked-blob-reader-native': 4.2.3 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/hash-node@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - '@smithy/util-buffer-from': 4.2.2 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@smithy/hash-stream-node@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@smithy/invalid-dependency@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/is-array-buffer@2.2.0': - dependencies: - tslib: 2.8.1 - - '@smithy/is-array-buffer@4.2.2': - dependencies: - tslib: 2.8.1 - - '@smithy/is-array-buffer@4.4.11': - dependencies: - '@smithy/core': 3.29.6 - tslib: 2.8.1 - - '@smithy/md5-js@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@smithy/middleware-content-length@4.2.11': - dependencies: - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/middleware-endpoint@4.4.23': - dependencies: - '@smithy/core': 3.23.9 - '@smithy/middleware-serde': 4.2.12 - '@smithy/node-config-provider': 4.3.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 - '@smithy/url-parser': 4.2.11 - '@smithy/util-middleware': 4.2.11 - tslib: 2.8.1 - - '@smithy/middleware-retry@4.4.40': - dependencies: - '@smithy/node-config-provider': 4.3.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/service-error-classification': 4.2.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-retry': 4.2.11 - '@smithy/uuid': 1.1.2 - tslib: 2.8.1 - - '@smithy/middleware-serde@4.2.12': - dependencies: - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/middleware-stack@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/node-config-provider@4.3.11': - dependencies: - '@smithy/property-provider': 4.2.11 - '@smithy/shared-ini-file-loader': 4.4.6 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/node-http-handler@4.4.14': - dependencies: - '@smithy/abort-controller': 4.3.3 - '@smithy/protocol-http': 5.3.11 - '@smithy/querystring-builder': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/property-provider@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/protocol-http@5.3.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/querystring-builder@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - '@smithy/util-uri-escape': 4.2.2 - tslib: 2.8.1 - - '@smithy/querystring-parser@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/service-error-classification@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - - '@smithy/shared-ini-file-loader@4.4.6': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 - - '@smithy/signature-v4@5.3.11': - dependencies: - '@smithy/is-array-buffer': 4.4.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-hex-encoding': 4.4.11 - '@smithy/util-middleware': 4.2.11 - '@smithy/util-uri-escape': 4.2.2 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 - - '@smithy/smithy-client@4.12.3': - dependencies: - '@smithy/core': 3.23.9 - '@smithy/middleware-endpoint': 4.4.23 - '@smithy/middleware-stack': 4.2.11 - '@smithy/protocol-http': 5.3.11 - '@smithy/types': 4.13.0 - '@smithy/util-stream': 4.5.17 - tslib: 2.8.1 - - '@smithy/types@4.13.0': - dependencies: - tslib: 2.8.1 - - '@smithy/types@4.16.1': - dependencies: - tslib: 2.8.1 - - '@smithy/url-parser@4.2.11': + '@secretlint/core@10.2.2(supports-color@8.1.1)': dependencies: - '@smithy/querystring-parser': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 + '@secretlint/profiler': 10.2.2 + '@secretlint/types': 10.2.2 + debug: 4.4.3(supports-color@8.1.1) + structured-source: 4.0.0 + transitivePeerDependencies: + - supports-color - '@smithy/util-base64@4.3.2': + '@secretlint/formatter@10.2.2(supports-color@8.1.1)': dependencies: - '@smithy/util-buffer-from': 4.2.2 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 + '@secretlint/resolver': 10.2.2 + '@secretlint/types': 10.2.2 + '@textlint/linter-formatter': 15.7.1(supports-color@8.1.1) + '@textlint/module-interop': 15.7.1 + '@textlint/types': 15.7.1 + chalk: 5.6.2 + debug: 4.4.3(supports-color@8.1.1) + pluralize: 8.0.0 + strip-ansi: 7.2.0 + table: 6.9.0 + terminal-link: 4.0.0 + transitivePeerDependencies: + - supports-color - '@smithy/util-body-length-browser@4.2.2': + '@secretlint/node@10.2.2(supports-color@8.1.1)': dependencies: - tslib: 2.8.1 + '@secretlint/config-loader': 10.2.2(supports-color@8.1.1) + '@secretlint/core': 10.2.2(supports-color@8.1.1) + '@secretlint/formatter': 10.2.2(supports-color@8.1.1) + '@secretlint/profiler': 10.2.2 + '@secretlint/source-creator': 10.2.2 + '@secretlint/types': 10.2.2 + debug: 4.4.3(supports-color@8.1.1) + p-map: 7.0.6 + transitivePeerDependencies: + - supports-color - '@smithy/util-body-length-node@4.2.3': - dependencies: - tslib: 2.8.1 + '@secretlint/profiler@10.2.2': {} - '@smithy/util-buffer-from@2.2.0': - dependencies: - '@smithy/is-array-buffer': 2.2.0 - tslib: 2.8.1 + '@secretlint/resolver@10.2.2': {} - '@smithy/util-buffer-from@4.2.2': + '@secretlint/secretlint-formatter-sarif@10.2.2': dependencies: - '@smithy/is-array-buffer': 4.2.2 - tslib: 2.8.1 + node-sarif-builder: 3.4.0 - '@smithy/util-config-provider@4.2.2': + '@secretlint/secretlint-rule-no-dotenv@10.2.2': dependencies: - tslib: 2.8.1 + '@secretlint/types': 10.2.2 - '@smithy/util-defaults-mode-browser@4.3.39': - dependencies: - '@smithy/property-provider': 4.2.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - tslib: 2.8.1 + '@secretlint/secretlint-rule-preset-recommend@10.2.2': {} - '@smithy/util-defaults-mode-node@4.2.42': + '@secretlint/source-creator@10.2.2': dependencies: - '@smithy/config-resolver': 4.4.10 - '@smithy/credential-provider-imds': 4.2.11 - '@smithy/node-config-provider': 4.3.11 - '@smithy/property-provider': 4.2.11 - '@smithy/smithy-client': 4.12.3 - '@smithy/types': 4.13.0 - tslib: 2.8.1 + '@secretlint/types': 10.2.2 + istextorbinary: 9.5.0 - '@smithy/util-endpoints@3.3.2': - dependencies: - '@smithy/node-config-provider': 4.3.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 + '@secretlint/types@10.2.2': {} - '@smithy/util-hex-encoding@4.2.2': + '@selderee/plugin-htmlparser2@0.11.0': dependencies: - tslib: 2.8.1 + domhandler: 5.0.3 + selderee: 0.11.0 - '@smithy/util-hex-encoding@4.4.11': - dependencies: - '@smithy/core': 3.29.6 - tslib: 2.8.1 + '@sinclair/typebox@0.27.12': {} - '@smithy/util-middleware@4.2.11': - dependencies: - '@smithy/types': 4.13.0 - tslib: 2.8.1 + '@sindresorhus/is@4.6.0': {} + + '@sindresorhus/merge-streams@2.3.0': {} - '@smithy/util-retry@4.2.11': + '@sinonjs/commons@3.0.1': dependencies: - '@smithy/service-error-classification': 4.2.11 - '@smithy/types': 4.13.0 - tslib: 2.8.1 + type-detect: 4.0.8 - '@smithy/util-stream@4.5.17': + '@sinonjs/fake-timers@10.3.0': dependencies: - '@smithy/fetch-http-handler': 5.3.13 - '@smithy/node-http-handler': 4.4.14 - '@smithy/types': 4.13.0 - '@smithy/util-base64': 4.3.2 - '@smithy/util-buffer-from': 4.2.2 - '@smithy/util-hex-encoding': 4.2.2 - '@smithy/util-utf8': 4.2.2 - tslib: 2.8.1 + '@sinonjs/commons': 3.0.1 - '@smithy/util-uri-escape@4.2.2': + '@smithy/core@3.29.7': dependencies: + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@smithy/util-utf8@2.3.0': + '@smithy/credential-provider-imds@4.4.12': dependencies: - '@smithy/util-buffer-from': 2.2.0 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@smithy/util-utf8@4.2.2': + '@smithy/fetch-http-handler@5.6.9': dependencies: - '@smithy/util-buffer-from': 4.2.2 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@smithy/util-waiter@4.2.11': + '@smithy/node-http-handler@4.9.9': dependencies: - '@smithy/abort-controller': 4.3.3 - '@smithy/types': 4.13.0 + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@smithy/uuid@1.1.2': + '@smithy/signature-v4@5.6.8': dependencies: + '@smithy/core': 3.29.7 + '@smithy/types': 4.16.1 tslib: 2.8.1 - '@swc/helpers@0.5.15': + '@smithy/types@4.16.1': dependencies: tslib: 2.8.1 @@ -23365,18 +20919,18 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@textlint/ast-node-types@14.7.1': {} + '@textlint/ast-node-types@15.7.1': {} - '@textlint/linter-formatter@14.7.1': + '@textlint/linter-formatter@15.7.1(supports-color@8.1.1)': dependencies: '@azu/format-text': 1.0.2 '@azu/style-format': 1.0.1 - '@textlint/module-interop': 14.7.1 - '@textlint/resolver': 14.7.1 - '@textlint/types': 14.7.1 + '@textlint/module-interop': 15.7.1 + '@textlint/resolver': 15.7.1 + '@textlint/types': 15.7.1 chalk: 4.1.2 debug: 4.4.3(supports-color@8.1.1) - js-yaml: 3.15.0 + js-yaml: 4.3.0 lodash: 4.18.1 pluralize: 2.0.0 string-width: 4.2.3 @@ -23386,13 +20940,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@textlint/module-interop@14.7.1': {} + '@textlint/module-interop@15.7.1': {} - '@textlint/resolver@14.7.1': {} + '@textlint/resolver@15.7.1': {} - '@textlint/types@14.7.1': + '@textlint/types@15.7.1': dependencies: - '@textlint/ast-node-types': 14.7.1 + '@textlint/ast-node-types': 15.7.1 '@tootallnate/quickjs-emscripten@0.23.0': {} @@ -23426,9 +20980,9 @@ snapshots: '@types/accepts@1.3.7': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 - '@types/async@3.2.24': {} + '@types/async@3.2.25': {} '@types/babel__code-frame@7.27.0': {} @@ -23453,33 +21007,24 @@ snapshots: dependencies: '@babel/types': 7.29.7 - '@types/better-sqlite3@7.6.11': - dependencies: - '@types/node': 26.1.1 - '@types/better-sqlite3@7.6.13': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 26.1.1 - - '@types/body-parser@1.19.6': - dependencies: - '@types/connect': 3.4.38 - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/bonjour@3.5.13': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.2.0 '@types/keyv': 3.1.4 - '@types/node': 24.13.3 + '@types/node': 22.20.1 '@types/responselike': 1.0.3 '@types/chai-dom@1.11.3': @@ -23500,8 +21045,8 @@ snapshots: '@types/chrome@0.0.256': dependencies: - '@types/filesystem': 0.0.35 - '@types/har-format': 1.2.15 + '@types/filesystem': 0.0.36 + '@types/har-format': 1.2.16 '@types/chrome@0.0.278': dependencies: @@ -23510,21 +21055,19 @@ snapshots: '@types/co-body@6.1.3': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/qs': 6.15.1 '@types/command-line-args@5.2.3': {} - '@types/command-line-usage@5.0.4': {} - '@types/connect-history-api-fallback@1.5.4': dependencies: - '@types/express-serve-static-core': 4.19.8 - '@types/node': 26.1.1 + '@types/express-serve-static-core': 4.19.9 + '@types/node': 22.20.1 '@types/connect@3.4.38': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/content-disposition@0.5.9': {} @@ -23533,19 +21076,21 @@ snapshots: '@types/cookies@0.9.2': dependencies: '@types/connect': 3.4.38 - '@types/express': 5.0.6 + '@types/express': 4.17.25 '@types/keygrip': 1.0.6 - '@types/node': 26.1.1 + '@types/node': 22.20.1 - '@types/cors@2.8.18': + '@types/cors@2.8.19': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 - '@types/cytoscape-dagre@2.3.3': + '@types/cytoscape-dagre@2.3.4': dependencies: - '@types/cytoscape': 3.21.9 + cytoscape: 3.34.0 - '@types/cytoscape@3.21.9': {} + '@types/cytoscape@3.31.0': + dependencies: + cytoscape: 3.34.0 '@types/d3-array@3.2.2': {} @@ -23602,7 +21147,7 @@ snapshots: '@types/d3-quadtree@3.0.6': {} - '@types/d3-random@3.0.3': {} + '@types/d3-random@3.0.4': {} '@types/d3-scale-chromatic@3.1.0': {} @@ -23653,7 +21198,7 @@ snapshots: '@types/d3-path': 3.1.1 '@types/d3-polygon': 3.0.2 '@types/d3-quadtree': 3.0.6 - '@types/d3-random': 3.0.3 + '@types/d3-random': 3.0.4 '@types/d3-scale': 4.0.9 '@types/d3-scale-chromatic': 3.1.0 '@types/d3-selection': 3.0.11 @@ -23664,85 +21209,38 @@ snapshots: '@types/d3-transition': 3.0.9 '@types/d3-zoom': 3.0.8 - '@types/dagre@0.7.52': {} + '@types/dagre@0.7.54': {} '@types/debounce@1.2.4': {} - '@types/debug@4.1.12': - dependencies: - '@types/ms': 0.7.33 - '@types/debug@4.1.13': dependencies: '@types/ms': 2.1.0 '@types/deep-eql@4.0.2': {} - '@types/eslint-scope@3.7.7': - dependencies: - '@types/eslint': 9.6.1 - '@types/estree': 1.0.9 - - '@types/eslint@9.6.1': - dependencies: - '@types/estree': 1.0.9 - '@types/json-schema': 7.0.15 - '@types/esrecurse@4.3.1': {} - '@types/estree@1.0.8': {} - '@types/estree@1.0.9': {} - '@types/express-serve-static-core@4.17.41': - dependencies: - '@types/node': 26.1.1 - '@types/qs': 6.15.0 - '@types/range-parser': 1.2.7 - '@types/send': 0.17.4 - - '@types/express-serve-static-core@4.19.8': + '@types/express-serve-static-core@4.19.9': dependencies: - '@types/node': 26.1.1 - '@types/qs': 6.15.1 - '@types/range-parser': 1.2.7 - '@types/send': 1.2.1 - - '@types/express-serve-static-core@5.1.2': - dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/qs': 6.15.1 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 - '@types/express@4.17.21': - dependencies: - '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.41 - '@types/qs': 6.15.0 - '@types/serve-static': 1.15.5 - '@types/express@4.17.25': dependencies: - '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 4.19.8 + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 4.19.9 '@types/qs': 6.15.1 '@types/serve-static': 1.15.10 - '@types/express@5.0.6': - dependencies: - '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 5.1.2 - '@types/serve-static': 2.2.0 - '@types/fast-levenshtein@0.0.4': {} '@types/file-size@1.0.3': {} - '@types/filesystem@0.0.35': - dependencies: - '@types/filewriter': 0.0.33 - '@types/filesystem@0.0.36': dependencies: '@types/filewriter': 0.0.33 @@ -23751,12 +21249,12 @@ snapshots: '@types/find-config@1.0.4': {} - '@types/firefox-webext-browser@120.0.4': {} + '@types/firefox-webext-browser@120.0.5': {} '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/fs-extra@9.0.13': dependencies: @@ -23767,17 +21265,15 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 6.0.0 - '@types/node': 22.15.18 + '@types/node': 22.20.1 '@types/graceful-fs@4.1.9': dependencies: '@types/node': 22.20.1 - '@types/har-format@1.2.15': {} - '@types/har-format@1.2.16': {} - '@types/hast@3.0.4': + '@types/hast@3.0.5': dependencies: '@types/unist': 3.0.3 @@ -23789,28 +21285,18 @@ snapshots: '@types/http-cache-semantics@4.2.0': {} - '@types/http-errors@2.0.4': {} - '@types/http-errors@2.0.5': {} '@types/http-proxy@1.17.17': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/istanbul-lib-coverage@2.0.6': {} - '@types/istanbul-lib-report@3.0.2': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports@3.0.3': - dependencies: - '@types/istanbul-lib-report': 3.0.2 - '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 @@ -23820,46 +21306,46 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/jquery@3.5.32': + '@types/jquery@3.5.34': dependencies: - '@types/sizzle': 2.3.8 + '@types/sizzle': 2.3.10 '@types/js-yaml@4.0.9': {} '@types/jsdom@20.0.1': dependencies: - '@types/node': 22.15.18 + '@types/node': 22.20.1 '@types/tough-cookie': 4.0.5 parse5: 7.3.0 - '@types/jsdom@28.0.0': + '@types/jsdom@28.0.3': dependencies: - '@types/node': 22.15.18 + '@types/node': 22.20.1 '@types/tough-cookie': 4.0.5 - parse5: 7.3.0 - undici-types: 7.24.4 + parse5: 8.0.1 + undici-types: 7.28.0 '@types/json-schema@7.0.15': {} '@types/jsonfile@6.1.4': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/jsonpath@0.2.4': {} - '@types/katex@0.16.7': {} + '@types/katex@0.16.8': {} '@types/keygrip@1.0.6': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 24.13.3 + '@types/node': 22.20.1 '@types/koa-compose@3.2.9': dependencies: - '@types/koa': 2.15.0 + '@types/koa': 2.15.2 - '@types/koa@2.15.0': + '@types/koa@2.15.2': dependencies: '@types/accepts': 1.3.7 '@types/content-disposition': 0.5.9 @@ -23868,29 +21354,19 @@ snapshots: '@types/http-errors': 2.0.5 '@types/keygrip': 1.0.6 '@types/koa-compose': 3.2.9 - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/linkify-it@5.0.0': {} '@types/lodash-es@4.17.12': - dependencies: - '@types/lodash': 4.17.17 - - '@types/lodash.debounce@4.0.9': - dependencies: - '@types/lodash': 4.17.24 - - '@types/lodash.throttle@4.1.9': dependencies: '@types/lodash': 4.17.24 - '@types/lodash@4.17.17': {} - '@types/lodash@4.17.24': {} '@types/mailparser@3.4.6': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 iconv-lite: 0.6.3 '@types/markdown-it@14.1.2': @@ -23906,8 +21382,6 @@ snapshots: '@types/mime@1.3.5': {} - '@types/mime@3.0.4': {} - '@types/minimatch@3.0.5': {} '@types/minimatch@6.0.0': @@ -23916,35 +21390,21 @@ snapshots: '@types/mocha@10.0.10': {} - '@types/ms@0.7.33': {} - '@types/ms@2.1.0': {} - '@types/node-fetch@2.6.12': + '@types/node-fetch@2.6.13': dependencies: - '@types/node': 22.15.18 + '@types/node': 22.20.1 form-data: 4.0.6 '@types/node@18.19.130': dependencies: undici-types: 5.26.5 - '@types/node@20.19.40': - dependencies: - undici-types: 6.21.0 - '@types/node@20.19.43': dependencies: undici-types: 6.21.0 - '@types/node@22.15.18': - dependencies: - undici-types: 6.21.0 - - '@types/node@22.19.19': - dependencies: - undici-types: 6.21.0 - '@types/node@22.20.1': dependencies: undici-types: 6.21.0 @@ -23953,10 +21413,6 @@ snapshots: dependencies: undici-types: 7.18.2 - '@types/node@26.1.1': - dependencies: - undici-types: 8.3.0 - '@types/normalize-package-data@2.4.4': {} '@types/parse5@6.0.3': {} @@ -23967,23 +21423,21 @@ snapshots: xmlbuilder: 15.1.1 optional: true - '@types/prismjs@1.26.5': {} + '@types/prismjs@1.26.6': {} - '@types/prop-types@15.7.14': {} + '@types/prop-types@15.7.15': {} '@types/proper-lockfile@4.1.4': dependencies: - '@types/retry': 0.12.2 - - '@types/qs@6.15.0': {} + '@types/retry': 0.12.5 '@types/qs@6.15.1': {} '@types/range-parser@1.2.7': {} - '@types/react@18.3.18': + '@types/react@18.3.31': dependencies: - '@types/prop-types': 15.7.14 + '@types/prop-types': 15.7.15 csstype: 3.2.3 '@types/regexp.escape@2.0.0': {} @@ -23992,27 +21446,24 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 24.13.3 + '@types/node': 22.20.1 '@types/retry@0.12.2': {} + '@types/retry@0.12.5': {} + '@types/sarif@2.1.7': {} '@types/semver@7.7.1': {} - '@types/send@0.17.4': - dependencies: - '@types/mime': 1.3.5 - '@types/node': 26.1.1 - '@types/send@0.17.6': dependencies: '@types/mime': 1.3.5 - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/send@1.2.1': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/serve-index@1.9.4': dependencies: @@ -24021,40 +21472,29 @@ snapshots: '@types/serve-static@1.15.10': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/send': 0.17.6 - '@types/serve-static@1.15.5': - dependencies: - '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 26.1.1 - - '@types/serve-static@2.2.0': - dependencies: - '@types/http-errors': 2.0.5 - '@types/node': 26.1.1 - '@types/sinon-chai@3.2.12': dependencies: '@types/chai': 5.2.3 - '@types/sinon': 21.0.1 + '@types/sinon': 22.0.0 - '@types/sinon@21.0.1': + '@types/sinon@22.0.0': dependencies: '@types/sinonjs__fake-timers': 15.0.1 '@types/sinonjs__fake-timers@15.0.1': {} - '@types/sizzle@2.3.8': {} + '@types/sizzle@2.3.10': {} '@types/sockjs@0.3.36': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/spotify-api@0.0.25': {} - '@types/stack-utils@2.0.2': {} + '@types/stack-utils@2.0.3': {} '@types/tough-cookie@4.0.5': {} @@ -24067,7 +21507,7 @@ snapshots: '@types/verror@1.10.11': optional: true - '@types/vscode@1.100.0': {} + '@types/vscode@1.125.0': {} '@types/webidl-conversions@7.0.3': {} @@ -24075,7 +21515,7 @@ snapshots: '@types/webvtt-parser@2.2.0': {} - '@types/whatwg-url@11.0.4': + '@types/whatwg-url@11.0.5': dependencies: '@types/webidl-conversions': 7.0.3 @@ -24083,15 +21523,15 @@ snapshots: '@types/ws@7.4.7': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/ws@8.18.1': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/xml2js@0.4.14': dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 '@types/yargs-parser@21.0.3': {} @@ -24101,18 +21541,18 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 24.13.3 + '@types/node': 22.20.1 optional: true - '@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/type-utils': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.62.1 - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/type-utils': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.65.0 + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@5.9.3) @@ -24120,15 +21560,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/type-utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.62.1 - eslint: 10.6.0(jiti@2.7.0) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/type-utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.65.0 + eslint: 10.7.0(jiti@2.7.0) ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@5.9.3) @@ -24136,35 +21576,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': - dependencies: - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.62.1 - debug: 4.4.3(supports-color@8.1.1) - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.62.1 + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.65.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 10.6.0(jiti@2.7.0) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.62.1(typescript@5.9.3)': + '@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3) - '@typescript-eslint/types': 8.62.1 + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.65.0 debug: 4.4.3(supports-color@8.1.1) + eslint: 10.7.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -24178,62 +21609,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.62.1': - dependencies: - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/visitor-keys': 8.62.1 - - '@typescript-eslint/tsconfig-utils@8.62.1(typescript@5.9.3)': + '@typescript-eslint/scope-manager@8.65.0': dependencies: - typescript: 5.9.3 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/visitor-keys': 8.65.0 '@typescript-eslint/tsconfig-utils@8.65.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) - eslint: 10.6.0(jiti@2.7.0) + eslint: 10.7.0(jiti@2.7.0) ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.62.1': {} - '@typescript-eslint/types@8.65.0': {} - '@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3)': - dependencies: - '@typescript-eslint/project-service': 8.62.1(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3) - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/visitor-keys': 8.62.1 - debug: 4.4.3(supports-color@8.1.1) - minimatch: 10.2.5 - semver: 7.8.5 - tinyglobby: 0.2.17 - ts-api-utils: 2.5.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@8.65.0(typescript@5.9.3)': dependencies: '@typescript-eslint/project-service': 8.65.0(typescript@5.9.3) @@ -24249,59 +21659,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3)': + '@typescript-eslint/utils@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1)) - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1)) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0)) - '@typescript-eslint/scope-manager': 8.62.1 - '@typescript-eslint/types': 8.62.1 - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - eslint: 10.6.0(jiti@2.7.0) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.7.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + eslint: 10.7.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.62.1': - dependencies: - '@typescript-eslint/types': 8.62.1 - eslint-visitor-keys: 5.0.1 - '@typescript-eslint/visitor-keys@8.65.0': dependencies: '@typescript-eslint/types': 8.65.0 eslint-visitor-keys: 5.0.1 - '@typespec/ts-http-runtime@0.2.2': - dependencies: - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - tslib: 2.6.2 - transitivePeerDependencies: - - supports-color - - '@typespec/ts-http-runtime@0.3.3': - dependencies: - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.6 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@typespec/ts-http-runtime@0.3.7': dependencies: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -24317,12 +21706,12 @@ snapshots: '@types/mocha': 10.0.10 c8: 10.1.3 chokidar: 3.6.0 - enhanced-resolve: 5.19.0 + enhanced-resolve: 5.24.3 glob: 10.5.0 minimatch: 9.0.9 mocha: 11.7.6 supports-color: 10.2.2 - yargs: 17.7.2 + yargs: 17.7.3 transitivePeerDependencies: - monocart-coverage-reports @@ -24332,93 +21721,85 @@ snapshots: https-proxy-agent: 7.0.6 jszip: 3.10.1 ora: 8.2.0 - semver: 7.8.0 + semver: 7.8.5 transitivePeerDependencies: - supports-color - '@vscode/vsce-sign-alpine-arm64@2.0.2': + '@vscode/vsce-sign-alpine-arm64@2.0.6': optional: true - '@vscode/vsce-sign-alpine-x64@2.0.2': + '@vscode/vsce-sign-alpine-x64@2.0.6': optional: true - '@vscode/vsce-sign-darwin-arm64@2.0.2': + '@vscode/vsce-sign-darwin-arm64@2.0.6': optional: true - '@vscode/vsce-sign-darwin-x64@2.0.2': + '@vscode/vsce-sign-darwin-x64@2.0.6': optional: true - '@vscode/vsce-sign-linux-arm64@2.0.2': + '@vscode/vsce-sign-linux-arm64@2.0.6': optional: true - '@vscode/vsce-sign-linux-arm@2.0.2': + '@vscode/vsce-sign-linux-arm@2.0.6': optional: true - '@vscode/vsce-sign-linux-x64@2.0.2': + '@vscode/vsce-sign-linux-x64@2.0.6': optional: true - '@vscode/vsce-sign-win32-arm64@2.0.2': + '@vscode/vsce-sign-win32-arm64@2.0.6': optional: true - '@vscode/vsce-sign-win32-x64@2.0.2': + '@vscode/vsce-sign-win32-x64@2.0.6': optional: true - '@vscode/vsce-sign@2.0.5': + '@vscode/vsce-sign@2.0.9': optionalDependencies: - '@vscode/vsce-sign-alpine-arm64': 2.0.2 - '@vscode/vsce-sign-alpine-x64': 2.0.2 - '@vscode/vsce-sign-darwin-arm64': 2.0.2 - '@vscode/vsce-sign-darwin-x64': 2.0.2 - '@vscode/vsce-sign-linux-arm': 2.0.2 - '@vscode/vsce-sign-linux-arm64': 2.0.2 - '@vscode/vsce-sign-linux-x64': 2.0.2 - '@vscode/vsce-sign-win32-arm64': 2.0.2 - '@vscode/vsce-sign-win32-x64': 2.0.2 - - '@vscode/vsce@3.4.0(supports-color@8.1.1)': + '@vscode/vsce-sign-alpine-arm64': 2.0.6 + '@vscode/vsce-sign-alpine-x64': 2.0.6 + '@vscode/vsce-sign-darwin-arm64': 2.0.6 + '@vscode/vsce-sign-darwin-x64': 2.0.6 + '@vscode/vsce-sign-linux-arm': 2.0.6 + '@vscode/vsce-sign-linux-arm64': 2.0.6 + '@vscode/vsce-sign-linux-x64': 2.0.6 + '@vscode/vsce-sign-win32-arm64': 2.0.6 + '@vscode/vsce-sign-win32-x64': 2.0.6 + + '@vscode/vsce@3.9.2(supports-color@8.1.1)': dependencies: '@azure/identity': 4.13.1 - '@secretlint/node': 9.3.2 - '@secretlint/secretlint-formatter-sarif': 9.3.2 - '@secretlint/secretlint-rule-no-dotenv': 9.3.2 - '@secretlint/secretlint-rule-preset-recommend': 9.3.2 - '@vscode/vsce-sign': 2.0.5 + '@secretlint/node': 10.2.2(supports-color@8.1.1) + '@secretlint/secretlint-formatter-sarif': 10.2.2 + '@secretlint/secretlint-rule-no-dotenv': 10.2.2 + '@secretlint/secretlint-rule-preset-recommend': 10.2.2 + '@vscode/vsce-sign': 2.0.9 azure-devops-node-api: 12.5.0 - chalk: 2.4.2 + chalk: 4.1.2 cheerio: 1.2.0 cockatiel: 3.2.1 commander: 12.1.0 form-data: 4.0.6 - glob: 11.1.0 + glob: 13.0.6 hosted-git-info: 4.1.0 - jsonc-parser: 3.2.1 + jsonc-parser: 3.3.1 leven: 3.1.0 markdown-it: 14.3.0 mime: 1.6.0 - minimatch: 3.1.5 + minimatch: 10.2.5 parse-semver: 1.1.1 read: 1.0.7 - secretlint: 9.3.2(supports-color@8.1.1) - semver: 7.8.4 + secretlint: 10.2.2(supports-color@8.1.1) + semver: 7.8.5 tmp: 0.2.7 typed-rest-client: 1.8.11 url-join: 4.0.1 xml2js: 0.5.0 - yauzl: 2.10.0 + yauzl: 3.4.0 yazl: 2.5.1 optionalDependencies: keytar: 7.9.0 transitivePeerDependencies: - supports-color - '@vue/compiler-core@3.5.16': - dependencies: - '@babel/parser': 7.29.7 - '@vue/shared': 3.5.16 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 - '@vue/compiler-core@3.5.40': dependencies: '@babel/parser': 7.29.7 @@ -24427,28 +21808,11 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.16': - dependencies: - '@vue/compiler-core': 3.5.16 - '@vue/shared': 3.5.16 - '@vue/compiler-dom@3.5.40': dependencies: '@vue/compiler-core': 3.5.40 '@vue/shared': 3.5.40 - '@vue/compiler-sfc@3.5.16': - dependencies: - '@babel/parser': 7.29.7 - '@vue/compiler-core': 3.5.16 - '@vue/compiler-dom': 3.5.16 - '@vue/compiler-ssr': 3.5.16 - '@vue/shared': 3.5.16 - estree-walker: 2.0.2 - magic-string: 0.30.21 - postcss: 8.5.21 - source-map-js: 1.2.1 - '@vue/compiler-sfc@3.5.40': dependencies: '@babel/parser': 7.29.7 @@ -24458,54 +21822,47 @@ snapshots: '@vue/shared': 3.5.40 estree-walker: 2.0.2 magic-string: 0.30.21 - postcss: 8.5.21 + postcss: 8.5.22 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.16': - dependencies: - '@vue/compiler-dom': 3.5.16 - '@vue/shared': 3.5.16 - '@vue/compiler-ssr@3.5.40': dependencies: '@vue/compiler-dom': 3.5.40 '@vue/shared': 3.5.40 - '@vue/reactivity@3.5.16': + '@vue/reactivity@3.5.40': dependencies: - '@vue/shared': 3.5.16 + '@vue/shared': 3.5.40 - '@vue/runtime-core@3.5.16': + '@vue/runtime-core@3.5.40': dependencies: - '@vue/reactivity': 3.5.16 - '@vue/shared': 3.5.16 + '@vue/reactivity': 3.5.40 + '@vue/shared': 3.5.40 - '@vue/runtime-dom@3.5.16': + '@vue/runtime-dom@3.5.40': dependencies: - '@vue/reactivity': 3.5.16 - '@vue/runtime-core': 3.5.16 - '@vue/shared': 3.5.16 - csstype: 3.1.3 + '@vue/reactivity': 3.5.40 + '@vue/runtime-core': 3.5.40 + '@vue/shared': 3.5.40 + csstype: 3.2.3 - '@vue/server-renderer@3.5.16(vue@3.5.16(typescript@5.4.5))': + '@vue/server-renderer@3.5.40': dependencies: - '@vue/compiler-ssr': 3.5.16 - '@vue/shared': 3.5.16 - vue: 3.5.16(typescript@5.4.5) - - '@vue/shared@3.5.16': {} + '@vue/compiler-ssr': 3.5.40 + '@vue/runtime-dom': 3.5.40 + '@vue/shared': 3.5.40 '@vue/shared@3.5.40': {} '@web/browser-logs@0.4.1': dependencies: - errorstacks: 2.4.1 + errorstacks: 2.4.2 '@web/config-loader@0.3.3': {} '@web/dev-server-core@0.7.5': dependencies: - '@types/koa': 2.15.0 + '@types/koa': 2.15.2 '@types/ws': 7.4.7 '@web/parse5-utils': 2.1.1 chokidar: 4.0.3 @@ -24543,20 +21900,20 @@ snapshots: '@web/dev-server@0.4.6': dependencies: - '@babel/code-frame': 7.27.1 + '@babel/code-frame': 7.29.7 '@types/command-line-args': 5.2.3 '@web/config-loader': 0.3.3 '@web/dev-server-core': 0.7.5 '@web/dev-server-rollup': 0.6.4 camelcase: 6.3.0 command-line-args: 5.2.1 - command-line-usage: 7.0.3 + command-line-usage: 7.0.4 debounce: 1.2.1 deepmerge: 4.3.1 internal-ip: 6.2.0 nanocolors: 0.2.13 open: 8.4.2 - portfinder: 1.0.38(supports-color@8.1.1) + portfinder: 1.0.38 transitivePeerDependencies: - bufferutil - supports-color @@ -24593,13 +21950,13 @@ snapshots: '@web/test-runner-core@0.13.4': dependencies: - '@babel/code-frame': 7.27.1 + '@babel/code-frame': 7.29.7 '@types/babel__code-frame': 7.27.0 '@types/co-body': 6.1.3 '@types/convert-source-map': 2.0.3 '@types/debounce': 1.2.4 '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.3 + '@types/istanbul-reports': 3.0.4 '@web/browser-logs': 0.4.1 '@web/dev-server-core': 0.7.5 chokidar: 4.0.3 @@ -24648,7 +22005,7 @@ snapshots: dependencies: '@web/test-runner-core': 0.13.4 '@web/test-runner-coverage-v8': 0.8.0 - playwright: 1.57.0 + playwright: 1.61.1 transitivePeerDependencies: - bufferutil - supports-color @@ -24665,13 +22022,13 @@ snapshots: '@web/test-runner-mocha': 0.9.0 camelcase: 6.3.0 command-line-args: 5.2.1 - command-line-usage: 7.0.3 + command-line-usage: 7.0.4 convert-source-map: 2.0.0 diff: 5.2.2 globby: 11.1.0 nanocolors: 0.2.13 - portfinder: 1.0.38(supports-color@8.1.1) - source-map: 0.7.4 + portfinder: 1.0.38 + source-map: 0.7.6 transitivePeerDependencies: - bare-abort-controller - bare-buffer @@ -24756,27 +22113,26 @@ snapshots: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 - '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.105.0)': + '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.108.4)': dependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) - '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.105.0)': + '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.108.4)': dependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) - '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.105.0)': + '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.108.4)': dependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) optionalDependencies: - webpack-dev-server: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + webpack-dev-server: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) '@xmldom/xmldom@0.8.13': {} - '@xmldom/xmldom@0.9.10': - optional: true + '@xmldom/xmldom@0.9.10': {} '@xtuc/ieee754@1.2.0': {} @@ -24837,17 +22193,12 @@ snapshots: transitivePeerDependencies: - supports-color - agent-base@7.1.3: {} + agent-base@7.1.4: {} agentkeepalive@4.6.0: dependencies: humanize-ms: 1.2.1 - aggregate-error@3.1.0: - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - ajv-formats@2.1.1(ajv@8.20.0): optionalDependencies: ajv: 8.20.0 @@ -24872,13 +22223,6 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.18.0: - dependencies: - fast-deep-equal: 3.1.3 - fast-uri: 3.1.4 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - ajv@8.20.0: dependencies: fast-deep-equal: 3.1.3 @@ -24892,10 +22236,6 @@ snapshots: dependencies: type-fest: 0.21.3 - ansi-escapes@7.0.0: - dependencies: - environment: 1.1.0 - ansi-escapes@7.3.0: dependencies: environment: 1.1.0 @@ -24906,10 +22246,6 @@ snapshots: ansi-regex@6.2.2: {} - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 @@ -24918,8 +22254,6 @@ snapshots: ansi-styles@6.2.3: {} - ansi_up@6.0.5: {} - ansi_up@6.0.6: {} ansis@3.17.0: {} @@ -24933,18 +22267,6 @@ snapshots: anynum@1.0.1: {} - apache-arrow@18.1.0: - dependencies: - '@swc/helpers': 0.5.15 - '@types/command-line-args': 5.2.3 - '@types/command-line-usage': 5.0.4 - '@types/node': 20.19.43 - command-line-args: 5.2.1 - command-line-usage: 7.0.3 - flatbuffers: 24.3.25 - json-bignum: 0.0.3 - tslib: 2.8.1 - app-builder-bin@5.0.0-alpha.12: {} app-builder-lib@26.8.1(dmg-builder@26.8.1)(electron-builder-squirrel-windows@26.8.1): @@ -25013,7 +22335,7 @@ snapshots: lazystream: 1.0.1 lodash: 4.18.1 normalize-path: 3.0.0 - readable-stream: 4.5.2 + readable-stream: 4.7.0 archiver@3.1.1: dependencies: @@ -25030,12 +22352,14 @@ snapshots: archiver-utils: 5.0.2 async: 3.2.6 buffer-crc32: 1.0.0 - readable-stream: 4.5.2 + readable-stream: 4.7.0 readdir-glob: 1.1.3 - tar-stream: 3.1.7 + tar-stream: 3.2.0 zip-stream: 6.0.1 transitivePeerDependencies: - bare-abort-controller + - bare-buffer + - react-native-b4a arg@4.1.3: {} @@ -25049,7 +22373,7 @@ snapshots: array-back@3.1.0: {} - array-back@6.2.2: {} + array-back@6.2.3: {} array-buffer-byte-length@1.0.2: dependencies: @@ -25065,9 +22389,9 @@ snapshots: arraybuffer.prototype.slice@1.0.4: dependencies: array-buffer-byte-length: 1.0.2 - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.2 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 @@ -25125,15 +22449,13 @@ snapshots: dependencies: possible-typed-array-names: 1.1.0 - axe-core@4.11.4: {} + axe-core@4.12.1: {} azure-devops-node-api@12.5.0: dependencies: tunnel: 0.0.6 typed-rest-client: 1.8.11 - b4a@1.6.7: {} - b4a@1.8.1: {} babel-jest@29.7.0(@babel/core@7.29.7): @@ -25201,39 +22523,22 @@ snapshots: balanced-match@1.0.2: {} - balanced-match@4.0.3: {} + balanced-match@4.0.4: {} bare-events@2.9.1: {} - bare-fs@4.1.5: - dependencies: - bare-events: 2.9.1 - bare-path: 3.0.0 - bare-stream: 2.6.5(bare-events@2.9.1) - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - optional: true - bare-fs@4.7.4: dependencies: bare-events: 2.9.1 - bare-path: 3.0.0 + bare-path: 3.1.1 bare-stream: 2.13.3(bare-events@2.9.1) - bare-url: 2.4.5 + bare-url: 2.4.6 fast-fifo: 1.3.2 transitivePeerDependencies: - bare-abort-controller - react-native-b4a - bare-os@3.6.1: {} - - bare-path@3.0.0: - dependencies: - bare-os: 3.6.1 - - bare-path@3.1.1: - optional: true + bare-path@3.1.1: {} bare-stream@2.13.3(bare-events@2.9.1): dependencies: @@ -25245,25 +22550,15 @@ snapshots: transitivePeerDependencies: - react-native-b4a - bare-stream@2.6.5(bare-events@2.9.1): - dependencies: - streamx: 2.28.0 - optionalDependencies: - bare-events: 2.9.1 - transitivePeerDependencies: - - bare-abort-controller - - react-native-b4a - optional: true - - bare-url@2.4.5: + bare-url@2.4.6: dependencies: - bare-path: 3.0.0 + bare-path: 3.1.1 base64-js@1.5.1: {} baseline-browser-mapping@2.11.1: {} - basic-ftp@5.3.0: {} + basic-ftp@5.3.1: {} batch@0.6.1: {} @@ -25286,7 +22581,9 @@ snapshots: binary-extensions@2.3.0: {} - binaryextensions@4.19.0: {} + binaryextensions@6.11.0: + dependencies: + editions: 6.22.0 bindings@1.5.0: dependencies: @@ -25334,7 +22631,7 @@ snapshots: transitivePeerDependencies: - supports-color - bonjour-service@1.4.1: + bonjour-service@1.4.3: dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 @@ -25344,13 +22641,13 @@ snapshots: boolean@3.2.0: optional: true - bootstrap@5.3.6(@popperjs/core@2.11.8): + bootstrap@5.3.8(@popperjs/core@2.11.8): dependencies: '@popperjs/core': 2.11.8 boundary@2.0.0: {} - bowser@2.11.0: {} + bowser@2.14.1: {} brace-expansion@1.1.16: dependencies: @@ -25363,7 +22660,7 @@ snapshots: brace-expansion@5.0.8: dependencies: - balanced-match: 4.0.3 + balanced-match: 4.0.4 braces@3.0.3: dependencies: @@ -25375,7 +22672,7 @@ snapshots: dependencies: baseline-browser-mapping: 2.11.1 caniuse-lite: 1.0.30001806 - electron-to-chromium: 1.5.396 + electron-to-chromium: 1.5.395 node-releases: 2.0.51 update-browserslist-db: 1.2.3(browserslist@4.28.7) @@ -25387,7 +22684,7 @@ snapshots: dependencies: node-int64: 0.4.0 - bson@6.10.3: {} + bson@6.10.4: {} buffer-crc32@0.2.13: {} @@ -25412,14 +22709,14 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builder-util-runtime@9.3.1(supports-color@8.1.1): + builder-util-runtime@9.5.1: dependencies: debug: 4.4.3(supports-color@8.1.1) sax: 1.6.0 transitivePeerDependencies: - supports-color - builder-util-runtime@9.5.1: + builder-util-runtime@9.7.0(supports-color@8.1.1): dependencies: debug: 4.4.3(supports-color@8.1.1) sax: 1.6.0 @@ -25451,7 +22748,7 @@ snapshots: bundle-name@4.1.0: dependencies: - run-applescript: 7.0.0 + run-applescript: 7.1.0 bytes@3.1.2: {} @@ -25462,15 +22759,15 @@ snapshots: c8@10.1.3: dependencies: '@bcoe/v8-coverage': 1.0.2 - '@istanbuljs/schema': 0.1.3 + '@istanbuljs/schema': 0.1.6 find-up: 5.0.0 foreground-child: 3.3.1 - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 - istanbul-reports: 3.1.6 - test-exclude: 7.0.1 - v8-to-istanbul: 9.1.3 - yargs: 17.7.2 + istanbul-reports: 3.2.0 + test-exclude: 7.0.2 + v8-to-istanbul: 9.3.0 + yargs: 17.7.3 yargs-parser: 21.1.1 cac@6.7.14: {} @@ -25497,7 +22794,7 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 - call-bind@1.0.8: + call-bind@1.0.9: dependencies: call-bind-apply-helpers: 1.0.2 es-define-property: 1.0.1 @@ -25528,18 +22825,12 @@ snapshots: chai-a11y-axe@1.5.0: dependencies: - axe-core: 4.11.4 + axe-core: 4.12.1 chalk-template@0.4.0: dependencies: chalk: 4.1.2 - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@4.1.2: dependencies: ansi-styles: 4.3.0 @@ -25557,40 +22848,26 @@ snapshots: dependencies: is-regex: 1.2.1 - chardet@2.1.0: {} + chardet@2.2.0: {} cheerio-select@2.1.0: dependencies: boolbase: 1.0.0 - css-select: 5.1.0 - css-what: 6.1.0 + css-select: 5.2.2 + css-what: 6.2.2 domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.2 cheerio@1.0.0-rc.12: - dependencies: - cheerio-select: 2.1.0 - dom-serializer: 2.0.0 - domhandler: 5.0.3 - domutils: 3.1.0 - htmlparser2: 8.0.2 - parse5: 7.1.2 - parse5-htmlparser2-tree-adapter: 7.0.0 - - cheerio@1.1.0: dependencies: cheerio-select: 2.1.0 dom-serializer: 2.0.0 domhandler: 5.0.3 domutils: 3.2.2 - encoding-sniffer: 0.2.1 - htmlparser2: 10.0.0 + htmlparser2: 8.0.2 parse5: 7.3.0 parse5-htmlparser2-tree-adapter: 7.1.0 - parse5-parser-stream: 7.1.2 - undici: 7.28.0 - whatwg-mimetype: 4.0.0 cheerio@1.2.0: dependencies: @@ -25628,7 +22905,7 @@ snapshots: chrome-launcher@0.15.2: dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -25643,9 +22920,9 @@ snapshots: mitt: 3.0.1 zod: 3.23.8 - chromium-bidi@14.0.0(devtools-protocol@0.0.1566079): + chromium-bidi@14.0.0(devtools-protocol@0.0.1608973): dependencies: - devtools-protocol: 0.0.1566079 + devtools-protocol: 0.0.1608973 mitt: 3.0.1 zod: 3.25.76 @@ -25655,14 +22932,14 @@ snapshots: ci-info@4.3.1: {} - cjs-module-lexer@1.2.3: {} + ci-info@4.4.0: {} + + cjs-module-lexer@1.4.3: {} clean-css@5.3.3: dependencies: source-map: 0.6.1 - clean-stack@2.2.0: {} - clean-stack@3.0.1: dependencies: escape-string-regexp: 4.0.0 @@ -25763,34 +23040,28 @@ snapshots: dependencies: convert-to-spaces: 2.0.1 - codemirror@6.0.1: + codemirror@6.0.2: dependencies: - '@codemirror/autocomplete': 6.18.6 - '@codemirror/commands': 6.8.1 - '@codemirror/language': 6.11.1 - '@codemirror/lint': 6.8.5 - '@codemirror/search': 6.5.11 - '@codemirror/state': 6.5.2 - '@codemirror/view': 6.37.2 - - collect-v8-coverage@1.0.2: {} + '@codemirror/autocomplete': 6.20.3 + '@codemirror/commands': 6.10.4 + '@codemirror/language': 6.12.4 + '@codemirror/lint': 6.9.7 + '@codemirror/search': 6.7.1 + '@codemirror/state': 6.7.1 + '@codemirror/view': 6.43.6 - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 + collect-v8-coverage@1.0.3: {} color-convert@2.0.1: dependencies: color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} color-string@1.9.1: dependencies: color-name: 1.1.4 - simple-swizzle: 0.2.2 + simple-swizzle: 0.2.4 color@4.2.3: dependencies: @@ -25812,9 +23083,9 @@ snapshots: lodash.camelcase: 4.3.0 typical: 4.0.0 - command-line-usage@7.0.3: + command-line-usage@7.0.4: dependencies: - array-back: 6.2.2 + array-back: 6.2.3 chalk-template: 0.4.0 table-layout: 4.1.1 typical: 7.3.0 @@ -25823,7 +23094,7 @@ snapshots: commander@12.1.0: {} - commander@14.0.2: {} + commander@14.0.3: {} commander@15.0.0: {} @@ -25854,7 +23125,7 @@ snapshots: crc32-stream: 6.0.0 is-stream: 2.0.1 normalize-path: 3.0.0 - readable-stream: 4.5.2 + readable-stream: 4.7.0 compressible@2.0.18: dependencies: @@ -25874,12 +23145,11 @@ snapshots: concat-map@0.0.1: {} - concurrently@9.1.2: + concurrently@9.2.4: dependencies: chalk: 4.1.2 - lodash: 4.18.1 - rxjs: 7.8.1 - shell-quote: 1.10.0 + rxjs: 7.8.2 + shell-quote: 1.9.0 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 @@ -25916,19 +23186,19 @@ snapshots: depd: 2.0.0 keygrip: 1.1.0 - copy-anything@2.0.6: + copy-anything@3.0.5: dependencies: - is-what: 3.14.1 + is-what: 4.1.16 - copy-webpack-plugin@12.0.2(webpack@5.105.0): + copy-webpack-plugin@12.0.2(webpack@5.108.4): dependencies: - fast-glob: 3.3.2 + fast-glob: 3.3.3 glob-parent: 6.0.2 - globby: 14.0.1 + globby: 14.1.0 normalize-path: 3.0.0 - schema-utils: 4.2.0 - serialize-javascript: 7.0.5 - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + schema-utils: 4.3.3 + serialize-javascript: 7.0.7 + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) copyfiles@2.4.1: dependencies: @@ -25938,18 +23208,13 @@ snapshots: noms: 0.0.0 through2: 2.0.5 untildify: 4.0.0 - yargs: 16.2.0 + yargs: 16.2.2 core-util-is@1.0.2: optional: true core-util-is@1.0.3: {} - cors@2.8.5: - dependencies: - object-assign: 4.1.1 - vary: 1.1.2 - cors@2.8.6: dependencies: object-assign: 4.1.1 @@ -25965,17 +23230,17 @@ snapshots: cosmiconfig@8.3.6(typescript@5.4.5): dependencies: - import-fresh: 3.3.0 + import-fresh: 3.3.1 js-yaml: 4.3.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: typescript: 5.4.5 - cosmiconfig@9.0.0(typescript@5.4.5): + cosmiconfig@9.0.2(typescript@5.4.5): dependencies: env-paths: 2.2.1 - import-fresh: 3.3.0 + import-fresh: 3.3.1 js-yaml: 4.3.0 parse-json: 5.2.0 optionalDependencies: @@ -25991,42 +23256,12 @@ snapshots: crc32-stream@6.0.0: dependencies: crc-32: 1.2.2 - readable-stream: 4.5.2 + readable-stream: 4.7.0 crc@3.8.0: dependencies: buffer: 5.7.1 - create-jest@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - create-jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - create-jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): dependencies: '@jest/types': 29.6.3 @@ -26042,28 +23277,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - create-jest@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): + create-jest@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -26074,8 +23294,6 @@ snapshots: create-require@1.1.1: {} - crelt@1.0.6: {} - crelt@1.0.7: {} cross-dirname@0.1.0: @@ -26114,12 +23332,12 @@ snapshots: domutils: 2.8.0 nth-check: 2.1.1 - css-select@5.1.0: + css-select@5.2.2: dependencies: boolbase: 1.0.0 - css-what: 6.1.0 + css-what: 6.2.2 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.2 nth-check: 2.1.1 css-tree@3.2.1: @@ -26127,8 +23345,6 @@ snapshots: mdn-data: 2.27.1 source-map-js: 1.2.1 - css-what@6.1.0: {} - css-what@6.2.2: {} cssfilter@0.0.10: {} @@ -26143,12 +23359,10 @@ snapshots: cssstyle@6.2.0: dependencies: - '@asamuzakjp/css-color': 5.0.1 - '@csstools/css-syntax-patches-for-csstree': 1.1.1(css-tree@3.2.1) + '@asamuzakjp/css-color': 5.1.11 + '@csstools/css-syntax-patches-for-csstree': 1.1.7(css-tree@3.2.1) css-tree: 3.2.1 - lru-cache: 11.2.7 - - csstype@3.1.3: {} + lru-cache: 11.5.2 csstype@3.2.3: {} @@ -26157,9 +23371,9 @@ snapshots: cose-base: 1.0.3 cytoscape: 3.34.0 - cytoscape-dagre@2.5.0(cytoscape@3.33.3): + cytoscape-dagre@2.5.0(cytoscape@3.34.0): dependencies: - cytoscape: 3.33.3 + cytoscape: 3.34.0 dagre: 0.8.5 cytoscape-fcose@2.2.0(cytoscape@3.34.0): @@ -26167,8 +23381,6 @@ snapshots: cose-base: 2.2.0 cytoscape: 3.34.0 - cytoscape@3.33.3: {} - cytoscape@3.34.0: {} d3-array@2.12.1: @@ -26193,7 +23405,7 @@ snapshots: dependencies: d3-path: 3.1.0 - d3-cloud@1.2.7: + d3-cloud@1.2.9: dependencies: d3-dispatch: 1.0.6 @@ -26205,7 +23417,7 @@ snapshots: d3-delaunay@6.0.4: dependencies: - delaunator: 5.0.1 + delaunator: 5.1.0 d3-dispatch@1.0.6: {} @@ -26234,7 +23446,7 @@ snapshots: d3-quadtree: 3.0.1 d3-timer: 3.0.1 - d3-format@3.1.0: {} + d3-format@3.1.2: {} d3-geo@3.1.1: dependencies: @@ -26269,7 +23481,7 @@ snapshots: d3-scale@4.0.2: dependencies: d3-array: 3.2.4 - d3-format: 3.1.0 + d3-format: 3.1.2 d3-interpolate: 3.0.1 d3-time: 3.1.0 d3-time-format: 4.1.0 @@ -26326,7 +23538,7 @@ snapshots: d3-ease: 3.0.1 d3-fetch: 3.0.1 d3-force: 3.0.0 - d3-format: 3.1.0 + d3-format: 3.1.2 d3-geo: 3.1.1 d3-hierarchy: 3.1.2 d3-interpolate: 3.0.1 @@ -26391,9 +23603,9 @@ snapshots: dependencies: '@babel/runtime': 7.29.7 - date-fns@4.1.0: {} + date-fns@4.4.0: {} - dayjs@1.11.20: {} + dayjs@1.11.21: {} dbus-next@0.10.2: dependencies: @@ -26415,12 +23627,6 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.1(supports-color@8.1.1): - dependencies: - ms: 2.1.3 - optionalDependencies: - supports-color: 8.1.1 - debug@4.4.3(supports-color@8.1.1): dependencies: ms: 2.1.3 @@ -26431,7 +23637,7 @@ snapshots: decimal.js@10.6.0: {} - decode-named-character-reference@1.1.0: + decode-named-character-reference@1.3.0: dependencies: character-entities: 2.0.2 @@ -26439,7 +23645,7 @@ snapshots: dependencies: mimic-response: 3.1.0 - dedent@1.7.0: {} + dedent@1.7.2: {} deep-equal@1.0.1: {} @@ -26449,15 +23655,8 @@ snapshots: deepmerge@4.3.1: {} - default-browser-id@5.0.0: {} - default-browser-id@5.0.1: {} - default-browser@5.2.1: - dependencies: - bundle-name: 4.1.0 - default-browser-id: 5.0.0 - default-browser@5.5.0: dependencies: bundle-name: 4.1.0 @@ -26495,9 +23694,9 @@ snapshots: escodegen: 2.1.0 esprima: 4.0.1 - delaunator@5.0.1: + delaunator@5.1.0: dependencies: - robust-predicates: 3.0.2 + robust-predicates: 3.0.3 delayed-stream@1.0.0: {} @@ -26525,9 +23724,7 @@ snapshots: detect-indent@6.1.0: {} - detect-indent@7.0.1: {} - - detect-libc@2.0.3: {} + detect-indent@7.0.2: {} detect-libc@2.1.2: {} @@ -26553,11 +23750,11 @@ snapshots: dependencies: node-source-walk: 7.0.2 - detective-postcss@8.0.4(postcss@8.5.21): + detective-postcss@8.0.4(postcss@8.5.22): dependencies: is-url-superb: 4.0.0 - postcss: 8.5.21 - postcss-values-parser: 6.0.2(postcss@8.5.21) + postcss: 8.5.22 + postcss-values-parser: 6.0.2(postcss@8.5.22) detective-sass@6.0.2: dependencies: @@ -26599,7 +23796,7 @@ snapshots: devtools-protocol@0.0.1367902: {} - devtools-protocol@0.0.1566079: {} + devtools-protocol@0.0.1608973: {} diff-sequences@29.6.3: {} @@ -26689,12 +23886,6 @@ snapshots: domelementtype: 2.3.0 domhandler: 4.3.1 - domutils@3.1.0: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils@3.2.2: dependencies: dom-serializer: 2.0.0 @@ -26710,8 +23901,6 @@ snapshots: dependencies: dotenv: 16.6.1 - dotenv@16.5.0: {} - dotenv@16.6.1: {} dotenv@17.4.2: {} @@ -26730,11 +23919,15 @@ snapshots: dependencies: safe-buffer: 5.2.1 + editions@6.22.0: + dependencies: + version-range: 4.15.0 + ee-first@1.1.1: {} ejs@3.1.10: dependencies: - jake: 10.8.7 + jake: 10.9.4 electron-builder-squirrel-windows@26.8.1(dmg-builder@26.8.1)(supports-color@8.1.1): dependencies: @@ -26751,12 +23944,12 @@ snapshots: builder-util: 26.8.1 builder-util-runtime: 9.5.1 chalk: 4.1.2 - ci-info: 4.3.1 + ci-info: 4.4.0 dmg-builder: 26.8.1(electron-builder-squirrel-windows@26.8.1) fs-extra: 10.1.0 lazy-val: 1.0.5 simple-update-notifier: 2.0.0 - yargs: 17.7.2 + yargs: 17.7.3 transitivePeerDependencies: - electron-builder-squirrel-windows - supports-color @@ -26774,30 +23967,30 @@ snapshots: transitivePeerDependencies: - supports-color - electron-to-chromium@1.5.396: {} + electron-to-chromium@1.5.395: {} - electron-updater@6.6.2(supports-color@8.1.1): + electron-updater@6.8.9(supports-color@8.1.1): dependencies: - builder-util-runtime: 9.3.1(supports-color@8.1.1) + builder-util-runtime: 9.7.0(supports-color@8.1.1) fs-extra: 10.1.0 js-yaml: 4.3.0 lazy-val: 1.0.5 lodash.escaperegexp: 4.1.2 lodash.isequal: 4.5.0 - semver: 7.8.5 + semver: 7.7.4 tiny-typed-emitter: 2.1.0 transitivePeerDependencies: - supports-color - electron-vite@4.0.1(vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0)): + electron-vite@4.0.1(vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0)): dependencies: '@babel/core': 7.29.7 - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.7) + '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.7) cac: 6.7.14 esbuild: 0.25.12 - magic-string: 0.30.17 + magic-string: 0.30.21 picocolors: 1.1.1 - vite: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0) + vite: 6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0) transitivePeerDependencies: - supports-color @@ -26823,7 +24016,7 @@ snapshots: emittery@0.13.1: {} - emoji-regex@10.4.0: {} + emoji-regex@10.6.0: {} emoji-regex@8.0.0: {} @@ -26842,25 +24035,10 @@ snapshots: iconv-lite: 0.6.3 whatwg-encoding: 3.1.1 - encoding@0.1.13: - dependencies: - iconv-lite: 0.6.3 - optional: true - end-of-stream@1.4.5: dependencies: once: 1.4.0 - enhanced-resolve@5.15.0: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - - enhanced-resolve@5.19.0: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.3.3 - enhanced-resolve@5.24.3: dependencies: graceful-fs: 4.2.11 @@ -26874,9 +24052,11 @@ snapshots: entities@7.0.1: {} + entities@8.0.0: {} + env-paths@2.2.1: {} - envinfo@7.11.0: {} + envinfo@7.21.0: {} environment@1.1.0: {} @@ -26887,32 +24067,35 @@ snapshots: prr: 1.0.1 optional: true - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - error-ex@1.3.4: dependencies: is-arrayish: 0.2.1 - errorstacks@2.4.1: {} + errorstacks@2.4.2: {} + + es-abstract-get@1.0.0: + dependencies: + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + is-callable: 1.2.7 + object-inspect: 1.13.4 - es-abstract@1.24.0: + es-abstract@1.24.2: 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-bind: 1.0.9 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-object-atoms: 1.1.2 es-set-tostringtag: 2.1.0 - es-to-primitive: 1.3.0 - function.prototype.name: 1.1.8 + es-to-primitive: 1.3.4 + function.prototype.name: 1.2.0 get-intrinsic: 1.3.0 get-proto: 1.0.1 get-symbol-description: 1.1.0 @@ -26937,22 +24120,22 @@ snapshots: object-inspect: 1.13.4 object-keys: 1.1.1 object.assign: 4.1.7 - own-keys: 1.0.1 + own-keys: 1.0.2 regexp.prototype.flags: 1.5.4 - safe-array-concat: 1.1.3 + safe-array-concat: 1.1.4 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.trim: 1.2.11 + string.prototype.trimend: 1.0.10 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 + typed-array-length: 1.0.8 unbox-primitive: 1.1.0 - which-typed-array: 1.1.19 + which-typed-array: 1.1.22 es-define-property@1.0.1: {} @@ -26962,10 +24145,6 @@ snapshots: es-module-lexer@2.3.1: {} - es-object-atoms@1.1.1: - dependencies: - es-errors: 1.3.0 - es-object-atoms@1.1.2: dependencies: es-errors: 1.3.0 @@ -26977,13 +24156,16 @@ snapshots: has-tostringtag: 1.0.2 hasown: 2.0.4 - es-to-primitive@1.3.0: + es-to-primitive@1.3.4: dependencies: + es-abstract-get: 1.0.0 + es-define-property: 1.0.1 + es-errors: 1.3.0 is-callable: 1.2.7 is-date-object: 1.1.0 is-symbol: 1.1.1 - es-toolkit@1.46.1: {} + es-toolkit@1.49.0: {} es6-error@4.1.1: optional: true @@ -27017,35 +24199,6 @@ snapshots: '@esbuild/win32-ia32': 0.25.12 '@esbuild/win32-x64': 0.25.12 - esbuild@0.27.7: - optionalDependencies: - '@esbuild/aix-ppc64': 0.27.7 - '@esbuild/android-arm': 0.27.7 - '@esbuild/android-arm64': 0.27.7 - '@esbuild/android-x64': 0.27.7 - '@esbuild/darwin-arm64': 0.27.7 - '@esbuild/darwin-x64': 0.27.7 - '@esbuild/freebsd-arm64': 0.27.7 - '@esbuild/freebsd-x64': 0.27.7 - '@esbuild/linux-arm': 0.27.7 - '@esbuild/linux-arm64': 0.27.7 - '@esbuild/linux-ia32': 0.27.7 - '@esbuild/linux-loong64': 0.27.7 - '@esbuild/linux-mips64el': 0.27.7 - '@esbuild/linux-ppc64': 0.27.7 - '@esbuild/linux-riscv64': 0.27.7 - '@esbuild/linux-s390x': 0.27.7 - '@esbuild/linux-x64': 0.27.7 - '@esbuild/netbsd-arm64': 0.27.7 - '@esbuild/netbsd-x64': 0.27.7 - '@esbuild/openbsd-arm64': 0.27.7 - '@esbuild/openbsd-x64': 0.27.7 - '@esbuild/openharmony-arm64': 0.27.7 - '@esbuild/sunos-x64': 0.27.7 - '@esbuild/win32-arm64': 0.27.7 - '@esbuild/win32-ia32': 0.27.7 - '@esbuild/win32-x64': 0.27.7 - esbuild@0.28.1: optionalDependencies: '@esbuild/aix-ppc64': 0.28.1 @@ -27079,8 +24232,6 @@ snapshots: escape-html@1.0.3: {} - escape-string-regexp@1.0.5: {} - escape-string-regexp@2.0.0: {} escape-string-regexp@4.0.0: {} @@ -27095,36 +24246,36 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-plugin-sonarjs@4.1.0(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1)): + eslint-plugin-sonarjs@4.2.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1)): dependencies: '@eslint-community/regexpp': 4.12.2 builtin-modules: 3.3.0 bytes: 3.1.2 - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) functional-red-black-tree: 1.0.1 globals: 17.7.0 jsx-ast-utils-x: 0.1.0 lodash.merge: 4.6.2 minimatch: 10.2.5 scslre: 0.3.0 - semver: 7.8.4 + semver: 7.8.5 ts-api-utils: 2.5.0(typescript@5.4.5) typescript: 5.4.5 yaml: 2.9.0 - eslint-plugin-sonarjs@4.1.0(eslint@10.6.0(jiti@2.7.0)): + eslint-plugin-sonarjs@4.2.0(eslint@10.7.0(jiti@2.7.0)): dependencies: '@eslint-community/regexpp': 4.12.2 builtin-modules: 3.3.0 bytes: 3.1.2 - eslint: 10.6.0(jiti@2.7.0) + eslint: 10.7.0(jiti@2.7.0) functional-red-black-tree: 1.0.1 globals: 17.7.0 jsx-ast-utils-x: 0.1.0 lodash.merge: 4.6.2 minimatch: 10.2.5 scslre: 0.3.0 - semver: 7.8.4 + semver: 7.8.5 ts-api-utils: 2.5.0(typescript@5.4.5) typescript: 5.4.5 yaml: 2.9.0 @@ -27137,7 +24288,7 @@ snapshots: eslint-scope@9.1.2: dependencies: '@types/esrecurse': 4.3.1 - '@types/estree': 1.0.8 + '@types/estree': 1.0.9 esrecurse: 4.3.0 estraverse: 5.3.0 @@ -27145,9 +24296,9 @@ snapshots: eslint-visitor-keys@5.0.1: {} - eslint@10.6.0(jiti@2.7.0): + eslint@10.7.0(jiti@2.7.0): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0)) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.7.0(jiti@2.7.0)) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.23.5(supports-color@8.1.1) '@eslint/config-helpers': 0.6.0 @@ -27156,7 +24307,7 @@ snapshots: '@humanfs/node': 0.16.8 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 - '@types/estree': 1.0.8 + '@types/estree': 1.0.9 ajv: 6.15.0 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -27174,7 +24325,7 @@ snapshots: imurmurhash: 0.1.4 is-glob: 4.0.3 json-stable-stringify-without-jsonify: 1.0.1 - minimatch: 10.2.4 + minimatch: 10.2.5 natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: @@ -27182,9 +24333,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1): + eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1)) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1)) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.23.5(supports-color@8.1.1) '@eslint/config-helpers': 0.6.0 @@ -27193,7 +24344,7 @@ snapshots: '@humanfs/node': 0.16.8 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 - '@types/estree': 1.0.8 + '@types/estree': 1.0.9 ajv: 6.15.0 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -27211,7 +24362,7 @@ snapshots: imurmurhash: 0.1.4 is-glob: 4.0.3 json-stable-stringify-without-jsonify: 1.0.1 - minimatch: 10.2.4 + minimatch: 10.2.5 natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: @@ -27311,7 +24462,7 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - exifreader@4.40.3: + exifreader@4.41.3: optionalDependencies: '@xmldom/xmldom': 0.9.10 @@ -27329,48 +24480,15 @@ snapshots: exponential-backoff@3.1.3: {} - express-rate-limit@7.5.1(express@4.22.1): + express-rate-limit@7.5.1(express@4.22.2): dependencies: - express: 4.22.1 + express: 4.22.2 - express-rate-limit@8.5.2(express@5.2.1): + express-rate-limit@8.6.0(express@5.2.1(supports-color@8.1.1))(supports-color@8.1.1): dependencies: + debug: 4.4.3(supports-color@8.1.1) express: 5.2.1(supports-color@8.1.1) ip-address: 10.2.0 - - express@4.22.1: - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.6 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.7.2 - cookie-signature: 1.0.7 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.3.2 - fresh: 0.5.2 - http-errors: 2.0.1 - merge-descriptors: 1.0.3 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.13 - proxy-addr: 2.0.7 - qs: 6.14.2 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.19.1 - serve-static: 1.16.2 - setprototypeof: 1.2.0 - statuses: 2.0.2 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 transitivePeerDependencies: - supports-color @@ -27462,14 +24580,6 @@ snapshots: fast-fifo@1.3.2: {} - fast-glob@3.3.2: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -27488,15 +24598,15 @@ snapshots: fast-uri@3.1.4: {} - fast-xml-builder@1.2.0: + fast-xml-builder@1.3.0: dependencies: path-expression-matcher: 1.6.2 - xml-naming: 0.1.0 + xml-naming: 0.3.0 fast-xml-parser@5.10.1: dependencies: '@nodable/entities': 3.0.0 - fast-xml-builder: 1.2.0 + fast-xml-builder: 1.3.0 is-unsafe: 2.0.0 path-expression-matcher: 1.6.2 strnum: 2.4.1 @@ -27504,9 +24614,9 @@ snapshots: fastest-levenshtein@1.0.16: {} - fastq@1.15.0: + fastq@1.20.1: dependencies: - reusify: 1.0.4 + reusify: 1.1.0 faye-websocket@0.11.4: dependencies: @@ -27524,10 +24634,6 @@ snapshots: dependencies: pend: 1.2.0 - fdir@6.5.0(picomatch@4.0.4): - optionalDependencies: - picomatch: 4.0.4 - fdir@6.5.0(picomatch@4.0.5): optionalDependencies: picomatch: 4.0.5 @@ -27540,7 +24646,7 @@ snapshots: file-uri-to-path@1.0.0: {} - filelist@1.0.4: + filelist@1.0.6: dependencies: minimatch: 5.1.9 @@ -27615,21 +24721,19 @@ snapshots: flat-cache@4.0.1: dependencies: - flatted: 3.4.2 + flatted: 3.4.3 keyv: 4.5.4 flat@5.0.2: {} - flatbuffers@24.3.25: {} - flatbuffers@25.9.23: optional: true - flatted@3.4.2: {} + flatted@3.4.3: {} - follow-redirects@1.16.0(debug@4.4.1(supports-color@8.1.1)): + follow-redirects@1.16.0(debug@4.4.3(supports-color@8.1.1)): optionalDependencies: - debug: 4.4.1(supports-color@8.1.1) + debug: 4.4.3(supports-color@8.1.1) for-each@0.3.5: dependencies: @@ -27683,30 +24787,12 @@ snapshots: jsonfile: 6.2.1 universalify: 2.0.1 - fs-extra@11.3.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - - fs-extra@11.3.4: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.2.0 - universalify: 2.0.1 - fs-extra@11.3.6: dependencies: graceful-fs: 4.2.11 jsonfile: 6.2.1 universalify: 2.0.1 - fs-extra@11.4.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.2.1 - universalify: 2.0.1 - fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 @@ -27736,33 +24822,36 @@ snapshots: function-bind@1.1.2: {} - function.prototype.name@1.1.8: + function.prototype.name@1.2.0: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 - define-properties: 1.2.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 hasown: 2.0.4 is-callable: 1.2.7 + is-document.all: 1.0.0 functional-red-black-tree@1.0.1: {} functions-have-names@1.2.3: {} - gaxios@6.7.1(encoding@0.1.13): + gaxios@6.7.1: dependencies: extend: 3.0.2 https-proxy-agent: 7.0.6 is-stream: 2.0.1 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 uuid: 9.0.1 transitivePeerDependencies: - encoding - supports-color - gcp-metadata@6.1.1(encoding@0.1.13): + gcp-metadata@6.1.1: dependencies: - gaxios: 6.7.1(encoding@0.1.13) + gaxios: 6.7.1 google-logging-utils: 0.0.2 json-bigint: 1.0.0 transitivePeerDependencies: @@ -27780,8 +24869,6 @@ snapshots: get-caller-file@2.0.5: {} - get-east-asian-width@1.3.0: {} - get-east-asian-width@1.6.0: {} get-folder-size@5.0.0: {} @@ -27806,7 +24893,7 @@ snapshots: get-proto@1.0.1: dependencies: dunder-proto: 1.0.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 get-stream@4.1.0: dependencies: @@ -27828,9 +24915,9 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - get-uri@6.0.4: + get-uri@6.0.5: dependencies: - basic-ftp: 5.3.0 + basic-ftp: 5.3.1 data-uri-to-buffer: 6.0.2 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: @@ -27838,7 +24925,7 @@ snapshots: git-hooks-list@1.0.3: {} - git-hooks-list@4.1.1: {} + git-hooks-list@4.2.1: {} github-from-package@0.0.0: {} @@ -27854,29 +24941,27 @@ snapshots: dependencies: tslib: 2.8.1 - glob-to-regexp@0.4.1: {} - glob@10.5.0: dependencies: foreground-child: 3.3.1 jackspeak: 3.4.3 minimatch: 9.0.9 - minipass: 7.1.2 + minipass: 7.1.3 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 glob@11.1.0: dependencies: foreground-child: 3.3.1 - jackspeak: 4.1.1 - minimatch: 10.2.4 + jackspeak: 4.2.3 + minimatch: 10.2.5 minipass: 7.1.3 package-json-from-dist: 1.0.1 path-scurry: 2.0.2 glob@13.0.6: dependencies: - minimatch: 10.2.4 + minimatch: 10.2.5 minipass: 7.1.3 path-scurry: 2.0.2 @@ -27941,15 +25026,6 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - globby@14.0.1: - dependencies: - '@sindresorhus/merge-streams': 2.2.1 - fast-glob: 3.3.2 - ignore: 5.3.2 - path-type: 5.0.0 - slash: 5.1.0 - unicorn-magic: 0.1.0 - globby@14.1.0: dependencies: '@sindresorhus/merge-streams': 2.3.0 @@ -27963,13 +25039,13 @@ snapshots: dependencies: minimist: 1.2.8 - google-auth-library@9.15.1(encoding@0.1.13): + google-auth-library@9.15.1: dependencies: base64-js: 1.5.1 ecdsa-sig-formatter: 1.0.11 - gaxios: 6.7.1(encoding@0.1.13) - gcp-metadata: 6.1.1(encoding@0.1.13) - gtoken: 7.1.0(encoding@0.1.13) + gaxios: 6.7.1 + gcp-metadata: 6.1.1 + gtoken: 7.1.0 jws: 4.0.1 transitivePeerDependencies: - encoding @@ -27977,11 +25053,11 @@ snapshots: google-logging-utils@0.0.2: {} - googleapis-common@7.2.0(encoding@0.1.13): + googleapis-common@7.2.0: dependencies: extend: 3.0.2 - gaxios: 6.7.1(encoding@0.1.13) - google-auth-library: 9.15.1(encoding@0.1.13) + gaxios: 6.7.1 + google-auth-library: 9.15.1 qs: 6.15.3 url-template: 2.0.8 uuid: 9.0.1 @@ -27989,10 +25065,10 @@ snapshots: - encoding - supports-color - googleapis@144.0.0(encoding@0.1.13): + googleapis@144.0.0: dependencies: - google-auth-library: 9.15.1(encoding@0.1.13) - googleapis-common: 7.2.0(encoding@0.1.13) + google-auth-library: 9.15.1 + googleapis-common: 7.2.0 transitivePeerDependencies: - encoding - supports-color @@ -28078,9 +25154,9 @@ snapshots: graphology-types: 0.24.8 obliterator: 2.0.5 - gtoken@7.1.0(encoding@0.1.13): + gtoken@7.1.0: dependencies: - gaxios: 6.7.1(encoding@0.1.13) + gaxios: 6.7.1 jws: 4.0.1 transitivePeerDependencies: - encoding @@ -28104,8 +25180,6 @@ snapshots: has-bigints@1.1.0: {} - has-flag@3.0.0: {} - has-flag@4.0.0: {} has-property-descriptors@1.0.2: @@ -28132,7 +25206,7 @@ snapshots: highlight.js@10.7.3: {} - hono@4.12.29: {} + hono@4.12.31: {} hosted-git-info@4.1.0: dependencies: @@ -28157,7 +25231,7 @@ snapshots: html-encoding-sniffer@6.0.0: dependencies: - '@exodus/bytes': 1.15.0 + '@exodus/bytes': 1.15.1 transitivePeerDependencies: - '@noble/hashes' @@ -28175,7 +25249,7 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.27.0 + terser: 5.49.0 html-to-text@9.0.5: dependencies: @@ -28185,22 +25259,15 @@ snapshots: htmlparser2: 8.0.2 selderee: 0.11.0 - html-webpack-plugin@5.6.3(webpack@5.105.0): + html-webpack-plugin@5.6.7(webpack@5.108.4): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.18.1 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.3.3 optionalDependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - - htmlparser2@10.0.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.2.2 - entities: 6.0.1 + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) htmlparser2@10.1.0: dependencies: @@ -28220,7 +25287,7 @@ snapshots: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.1.0 + domutils: 3.2.2 entities: 4.5.0 http-assert@1.5.0: @@ -28247,14 +25314,6 @@ snapshots: statuses: 1.5.0 toidentifier: 1.0.1 - http-errors@2.0.0: - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - http-errors@2.0.1: dependencies: depd: 2.0.0 @@ -28267,15 +25326,15 @@ snapshots: http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - http-proxy-middleware@2.0.10(@types/express@4.17.25)(debug@4.4.1(supports-color@8.1.1)): + http-proxy-middleware@2.0.10(@types/express@4.17.25)(debug@4.4.3(supports-color@8.1.1)): dependencies: '@types/http-proxy': 1.17.17 - http-proxy: 1.18.1(debug@4.4.1(supports-color@8.1.1)) + http-proxy: 1.18.1(debug@4.4.3(supports-color@8.1.1)) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -28284,10 +25343,10 @@ snapshots: transitivePeerDependencies: - debug - http-proxy@1.18.1(debug@4.4.1(supports-color@8.1.1)): + http-proxy@1.18.1(debug@4.4.3(supports-color@8.1.1)): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.16.0(debug@4.4.1(supports-color@8.1.1)) + follow-redirects: 1.16.0(debug@4.4.3(supports-color@8.1.1)) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -28313,7 +25372,7 @@ snapshots: https-proxy-agent@7.0.6: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -28356,21 +25415,13 @@ snapshots: ignore@7.0.6: {} - image-size@0.5.5: - optional: true - immediate@3.0.6: {} - import-fresh@3.3.0: + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - import-local@3.1.0: - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - import-local@3.2.0: dependencies: pkg-dir: 4.2.0 @@ -28384,6 +25435,8 @@ snapshots: indent-string@5.0.0: {} + index-to-position@1.2.0: {} + inflation@2.1.0: {} inflight@1.0.6: @@ -28397,7 +25450,7 @@ snapshots: ini@1.3.8: {} - ink@5.0.1(@types/react@18.3.18)(react@18.3.1): + ink@5.0.1(@types/react@18.3.31)(react@18.3.1): dependencies: '@alcalzone/ansi-tokenize': 0.1.3 ansi-escapes: 7.3.0 @@ -28425,7 +25478,7 @@ snapshots: ws: 8.21.1 yoga-wasm-web: 0.3.3 optionalDependencies: - '@types/react': 18.3.18 + '@types/react': 18.3.31 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -28463,13 +25516,13 @@ snapshots: is-array-buffer@3.0.5: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 is-arrayish@0.2.1: {} - is-arrayish@0.3.2: {} + is-arrayish@0.3.4: {} is-async-function@2.1.1: dependencies: @@ -28496,10 +25549,6 @@ snapshots: is-callable@1.2.7: {} - is-core-module@2.13.1: - dependencies: - hasown: 2.0.4 - is-core-module@2.16.2: dependencies: hasown: 2.0.4 @@ -28519,6 +25568,10 @@ snapshots: is-docker@3.0.0: {} + is-document.all@1.0.0: + dependencies: + call-bound: 1.0.4 + is-expression@4.0.0: dependencies: acorn: 7.4.1 @@ -28639,7 +25692,7 @@ snapshots: is-typed-array@1.1.15: dependencies: - which-typed-array: 1.1.19 + which-typed-array: 1.1.22 is-unicode-supported@0.1.0: {} @@ -28662,16 +25715,12 @@ snapshots: call-bound: 1.0.4 get-intrinsic: 1.3.0 - is-what@3.14.1: {} + is-what@4.1.16: {} is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - is-wsl@3.1.0: - dependencies: - is-inside-container: 1.0.0 - is-wsl@3.1.1: dependencies: is-inside-container: 1.0.0 @@ -28700,8 +25749,6 @@ snapshots: isomorphic.js@0.2.5: {} - istanbul-lib-coverage@3.2.0: {} - istanbul-lib-coverage@3.2.2: {} istanbul-lib-instrument@5.2.1: @@ -28726,11 +25773,11 @@ snapshots: istanbul-lib-report@3.0.1: dependencies: - istanbul-lib-coverage: 3.2.0 + istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - istanbul-lib-source-maps@4.0.1: + istanbul-lib-source-maps@4.0.1(supports-color@8.1.1): dependencies: debug: 4.4.3(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 @@ -28738,20 +25785,16 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-reports@3.1.6: - dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 - istanbul-reports@3.2.0: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - istextorbinary@6.0.0: + istextorbinary@9.5.0: dependencies: - binaryextensions: 4.19.0 - textextensions: 5.16.0 + binaryextensions: 6.11.0 + editions: 6.22.0 + textextensions: 6.11.0 jackspeak@3.4.3: dependencies: @@ -28759,16 +25802,15 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jackspeak@4.1.1: + jackspeak@4.2.3: dependencies: - '@isaacs/cliui': 8.0.2 + '@isaacs/cliui': 9.0.0 - jake@10.8.7: + jake@10.9.4: dependencies: async: 3.2.6 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.5 + filelist: 1.0.6 + picocolors: 1.1.1 jest-changed-files@29.7.0: dependencies: @@ -28779,7 +25821,7 @@ snapshots: jest-chrome@0.8.0(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5))): dependencies: '@types/chrome': 0.0.114 - jest: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + jest: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) jest-circus@29.7.0: dependencies: @@ -28787,10 +25829,10 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 chalk: 4.1.2 co: 4.6.0 - dedent: 1.7.0 + dedent: 1.7.2 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -28807,47 +25849,9 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.3 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest-cli@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.3 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - jest-cli@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + '@jest/core': 29.7.0(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 @@ -28864,35 +25868,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - exit: 0.1.2 - import-local: 3.2.0 - jest-config: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.3 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest-cli@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): + jest-cli@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + create-jest: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.3 @@ -28902,68 +25887,6 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 22.15.18 - ts-node: 10.9.2(@types/node@22.15.18)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 22.19.19 - ts-node: 10.9.2(@types/node@22.19.19)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - jest-config@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): dependencies: '@babel/core': 7.29.7 @@ -28995,7 +25918,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)): dependencies: '@babel/core': 7.29.7 '@jest/test-sequencer': 29.7.0 @@ -29021,105 +25944,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 22.20.1 - ts-node: 10.9.2(@types/node@26.1.1)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 26.1.1 - ts-node: 10.9.2(@types/node@22.15.18)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 26.1.1 - ts-node: 10.9.2(@types/node@22.19.19)(typescript@5.4.5) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-config@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 26.1.1 - ts-node: 10.9.2(@types/node@22.20.1)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@24.13.3)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)): dependencies: '@babel/core': 7.29.7 '@jest/test-sequencer': 29.7.0 @@ -29144,8 +25974,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 26.1.1 - ts-node: 10.9.2(@types/node@26.1.1)(typescript@5.4.5) + '@types/node': 24.13.3 + ts-node: 10.9.2(@types/node@24.13.3)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -29175,7 +26005,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 22.15.18 + '@types/node': 22.20.1 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3(supports-color@8.1.1) @@ -29189,7 +26019,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -29227,7 +26057,7 @@ snapshots: dependencies: '@babel/code-frame': 7.29.7 '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.2 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.8 @@ -29238,7 +26068,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -29273,7 +26103,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -29301,10 +26131,10 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 chalk: 4.1.2 - cjs-module-lexer: 1.2.3 - collect-v8-coverage: 1.0.2 + cjs-module-lexer: 1.4.3 + collect-v8-coverage: 1.0.3 glob: 7.2.3 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 @@ -29323,8 +26153,8 @@ snapshots: dependencies: '@babel/core': 7.29.7 '@babel/generator': 7.29.7 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.29.7) - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.29.7) + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7) + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7) '@babel/types': 7.29.7 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 @@ -29366,7 +26196,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 26.1.1 + '@types/node': 22.20.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -29375,7 +26205,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 26.1.1 + '@types/node': 22.20.1 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -29386,33 +26216,9 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5)) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): + jest@29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + '@jest/core': 29.7.0(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) '@jest/types': 29.6.3 import-local: 3.2.0 jest-cli: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) @@ -29422,24 +26228,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - '@jest/types': 29.6.3 - import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)): + jest@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + jest-cli: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -29452,7 +26246,7 @@ snapshots: jose@5.10.0: {} - jose@6.2.3: {} + jose@6.2.4: {} js-stringify@1.0.2: {} @@ -29472,7 +26266,7 @@ snapshots: jscpd-sarif-reporter@4.2.5: dependencies: colors: 1.4.0 - fs-extra: 11.3.4 + fs-extra: 11.3.6 node-sarif-builder: 4.1.0 jscpd@4.2.5: @@ -29484,7 +26278,7 @@ snapshots: '@jscpd/tokenizer': 4.2.5 colors: 1.4.0 commander: 15.0.0 - fs-extra: 11.3.4 + fs-extra: 11.3.6 jscpd-sarif-reporter: 4.2.5 jsdom@20.0.3(supports-color@8.1.1): @@ -29503,7 +26297,7 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 5.0.1(supports-color@8.1.1) is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.20 + nwsapi: 2.2.24 parse5: 7.3.0 saxes: 6.0.0 symbol-tree: 3.2.4 @@ -29525,7 +26319,7 @@ snapshots: '@acemir/cssom': 0.9.31 '@asamuzakjp/dom-selector': 6.8.1 '@bramus/specificity': 2.4.2 - '@exodus/bytes': 1.15.0 + '@exodus/bytes': 1.15.1 cssstyle: 6.2.0 data-urls: 7.0.0 decimal.js: 10.6.0 @@ -29533,10 +26327,10 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - parse5: 8.0.0 + parse5: 8.0.1 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 6.0.1 + tough-cookie: 6.0.2 undici: 7.28.0 w3c-xmlserializer: 5.0.0 webidl-conversions: 8.0.1 @@ -29553,14 +26347,10 @@ snapshots: dependencies: bignumber.js: 9.3.1 - json-bignum@0.0.3: {} - json-buffer@3.0.1: {} json-parse-even-better-errors@2.3.1: {} - json-parse-even-better-errors@3.0.2: {} - json-schema-to-ts@3.1.1: dependencies: '@babel/runtime': 7.29.7 @@ -29579,24 +26369,12 @@ snapshots: json5@2.2.3: {} - jsonc-parser@3.2.1: {} + jsonc-parser@3.3.1: {} jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - jsonfile@6.1.0: - dependencies: - universalify: 2.0.1 - optionalDependencies: - graceful-fs: 4.2.11 - - jsonfile@6.2.0: - dependencies: - universalify: 2.0.1 - optionalDependencies: - graceful-fs: 4.2.11 - jsonfile@6.2.1: dependencies: universalify: 2.0.1 @@ -29609,9 +26387,9 @@ snapshots: static-eval: 2.1.1 underscore: 1.13.6 - jsonwebtoken@9.0.2: + jsonwebtoken@9.0.3: dependencies: - jws: 3.2.3 + jws: 4.0.1 lodash.includes: 4.3.0 lodash.isboolean: 3.0.3 lodash.isinteger: 4.0.4 @@ -29636,33 +26414,22 @@ snapshots: readable-stream: 2.3.8 setimmediate: 1.0.5 - jwa@1.4.2: - dependencies: - buffer-equal-constant-time: 1.0.1 - ecdsa-sig-formatter: 1.0.11 - safe-buffer: 5.2.1 - jwa@2.0.1: dependencies: buffer-equal-constant-time: 1.0.1 ecdsa-sig-formatter: 1.0.11 safe-buffer: 5.2.1 - jws@3.2.3: - dependencies: - jwa: 1.4.2 - safe-buffer: 5.2.1 - jws@4.0.1: dependencies: jwa: 2.0.1 safe-buffer: 5.2.1 - katex@0.16.22: + katex@0.16.47: dependencies: commander: 8.3.0 - katex@0.16.47: + katex@0.17.0: dependencies: commander: 8.3.0 @@ -29693,21 +26460,21 @@ snapshots: kleur@3.0.3: {} - knip@6.24.0: + knip@6.29.0: dependencies: - fdir: 6.5.0(picomatch@4.0.4) + fdir: 6.5.0(picomatch@4.0.5) formatly: 0.3.0 get-tsconfig: 4.14.0 jiti: 2.7.0 - oxc-parser: 0.137.0 - oxc-resolver: 11.21.3 - picomatch: 4.0.4 + oxc-parser: 0.140.0 + oxc-resolver: 11.24.2 + picomatch: 4.0.5 smol-toml: 1.7.0 strip-json-comments: 5.0.3 tinyglobby: 0.2.17 - unbash: 4.0.2 + unbash: 4.0.3 yaml: 2.9.0 - zod: 4.3.6 + zod: 4.4.3 koa-compose@4.1.0: {} @@ -29763,7 +26530,7 @@ snapshots: transitivePeerDependencies: - supports-color - koffi@2.11.0: {} + koffi@2.16.3: {} launch-editor@2.14.1: dependencies: @@ -29786,19 +26553,20 @@ snapshots: leac@0.6.0: {} - less@4.3.0: + less@4.8.0: dependencies: - copy-anything: 2.0.6 + copy-anything: 3.0.5 parse-node-version: 1.0.1 - tslib: 2.8.1 optionalDependencies: errno: 0.1.8 graceful-fs: 4.2.11 - image-size: 0.5.5 - make-dir: 2.1.0 + make-dir: 5.1.0 mime: 1.6.0 needle: 3.5.0 + probe-image-size: 7.3.0 source-map: 0.6.1 + transitivePeerDependencies: + - supports-color leven@3.1.0: {} @@ -29807,7 +26575,7 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - lib0@0.2.108: + lib0@0.2.117: dependencies: isomorphic.js: 0.2.5 @@ -29837,13 +26605,11 @@ snapshots: lines-and-columns@1.2.4: {} - lines-and-columns@2.0.4: {} - link-check@5.5.1: dependencies: is-relative-url: 4.1.0 ms: 2.1.3 - needle: 3.3.1 + needle: 3.5.0 node-email-verifier: 3.4.1 proxy-agent: 6.5.0 transitivePeerDependencies: @@ -29859,23 +26625,19 @@ snapshots: lit-element@4.2.2: dependencies: - '@lit-labs/ssr-dom-shim': 1.5.1 + '@lit-labs/ssr-dom-shim': 1.6.0 '@lit/reactive-element': 2.1.2 - lit-html: 3.3.2 - - lit-html@3.3.2: - dependencies: - '@types/trusted-types': 2.0.7 + lit-html: 3.3.3 lit-html@3.3.3: dependencies: '@types/trusted-types': 2.0.7 - lit@3.3.2: + lit@3.3.3: dependencies: '@lit/reactive-element': 2.1.2 lit-element: 4.2.2 - lit-html: 3.3.2 + lit-html: 3.3.3 loader-runner@4.3.2: {} @@ -29895,8 +26657,6 @@ snapshots: lodash.camelcase@4.3.0: {} - lodash.debounce@4.0.8: {} - lodash.defaults@4.2.0: {} lodash.difference@4.5.0: {} @@ -29925,8 +26685,6 @@ snapshots: lodash.once@4.1.1: {} - lodash.throttle@4.1.1: {} - lodash.truncate@4.4.2: {} lodash.union@4.6.0: {} @@ -29969,7 +26727,7 @@ snapshots: lru-cache@10.4.3: {} - lru-cache@11.2.7: {} + lru-cache@11.5.2: {} lru-cache@5.1.1: dependencies: @@ -30002,10 +26760,6 @@ snapshots: transitivePeerDependencies: - supports-color - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.21: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -30023,16 +26777,13 @@ snapshots: punycode.js: 2.3.1 tlds: 1.261.0 - make-dir@2.1.0: - dependencies: - pify: 4.0.1 - semver: 5.7.2 - optional: true - make-dir@4.0.0: dependencies: semver: 7.8.5 + make-dir@5.1.0: + optional: true + make-error@1.3.6: {} makeerror@1.0.12: @@ -30043,21 +26794,12 @@ snapshots: markdown-it-texmath@1.0.0: {} - markdown-it@14.2.0: - dependencies: - argparse: 2.0.1 - entities: 4.5.0 - linkify-it: 5.0.2 - mdurl: 2.0.0 - punycode.js: 2.3.1 - uc.micro: 2.1.0 - markdown-it@14.3.0: dependencies: argparse: 2.0.1 entities: 4.5.0 linkify-it: 5.0.2 - mdurl: 2.0.0 + mdurl: 2.1.0 punycode.js: 2.3.1 uc.micro: 2.1.0 @@ -30065,10 +26807,10 @@ snapshots: dependencies: async: 3.2.6 chalk: 5.6.2 - commander: 14.0.2 + commander: 14.0.3 link-check: 5.5.1 markdown-link-extractor: 4.0.3 - needle: 3.3.1 + needle: 3.5.0 progress: 2.0.3 proxy-agent: 6.5.0 xmlbuilder2: 4.0.3 @@ -30088,7 +26830,7 @@ snapshots: marked-terminal@7.3.0(marked@15.0.12): dependencies: - ansi-escapes: 7.0.0 + ansi-escapes: 7.3.0 ansi-regex: 6.2.2 chalk: 5.6.2 cli-highlight: 2.1.11 @@ -30127,11 +26869,11 @@ snapshots: unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 - mdast-util-from-markdown@2.0.2(supports-color@8.1.1): + mdast-util-from-markdown@2.0.3(supports-color@8.1.1): dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.3 - decode-named-character-reference: 1.1.0 + decode-named-character-reference: 1.3.0 devlop: 1.1.0 mdast-util-to-string: 4.0.0 micromark: 4.0.2(supports-color@8.1.1) @@ -30156,7 +26898,7 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-to-markdown: 2.1.2 micromark-util-normalize-identifier: 2.0.1 transitivePeerDependencies: @@ -30165,7 +26907,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color @@ -30175,7 +26917,7 @@ snapshots: '@types/mdast': 4.0.4 devlop: 1.1.0 markdown-table: 3.0.4 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color @@ -30184,14 +26926,14 @@ snapshots: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color mdast-util-gfm@3.1.0: dependencies: - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-gfm-autolink-literal: 2.0.1 mdast-util-gfm-footnote: 2.1.0 mdast-util-gfm-strikethrough: 2.0.0 @@ -30203,11 +26945,11 @@ snapshots: mdast-util-math@3.0.0: dependencies: - '@types/hast': 3.0.4 + '@types/hast': 3.0.5 '@types/mdast': 4.0.4 devlop: 1.1.0 longest-streak: 3.1.0 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) mdast-util-to-markdown: 2.1.2 unist-util-remove-position: 5.0.0 transitivePeerDependencies: @@ -30236,22 +26978,22 @@ snapshots: mdn-data@2.27.1: {} - mdurl@2.0.0: {} + mdurl@2.1.0: {} media-typer@0.3.0: {} media-typer@1.1.0: {} - memfs@4.57.7(tslib@2.8.1): + memfs@4.64.0(tslib@2.8.1): dependencies: - '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-fsa': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-to-fsa': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-print': 4.57.7(tslib@2.8.1) - '@jsonjoy.com/fs-snapshot': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-fsa': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-to-fsa': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.64.0(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.64.0(tslib@2.8.1) '@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1) '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) @@ -30275,11 +27017,11 @@ snapshots: merge2@1.4.1: {} - mermaid@11.15.0: + mermaid@11.16.0: dependencies: '@braintree/sanitize-url': 7.1.2 - '@iconify/utils': 3.1.3 - '@mermaid-js/parser': 1.1.1 + '@iconify/utils': 3.1.4 + '@mermaid-js/parser': 1.2.0 '@types/d3': 7.4.3 '@upsetjs/venn.js': 2.0.0 cytoscape: 3.34.0 @@ -30288,15 +27030,15 @@ snapshots: d3: 7.9.0 d3-sankey: 0.12.3 dagre-d3-es: 7.0.14 - dayjs: 1.11.20 + dayjs: 1.11.21 dompurify: 3.4.12 - es-toolkit: 1.46.1 + es-toolkit: 1.49.0 katex: 0.16.47 khroma: 2.1.0 marked: 16.4.2 roughjs: 4.6.6 stylis: 4.4.0 - ts-dedent: 2.2.0 + ts-dedent: 2.3.0 uuid: 14.0.1 methods@1.1.2: {} @@ -30305,7 +27047,7 @@ snapshots: micromark-core-commonmark@2.0.3: dependencies: - decode-named-character-reference: 1.1.0 + decode-named-character-reference: 1.3.0 devlop: 1.1.0 micromark-factory-destination: 2.0.1 micromark-factory-label: 2.0.1 @@ -30382,9 +27124,9 @@ snapshots: micromark-extension-math@3.1.0: dependencies: - '@types/katex': 0.16.7 + '@types/katex': 0.16.8 devlop: 1.1.0 - katex: 0.16.22 + katex: 0.16.47 micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 @@ -30448,7 +27190,7 @@ snapshots: micromark-util-decode-string@2.0.1: dependencies: - decode-named-character-reference: 1.1.0 + decode-named-character-reference: 1.3.0 micromark-util-character: 2.1.1 micromark-util-decode-numeric-character-reference: 2.0.2 micromark-util-symbol: 2.0.1 @@ -30486,7 +27228,7 @@ snapshots: dependencies: '@types/debug': 4.1.13 debug: 4.4.3(supports-color@8.1.1) - decode-named-character-reference: 1.1.0 + decode-named-character-reference: 1.3.0 devlop: 1.1.0 micromark-core-commonmark: 2.0.3 micromark-factory-space: 2.0.1 @@ -30548,10 +27290,6 @@ snapshots: minimalistic-assert@1.0.1: {} - minimatch@10.2.4: - dependencies: - brace-expansion: 5.0.8 - minimatch@10.2.5: dependencies: brace-expansion: 5.0.8 @@ -30574,9 +27312,27 @@ snapshots: minimist@1.2.8: {} - minipass@4.2.8: {} + minimizer-webpack-plugin@5.6.1(postcss@8.5.22)(webpack@5.108.4(postcss@8.5.22)): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + jest-worker: 27.5.1 + schema-utils: 4.3.3 + terser: 5.49.0 + webpack: 5.108.4(postcss@8.5.22) + optionalDependencies: + postcss: 8.5.22 + + minimizer-webpack-plugin@5.6.1(postcss@8.5.22)(webpack@5.108.4): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + jest-worker: 27.5.1 + schema-utils: 4.3.3 + terser: 5.49.0 + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) + optionalDependencies: + postcss: 8.5.22 - minipass@7.1.2: {} + minipass@4.2.8: {} minipass@7.1.3: {} @@ -30620,11 +27376,11 @@ snapshots: log-symbols: 4.1.0 minimatch: 5.1.9 ms: 2.1.3 - serialize-javascript: 7.0.5 + serialize-javascript: 7.0.7 strip-json-comments: 3.1.1 supports-color: 8.1.1 workerpool: 6.5.1 - yargs: 16.2.0 + yargs: 16.2.2 yargs-parser: 20.2.9 yargs-unparser: 2.0.0 @@ -30648,7 +27404,7 @@ snapshots: strip-json-comments: 3.1.1 supports-color: 8.1.1 workerpool: 9.3.4 - yargs: 17.7.2 + yargs: 17.7.3 yargs-parser: 21.1.1 yargs-unparser: 2.0.0 @@ -30663,18 +27419,18 @@ snapshots: requirejs: 2.3.8 requirejs-config-file: 4.0.0 - mongodb-connection-string-url@3.0.0: + mongodb-connection-string-url@3.0.2: dependencies: - '@types/whatwg-url': 11.0.4 - whatwg-url: 13.0.0 + '@types/whatwg-url': 11.0.5 + whatwg-url: 14.2.0 - mongodb@6.16.0(socks@2.8.7): + mongodb@6.21.0(socks@2.8.9): dependencies: - '@mongodb-js/saslprep': 1.2.2 - bson: 6.10.3 - mongodb-connection-string-url: 3.0.0 + '@mongodb-js/saslprep': 1.4.12 + bson: 6.10.4 + mongodb-connection-string-url: 3.0.2 optionalDependencies: - socks: 2.8.7 + socks: 2.8.9 ms@2.0.0: {} @@ -30707,7 +27463,7 @@ snapshots: nanoid@3.3.16: {} - nanoid@5.1.5: {} + nanoid@5.1.16: {} napi-build-utils@2.0.0: {} @@ -30715,16 +27471,19 @@ snapshots: natural-orderby@3.0.2: {} - needle@3.3.1: + needle@2.9.1: dependencies: - iconv-lite: 0.6.3 - sax: 1.3.0 + debug: 3.2.7 + iconv-lite: 0.4.24 + sax: 1.6.0 + transitivePeerDependencies: + - supports-color + optional: true needle@3.5.0: dependencies: iconv-lite: 0.6.3 sax: 1.6.0 - optional: true negotiator@0.6.3: {} @@ -30734,7 +27493,7 @@ snapshots: neo-async@2.6.2: {} - netmask@2.0.2: {} + netmask@2.1.1: {} nice-try@1.0.5: {} @@ -30743,13 +27502,13 @@ snapshots: lower-case: 2.0.2 tslib: 2.8.1 - node-abi@3.77.0: + node-abi@3.94.0: dependencies: semver: 7.8.5 node-abi@4.33.0: dependencies: - semver: 7.7.4 + semver: 7.8.5 node-addon-api@1.7.2: optional: true @@ -30760,14 +27519,14 @@ snapshots: node-api-version@0.2.1: dependencies: - semver: 7.7.4 + semver: 7.8.5 node-domexception@1.0.0: {} node-email-verifier@3.4.1: dependencies: ms: 2.1.3 - validator: 13.15.23 + validator: 13.15.35 node-emoji@2.2.0: dependencies: @@ -30776,11 +27535,9 @@ snapshots: emojilib: 2.4.0 skin-tone: 2.0.0 - node-fetch@2.7.0(encoding@0.1.13): + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 - optionalDependencies: - encoding: 0.1.13 node-gyp@12.4.0: dependencies: @@ -30789,7 +27546,7 @@ snapshots: graceful-fs: 4.2.11 nopt: 9.0.0 proc-log: 6.1.0 - semver: 7.7.4 + semver: 7.8.5 tar: 7.5.21 tinyglobby: 0.2.17 undici: 6.27.0 @@ -30807,15 +27564,15 @@ snapshots: dependencies: asn1: 0.2.6 - node-sarif-builder@2.0.3: + node-sarif-builder@3.4.0: dependencies: '@types/sarif': 2.1.7 - fs-extra: 10.1.0 + fs-extra: 11.3.6 node-sarif-builder@4.1.0: dependencies: '@types/sarif': 2.1.7 - fs-extra: 11.3.4 + fs-extra: 11.3.6 node-source-walk@7.0.2: dependencies: @@ -30835,7 +27592,7 @@ snapshots: normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.8.4 + semver: 7.8.5 validate-npm-package-license: 3.0.4 normalize-path@3.0.0: {} @@ -30854,7 +27611,7 @@ snapshots: dependencies: boolbase: 1.0.0 - nwsapi@2.2.20: {} + nwsapi@2.2.24: {} object-assign@4.1.1: {} @@ -30868,10 +27625,10 @@ snapshots: object.assign@4.1.7: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 has-symbols: 1.1.0 object-keys: 1.1.1 @@ -30922,20 +27679,6 @@ snapshots: protobufjs: 7.6.5 optional: true - open@10.1.0: - dependencies: - default-browser: 5.5.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 3.1.1 - - open@10.1.2: - dependencies: - default-browser: 5.2.1 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 3.1.0 - open@10.2.0: dependencies: default-browser: 5.5.0 @@ -30949,23 +27692,25 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 - openai@4.103.0(encoding@0.1.13)(ws@8.21.1)(zod@4.3.6): + openai@4.104.0(ws@8.21.1)(zod@4.4.3): dependencies: '@types/node': 18.19.130 - '@types/node-fetch': 2.6.12 + '@types/node-fetch': 2.6.13 abort-controller: 3.0.0 agentkeepalive: 4.6.0 form-data-encoder: 1.7.2 formdata-node: 4.4.1 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 optionalDependencies: ws: 8.21.1 - zod: 4.3.6 + zod: 4.4.3 transitivePeerDependencies: - encoding - openai@6.41.0(ws@8.21.1)(zod@3.25.76): + openai@6.48.0(@aws-sdk/credential-provider-node@3.972.71)(@smithy/signature-v4@5.6.8)(ws@8.21.1)(zod@3.25.76): optionalDependencies: + '@aws-sdk/credential-provider-node': 3.972.71 + '@smithy/signature-v4': 5.6.8 ws: 8.21.1 zod: 3.25.76 @@ -31000,64 +27745,65 @@ snapshots: log-symbols: 6.0.0 stdin-discarder: 0.2.2 string-width: 7.2.0 - strip-ansi: 7.1.2 + strip-ansi: 7.2.0 orderedmap@2.1.1: {} os-homedir@1.0.2: {} - own-keys@1.0.1: + own-keys@1.0.2: dependencies: + call-bound: 1.0.4 get-intrinsic: 1.3.0 object-keys: 1.1.1 safe-push-apply: 1.0.0 - oxc-parser@0.137.0: + oxc-parser@0.140.0: dependencies: - '@oxc-project/types': 0.137.0 + '@oxc-project/types': 0.140.0 optionalDependencies: - '@oxc-parser/binding-android-arm-eabi': 0.137.0 - '@oxc-parser/binding-android-arm64': 0.137.0 - '@oxc-parser/binding-darwin-arm64': 0.137.0 - '@oxc-parser/binding-darwin-x64': 0.137.0 - '@oxc-parser/binding-freebsd-x64': 0.137.0 - '@oxc-parser/binding-linux-arm-gnueabihf': 0.137.0 - '@oxc-parser/binding-linux-arm-musleabihf': 0.137.0 - '@oxc-parser/binding-linux-arm64-gnu': 0.137.0 - '@oxc-parser/binding-linux-arm64-musl': 0.137.0 - '@oxc-parser/binding-linux-ppc64-gnu': 0.137.0 - '@oxc-parser/binding-linux-riscv64-gnu': 0.137.0 - '@oxc-parser/binding-linux-riscv64-musl': 0.137.0 - '@oxc-parser/binding-linux-s390x-gnu': 0.137.0 - '@oxc-parser/binding-linux-x64-gnu': 0.137.0 - '@oxc-parser/binding-linux-x64-musl': 0.137.0 - '@oxc-parser/binding-openharmony-arm64': 0.137.0 - '@oxc-parser/binding-wasm32-wasi': 0.137.0 - '@oxc-parser/binding-win32-arm64-msvc': 0.137.0 - '@oxc-parser/binding-win32-ia32-msvc': 0.137.0 - '@oxc-parser/binding-win32-x64-msvc': 0.137.0 - - oxc-resolver@11.21.3: + '@oxc-parser/binding-android-arm-eabi': 0.140.0 + '@oxc-parser/binding-android-arm64': 0.140.0 + '@oxc-parser/binding-darwin-arm64': 0.140.0 + '@oxc-parser/binding-darwin-x64': 0.140.0 + '@oxc-parser/binding-freebsd-x64': 0.140.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.140.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.140.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.140.0 + '@oxc-parser/binding-linux-arm64-musl': 0.140.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.140.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.140.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.140.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.140.0 + '@oxc-parser/binding-linux-x64-gnu': 0.140.0 + '@oxc-parser/binding-linux-x64-musl': 0.140.0 + '@oxc-parser/binding-openharmony-arm64': 0.140.0 + '@oxc-parser/binding-wasm32-wasi': 0.140.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.140.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.140.0 + '@oxc-parser/binding-win32-x64-msvc': 0.140.0 + + oxc-resolver@11.24.2: optionalDependencies: - '@oxc-resolver/binding-android-arm-eabi': 11.21.3 - '@oxc-resolver/binding-android-arm64': 11.21.3 - '@oxc-resolver/binding-darwin-arm64': 11.21.3 - '@oxc-resolver/binding-darwin-x64': 11.21.3 - '@oxc-resolver/binding-freebsd-x64': 11.21.3 - '@oxc-resolver/binding-linux-arm-gnueabihf': 11.21.3 - '@oxc-resolver/binding-linux-arm-musleabihf': 11.21.3 - '@oxc-resolver/binding-linux-arm64-gnu': 11.21.3 - '@oxc-resolver/binding-linux-arm64-musl': 11.21.3 - '@oxc-resolver/binding-linux-ppc64-gnu': 11.21.3 - '@oxc-resolver/binding-linux-riscv64-gnu': 11.21.3 - '@oxc-resolver/binding-linux-riscv64-musl': 11.21.3 - '@oxc-resolver/binding-linux-s390x-gnu': 11.21.3 - '@oxc-resolver/binding-linux-x64-gnu': 11.21.3 - '@oxc-resolver/binding-linux-x64-musl': 11.21.3 - '@oxc-resolver/binding-openharmony-arm64': 11.21.3 - '@oxc-resolver/binding-wasm32-wasi': 11.21.3 - '@oxc-resolver/binding-win32-arm64-msvc': 11.21.3 - '@oxc-resolver/binding-win32-x64-msvc': 11.21.3 + '@oxc-resolver/binding-android-arm-eabi': 11.24.2 + '@oxc-resolver/binding-android-arm64': 11.24.2 + '@oxc-resolver/binding-darwin-arm64': 11.24.2 + '@oxc-resolver/binding-darwin-x64': 11.24.2 + '@oxc-resolver/binding-freebsd-x64': 11.24.2 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.24.2 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.24.2 + '@oxc-resolver/binding-linux-arm64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-arm64-musl': 11.24.2 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-riscv64-musl': 11.24.2 + '@oxc-resolver/binding-linux-s390x-gnu': 11.24.2 + '@oxc-resolver/binding-linux-x64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-x64-musl': 11.24.2 + '@oxc-resolver/binding-openharmony-arm64': 11.24.2 + '@oxc-resolver/binding-wasm32-wasi': 11.24.2 + '@oxc-resolver/binding-win32-arm64-msvc': 11.24.2 + '@oxc-resolver/binding-win32-x64-msvc': 11.24.2 p-cancelable@2.1.1: {} @@ -31077,7 +27823,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.1.1 + yocto-queue: 1.2.2 p-locate@4.1.0: dependencies: @@ -31091,9 +27837,7 @@ snapshots: dependencies: p-limit: 4.0.0 - p-map@4.0.0: - dependencies: - aggregate-error: 3.1.0 + p-map@7.0.6: {} p-retry@6.2.1: dependencies: @@ -31110,9 +27854,9 @@ snapshots: pac-proxy-agent@7.2.0: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) - get-uri: 6.0.4 + get-uri: 6.0.5 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 pac-resolver: 7.0.1 @@ -31123,11 +27867,11 @@ snapshots: pac-resolver@7.0.1: dependencies: degenerator: 5.0.1 - netmask: 2.0.2 + netmask: 2.1.1 package-json-from-dist@1.0.1: {} - package-manager-detector@1.6.0: {} + package-manager-detector@1.8.0: {} pako@1.0.11: {} @@ -31147,17 +27891,15 @@ snapshots: parse-json@5.2.0: dependencies: '@babel/code-frame': 7.29.7 - error-ex: 1.3.2 + error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - parse-json@7.1.1: + parse-json@8.3.0: dependencies: '@babel/code-frame': 7.29.7 - error-ex: 1.3.4 - json-parse-even-better-errors: 3.0.2 - lines-and-columns: 2.0.4 - type-fest: 3.13.1 + index-to-position: 1.2.0 + type-fest: 4.41.0 parse-ms@2.1.0: {} @@ -31171,11 +27913,6 @@ snapshots: dependencies: parse5: 6.0.1 - parse5-htmlparser2-tree-adapter@7.0.0: - dependencies: - domhandler: 5.0.3 - parse5: 7.1.2 - parse5-htmlparser2-tree-adapter@7.1.0: dependencies: domhandler: 5.0.3 @@ -31189,17 +27926,13 @@ snapshots: parse5@6.0.1: {} - parse5@7.1.2: - dependencies: - entities: 4.5.0 - parse5@7.3.0: dependencies: entities: 6.0.1 - parse5@8.0.0: + parse5@8.0.1: dependencies: - entities: 6.0.1 + entities: 8.0.0 parseley@0.12.1: dependencies: @@ -31234,11 +27967,11 @@ snapshots: path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 - minipass: 7.1.2 + minipass: 7.1.3 path-scurry@2.0.2: dependencies: - lru-cache: 11.2.7 + lru-cache: 11.5.2 minipass: 7.1.3 path-to-regexp@0.1.13: {} @@ -31247,8 +27980,6 @@ snapshots: path-type@4.0.0: {} - path-type@5.0.0: {} - path-type@6.0.0: {} pause-stream@0.0.11: @@ -31260,9 +27991,9 @@ snapshots: ieee754: 1.2.1 resolve-protobuf-schema: 2.1.0 - pdfjs-dist@5.3.31: + pdfjs-dist@5.7.284: optionalDependencies: - '@napi-rs/canvas': 0.1.72 + '@napi-rs/canvas': 0.1.100 pe-library@0.4.1: {} @@ -31274,14 +28005,9 @@ snapshots: picomatch@2.3.2: {} - picomatch@4.0.4: {} - picomatch@4.0.5: {} - picospinner@2.0.0: {} - - pify@4.0.1: - optional: true + picospinner@2.1.0: {} pirates@4.0.7: {} @@ -31307,11 +28033,11 @@ snapshots: dependencies: find-exec: 1.0.3 - playwright-core@1.57.0: {} + playwright-core@1.61.1: {} - playwright@1.57.0: + playwright@1.61.1: dependencies: - playwright-core: 1.57.0 + playwright-core: 1.61.1 optionalDependencies: fsevents: 2.3.2 @@ -31326,7 +28052,6 @@ snapshots: '@xmldom/xmldom': 0.9.10 base64-js: 1.5.1 xmlbuilder: 15.1.1 - optional: true pluralize@2.0.0: {} @@ -31339,7 +28064,7 @@ snapshots: path-data-parser: 0.1.0 points-on-curve: 0.2.0 - portfinder@1.0.38(supports-color@8.1.1): + portfinder@1.0.38: dependencies: async: 3.2.6 debug: 4.4.3(supports-color@8.1.1) @@ -31348,20 +28073,14 @@ snapshots: possible-typed-array-names@1.1.0: {} - postcss-values-parser@6.0.2(postcss@8.5.21): + postcss-values-parser@6.0.2(postcss@8.5.22): dependencies: color-name: 1.1.4 is-url-superb: 4.0.0 - postcss: 8.5.21 + postcss: 8.5.22 quote-unquote: 1.0.0 - postcss@8.5.19: - dependencies: - nanoid: 3.3.16 - picocolors: 1.1.1 - source-map-js: 1.2.1 - - postcss@8.5.21: + postcss@8.5.22: dependencies: nanoid: 3.3.16 picocolors: 1.1.1 @@ -31373,17 +28092,17 @@ snapshots: prebuild-install@7.1.3: dependencies: - detect-libc: 2.0.3 + detect-libc: 2.1.2 expand-template: 2.0.3 github-from-package: 0.0.0 minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 2.0.0 - node-abi: 3.77.0 - pump: 3.0.2 + node-abi: 3.94.0 + pump: 3.0.4 rc: 1.2.8 simple-get: 4.0.1 - tar-fs: 2.1.4 + tar-fs: 2.1.5 tunnel-agent: 0.6.0 precinct@12.3.2: @@ -31393,7 +28112,7 @@ snapshots: detective-amd: 6.1.0 detective-cjs: 6.1.1 detective-es6: 5.0.2 - detective-postcss: 8.0.4(postcss@8.5.21) + detective-postcss: 8.0.4(postcss@8.5.22) detective-sass: 6.0.2 detective-scss: 5.0.2 detective-stylus: 5.0.1 @@ -31401,7 +28120,7 @@ snapshots: detective-vue2: 2.3.0(typescript@5.9.3) module-definition: 6.0.2 node-source-walk: 7.0.2 - postcss: 8.5.21 + postcss: 8.5.22 typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -31419,7 +28138,7 @@ snapshots: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.2.0 + react-is: 18.3.1 pretty-ms@7.0.1: dependencies: @@ -31429,6 +28148,15 @@ snapshots: prismjs@1.30.0: {} + probe-image-size@7.3.0: + dependencies: + lodash.merge: 4.6.2 + needle: 2.9.1 + stream-parser: 0.3.1 + transitivePeerDependencies: + - supports-color + optional: true + proc-log@6.1.0: {} process-nextick-args@2.0.1: {} @@ -31457,90 +28185,97 @@ snapshots: retry: 0.12.0 signal-exit: 3.0.7 - prosemirror-changeset@2.3.1: + prosemirror-changeset@2.4.1: dependencies: - prosemirror-transform: 1.10.4 + prosemirror-transform: 1.12.0 prosemirror-commands@1.7.1: dependencies: - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 - prosemirror-dropcursor@1.8.2: + prosemirror-drop-indicator@0.1.4: dependencies: - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 - prosemirror-view: 1.40.0 + '@ocavue/utils': 1.7.0 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-view: 1.42.1 - prosemirror-gapcursor@1.3.2: + prosemirror-dropcursor@1.8.3: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.42.1 + + prosemirror-gapcursor@1.4.1: dependencies: prosemirror-keymap: 1.2.3 - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-view: 1.40.0 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-view: 1.42.1 - prosemirror-history@1.4.1: + prosemirror-history@1.5.0: dependencies: - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 - prosemirror-view: 1.40.0 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.42.1 rope-sequence: 1.3.4 - prosemirror-inputrules@1.5.0: + prosemirror-inputrules@1.5.1: dependencies: - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 prosemirror-keymap@1.2.3: dependencies: - prosemirror-state: 1.4.3 + prosemirror-state: 1.4.4 w3c-keyname: 2.2.8 - prosemirror-model@1.25.1: + prosemirror-model@1.25.11: dependencies: orderedmap: 2.1.1 prosemirror-safari-ime-span@1.0.2: dependencies: - prosemirror-state: 1.4.3 - prosemirror-view: 1.40.0 + prosemirror-state: 1.4.4 + prosemirror-view: 1.42.1 prosemirror-schema-list@1.5.1: dependencies: - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 - prosemirror-state@1.4.3: + prosemirror-state@1.4.4: dependencies: - prosemirror-model: 1.25.1 - prosemirror-transform: 1.10.4 - prosemirror-view: 1.40.0 + prosemirror-model: 1.25.11 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.42.1 - prosemirror-tables@1.7.1: + prosemirror-tables@1.8.5: dependencies: prosemirror-keymap: 1.2.3 - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 - prosemirror-view: 1.40.0 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.42.1 - prosemirror-transform@1.10.4: + prosemirror-transform@1.12.0: dependencies: - prosemirror-model: 1.25.1 + prosemirror-model: 1.25.11 - prosemirror-view@1.40.0: + prosemirror-view@1.42.1: dependencies: - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-transform: 1.10.4 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 - prosemirror-virtual-cursor@0.4.2(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0): + prosemirror-virtual-cursor@0.4.2(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1): optionalDependencies: - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-view: 1.40.0 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-view: 1.42.1 protobufjs@7.6.5: dependencies: @@ -31552,8 +28287,8 @@ snapshots: '@protobufjs/float': 1.0.2 '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.1 - '@types/node': 26.1.1 + '@protobufjs/utf8': 1.1.2 + '@types/node': 22.20.1 long: 5.3.2 optional: true @@ -31566,7 +28301,7 @@ snapshots: proxy-agent@6.5.0: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -31653,11 +28388,6 @@ snapshots: pug-runtime: 3.0.1 pug-strip-comments: 2.0.0 - pump@3.0.2: - dependencies: - end-of-stream: 1.4.5 - once: 1.4.0 - pump@3.0.4: dependencies: end-of-stream: 1.4.5 @@ -31683,12 +28413,12 @@ snapshots: - supports-color - utf-8-validate - puppeteer-core@24.37.5: + puppeteer-core@24.43.1: dependencies: - '@puppeteer/browsers': 2.13.0 - chromium-bidi: 14.0.0(devtools-protocol@0.0.1566079) + '@puppeteer/browsers': 2.13.2 + chromium-bidi: 14.0.0(devtools-protocol@0.0.1608973) debug: 4.4.3(supports-color@8.1.1) - devtools-protocol: 0.0.1566079 + devtools-protocol: 0.0.1608973 typed-query-selector: 2.12.2 webdriver-bidi-protocol: 0.4.1 ws: 8.21.1 @@ -31700,124 +28430,124 @@ snapshots: - supports-color - utf-8-validate - puppeteer-extra-plugin-adblocker@2.13.6(encoding@0.1.13)(puppeteer-core@24.37.5)(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1): + puppeteer-extra-plugin-adblocker@2.13.6(puppeteer-core@24.43.1)(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1): dependencies: - '@cliqz/adblocker-puppeteer': 1.23.8(puppeteer@24.37.5(typescript@5.4.5)) - debug: 4.4.1(supports-color@8.1.1) - node-fetch: 2.7.0(encoding@0.1.13) - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + '@cliqz/adblocker-puppeteer': 1.23.8(puppeteer@24.43.1(typescript@5.4.5)) + debug: 4.4.3(supports-color@8.1.1) + node-fetch: 2.7.0 + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) optionalDependencies: - puppeteer: 24.37.5(typescript@5.4.5) - puppeteer-core: 24.37.5 - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer: 24.43.1(typescript@5.4.5) + puppeteer-core: 24.43.1 + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - encoding - playwright-extra - supports-color - puppeteer-extra-plugin-stealth@2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): + puppeteer-extra-plugin-stealth@2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): dependencies: - debug: 4.4.1(supports-color@8.1.1) - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) - puppeteer-extra-plugin-user-preferences: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + debug: 4.4.3(supports-color@8.1.1) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + puppeteer-extra-plugin-user-preferences: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin-stealth@2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))): + puppeteer-extra-plugin-stealth@2.11.2(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))): dependencies: - debug: 4.4.1(supports-color@8.1.1) - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) - puppeteer-extra-plugin-user-preferences: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) + debug: 4.4.3(supports-color@8.1.1) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) + puppeteer-extra-plugin-user-preferences: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin-user-data-dir@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): + puppeteer-extra-plugin-user-data-dir@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): dependencies: debug: 4.4.3(supports-color@8.1.1) fs-extra: 10.1.0 - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) rimraf: 3.0.2 optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin-user-data-dir@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))): + puppeteer-extra-plugin-user-data-dir@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))): dependencies: debug: 4.4.3(supports-color@8.1.1) fs-extra: 10.1.0 - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) rimraf: 3.0.2 optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin-user-preferences@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): + puppeteer-extra-plugin-user-preferences@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): dependencies: debug: 4.4.3(supports-color@8.1.1) deepmerge: 4.3.1 - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) - puppeteer-extra-plugin-user-data-dir: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) + puppeteer-extra-plugin-user-data-dir: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1) optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin-user-preferences@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))): + puppeteer-extra-plugin-user-preferences@2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))): dependencies: debug: 4.4.3(supports-color@8.1.1) deepmerge: 4.3.1 - puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) - puppeteer-extra-plugin-user-data-dir: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))) + puppeteer-extra-plugin: 3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) + puppeteer-extra-plugin-user-data-dir: 2.4.1(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))) optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin@3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): + puppeteer-extra-plugin@3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1))(supports-color@8.1.1): dependencies: '@types/debug': 4.1.13 debug: 4.4.3(supports-color@8.1.1) merge-deep: 3.0.3 optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra-plugin@3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))): + puppeteer-extra-plugin@3.2.3(puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))): dependencies: '@types/debug': 4.1.13 debug: 4.4.3(supports-color@8.1.1) merge-deep: 3.0.3 optionalDependencies: - puppeteer-extra: 3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1) + puppeteer-extra: 3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - puppeteer-extra@3.3.6(puppeteer-core@24.37.5)(puppeteer@24.37.5(typescript@5.4.5))(supports-color@8.1.1): + puppeteer-extra@3.3.6(puppeteer-core@24.43.1)(puppeteer@24.43.1(typescript@5.4.5))(supports-color@8.1.1): dependencies: - '@types/debug': 4.1.12 - debug: 4.4.1(supports-color@8.1.1) + '@types/debug': 4.1.13 + debug: 4.4.3(supports-color@8.1.1) deepmerge: 4.3.1 optionalDependencies: - puppeteer: 24.37.5(typescript@5.4.5) - puppeteer-core: 24.37.5 + puppeteer: 24.43.1(typescript@5.4.5) + puppeteer-core: 24.43.1 transitivePeerDependencies: - supports-color - puppeteer@24.37.5(typescript@5.4.5): + puppeteer@24.43.1(typescript@5.4.5): dependencies: - '@puppeteer/browsers': 2.13.0 - chromium-bidi: 14.0.0(devtools-protocol@0.0.1566079) - cosmiconfig: 9.0.0(typescript@5.4.5) - devtools-protocol: 0.0.1566079 - puppeteer-core: 24.37.5 - typed-query-selector: 2.12.0 + '@puppeteer/browsers': 2.13.2 + chromium-bidi: 14.0.0(devtools-protocol@0.0.1608973) + cosmiconfig: 9.0.2(typescript@5.4.5) + devtools-protocol: 0.0.1608973 + puppeteer-core: 24.43.1 + typed-query-selector: 2.12.2 transitivePeerDependencies: - bare-abort-controller - bare-buffer @@ -31835,10 +28565,6 @@ snapshots: pvutils@1.1.5: {} - qs@6.14.2: - dependencies: - side-channel: 1.1.0 - qs@6.15.3: dependencies: es-define-property: 1.0.1 @@ -31870,7 +28596,7 @@ snapshots: iconv-lite: 0.7.3 unpipe: 1.0.0 - rc-config-loader@4.1.3: + rc-config-loader@4.1.4(supports-color@8.1.1): dependencies: debug: 4.4.3(supports-color@8.1.1) js-yaml: 4.3.0 @@ -31886,7 +28612,7 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-is@18.2.0: {} + react-is@18.3.1: {} react-reconciler@0.29.2(react@18.3.1): dependencies: @@ -31904,12 +28630,13 @@ snapshots: transitivePeerDependencies: - supports-color - read-pkg@8.1.0: + read-pkg@9.0.1: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 6.0.2 - parse-json: 7.1.1 + parse-json: 8.3.0 type-fest: 4.41.0 + unicorn-magic: 0.1.0 read@1.0.7: dependencies: @@ -31938,7 +28665,7 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - readable-stream@4.5.2: + readable-stream@4.7.0: dependencies: abort-controller: 3.0.0 buffer: 6.0.3 @@ -31964,7 +28691,7 @@ snapshots: rechoir@0.8.0: dependencies: - resolve: 1.22.8 + resolve: 1.22.12 refa@0.12.1: dependencies: @@ -31974,17 +28701,15 @@ snapshots: reflect.getprototypeof@1.0.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.2 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 get-intrinsic: 1.3.0 get-proto: 1.0.1 which-builtin-type: 1.2.1 - regenerator-runtime@0.14.0: {} - regexp-ast-analysis@0.7.1: dependencies: '@eslint-community/regexpp': 4.12.2 @@ -31992,16 +28717,16 @@ snapshots: regexp.escape@2.0.1: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-abstract: 1.24.0 + es-abstract: 1.24.2 es-errors: 1.3.0 for-each: 0.3.5 safe-regex-test: 1.1.0 regexp.prototype.flags@1.5.4: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 es-errors: 1.3.0 get-proto: 1.0.1 @@ -32039,7 +28764,7 @@ snapshots: remark-parse@11.0.0(supports-color@8.1.1): dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.2(supports-color@8.1.1) + mdast-util-from-markdown: 2.0.3(supports-color@8.1.1) micromark-util-types: 2.0.2 unified: 11.0.5 transitivePeerDependencies: @@ -32119,12 +28844,6 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - resolve@1.22.8: - dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - responselike@2.0.1: dependencies: lowercase-keys: 2.0.0 @@ -32148,7 +28867,7 @@ snapshots: retry@0.13.1: {} - reusify@1.0.4: {} + reusify@1.1.0: {} rimraf@2.6.3: dependencies: @@ -32166,9 +28885,9 @@ snapshots: dependencies: glob: 10.5.0 - rimraf@6.0.1: + rimraf@6.1.3: dependencies: - glob: 11.1.0 + glob: 13.0.6 package-json-from-dist: 1.0.1 roarr@2.15.4: @@ -32181,7 +28900,7 @@ snapshots: sprintf-js: 1.1.3 optional: true - robust-predicates@3.0.2: {} + robust-predicates@3.0.3: {} rollup@4.62.2: dependencies: @@ -32233,7 +28952,7 @@ snapshots: transitivePeerDependencies: - supports-color - run-applescript@7.0.0: {} + run-applescript@7.1.0: {} run-parallel@1.2.0: dependencies: @@ -32243,13 +28962,13 @@ snapshots: rw@1.3.3: {} - rxjs@7.8.1: + rxjs@7.8.2: dependencies: tslib: 2.8.1 - safe-array-concat@1.1.3: + safe-array-concat@1.1.4: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 get-intrinsic: 1.3.0 has-symbols: 1.1.0 @@ -32272,10 +28991,6 @@ snapshots: safer-buffer@2.1.2: {} - sanitize-filename@1.6.3: - dependencies: - truncate-utf8-bytes: 1.0.2 - sanitize-filename@1.6.4: dependencies: truncate-utf8-bytes: 1.0.2 @@ -32285,8 +29000,6 @@ snapshots: commander: 12.1.0 enhanced-resolve: 5.24.3 - sax@1.3.0: {} - sax@1.6.0: {} saxes@6.0.0: @@ -32297,13 +29010,6 @@ snapshots: dependencies: loose-envify: 1.4.0 - schema-utils@4.2.0: - dependencies: - '@types/json-schema': 7.0.15 - ajv: 8.20.0 - ajv-formats: 2.1.1(ajv@8.20.0) - ajv-keywords: 5.1.0(ajv@8.20.0) - schema-utils@4.3.3: dependencies: '@types/json-schema': 7.0.15 @@ -32317,15 +29023,15 @@ snapshots: refa: 0.12.1 regexp-ast-analysis: 0.7.1 - secretlint@9.3.2(supports-color@8.1.1): + secretlint@10.2.2(supports-color@8.1.1): dependencies: - '@secretlint/config-creator': 9.3.2 - '@secretlint/formatter': 9.3.2 - '@secretlint/node': 9.3.2 - '@secretlint/profiler': 9.3.2 + '@secretlint/config-creator': 10.2.2 + '@secretlint/formatter': 10.2.2(supports-color@8.1.1) + '@secretlint/node': 10.2.2(supports-color@8.1.1) + '@secretlint/profiler': 10.2.2 debug: 4.4.3(supports-color@8.1.1) globby: 14.1.0 - read-pkg: 8.1.0 + read-pkg: 9.0.1 transitivePeerDependencies: - supports-color @@ -32351,60 +29057,10 @@ snapshots: semver@6.3.1: {} - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - - semver@7.7.1: {} - - semver@7.7.2: {} - - semver@7.7.3: {} - semver@7.7.4: {} - semver@7.8.0: {} - - semver@7.8.4: {} - semver@7.8.5: {} - send@0.19.0: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - - send@0.19.1: - dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 2.0.0 - escape-html: 1.0.3 - etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 - ms: 2.1.3 - on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 - transitivePeerDependencies: - - supports-color - send@0.19.2: dependencies: debug: 2.6.9 @@ -32444,8 +29100,6 @@ snapshots: type-fest: 0.13.1 optional: true - serialize-javascript@7.0.5: {} - serialize-javascript@7.0.7: {} serve-index@1.9.2: @@ -32455,17 +29109,8 @@ snapshots: debug: 2.6.9 escape-html: 1.0.3 http-errors: 1.8.1 - mime-types: 2.1.35 - parseurl: 1.3.3 - transitivePeerDependencies: - - supports-color - - serve-static@1.16.2: - dependencies: - encodeurl: 2.0.0 - escape-html: 1.0.3 + mime-types: 2.1.35 parseurl: 1.3.3 - send: 0.19.0 transitivePeerDependencies: - supports-color @@ -32507,7 +29152,7 @@ snapshots: dependencies: dunder-proto: 1.0.1 es-errors: 1.3.0 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 setimmediate@1.0.5: {} @@ -32529,8 +29174,8 @@ snapshots: sharp@0.33.5: dependencies: color: 4.2.3 - detect-libc: 2.0.3 - semver: 7.7.1 + detect-libc: 2.1.2 + semver: 7.8.5 optionalDependencies: '@img/sharp-darwin-arm64': 0.33.5 '@img/sharp-darwin-x64': 0.33.5 @@ -32598,6 +29243,8 @@ snapshots: shell-quote@1.10.0: {} + shell-quote@1.9.0: {} + shelljs@0.9.2: dependencies: execa: 1.0.0 @@ -32610,11 +29257,6 @@ snapshots: minimist: 1.2.8 shelljs: 0.9.2 - side-channel-list@1.0.0: - dependencies: - es-errors: 1.3.0 - object-inspect: 1.13.4 - side-channel-list@1.0.1: dependencies: es-errors: 1.3.0 @@ -32635,14 +29277,6 @@ snapshots: object-inspect: 1.13.4 side-channel-map: 1.0.1 - side-channel@1.1.0: - dependencies: - es-errors: 1.3.0 - object-inspect: 1.13.4 - side-channel-list: 1.0.0 - side-channel-map: 1.0.1 - side-channel-weakmap: 1.0.2 - side-channel@1.1.1: dependencies: es-errors: 1.3.0 @@ -32663,9 +29297,9 @@ snapshots: once: 1.4.0 simple-concat: 1.0.1 - simple-swizzle@0.2.2: + simple-swizzle@0.2.4: dependencies: - is-arrayish: 0.3.2 + is-arrayish: 0.3.4 simple-update-notifier@2.0.0: dependencies: @@ -32716,19 +29350,21 @@ snapshots: socks-proxy-agent@8.0.5: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) - socks: 2.8.7 + socks: 2.8.9 transitivePeerDependencies: - supports-color - socks@2.8.7: + socks@2.8.9: dependencies: ip-address: 10.2.0 smart-buffer: 4.2.0 sort-object-keys@1.1.3: {} + sort-object-keys@2.1.0: {} + sort-package-json@1.57.0: dependencies: detect-indent: 6.1.0 @@ -32738,15 +29374,15 @@ snapshots: is-plain-obj: 2.1.0 sort-object-keys: 1.1.3 - sort-package-json@3.2.1: + sort-package-json@3.7.1: dependencies: - detect-indent: 7.0.1 + detect-indent: 7.0.2 detect-newline: 4.0.1 - git-hooks-list: 4.1.1 + git-hooks-list: 4.2.1 is-plain-obj: 4.1.0 - semver: 7.7.4 - sort-object-keys: 1.1.3 - tinyglobby: 0.2.12 + semver: 7.8.5 + sort-object-keys: 2.1.0 + tinyglobby: 0.2.17 source-map-js@1.2.1: {} @@ -32762,8 +29398,6 @@ snapshots: source-map@0.6.1: {} - source-map@0.7.4: {} - source-map@0.7.6: {} spark-md5@3.0.2: {} @@ -32775,16 +29409,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.21 + spdx-license-ids: 3.0.23 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.21 + spdx-license-ids: 3.0.23 - spdx-license-ids@3.0.21: {} + spdx-license-ids@3.0.23: {} spdy-transport@3.0.0(supports-color@8.1.1): dependencies: @@ -32828,8 +29462,6 @@ snapshots: statuses@1.5.0: {} - statuses@2.0.1: {} - statuses@2.0.2: {} stdin-discarder@0.2.2: {} @@ -32848,18 +29480,16 @@ snapshots: dependencies: duplexer: 0.1.2 - stream-to-array@2.3.0: + stream-parser@0.3.1: dependencies: - any-promise: 1.3.0 + debug: 2.6.9 + transitivePeerDependencies: + - supports-color + optional: true - streamx@2.22.0: + stream-to-array@2.3.0: dependencies: - fast-fifo: 1.3.2 - text-decoder: 1.2.1 - optionalDependencies: - bare-events: 2.9.1 - transitivePeerDependencies: - - bare-abort-controller + any-promise: 1.3.0 streamx@2.28.0: dependencies: @@ -32872,7 +29502,7 @@ snapshots: string-compare@1.1.2: dependencies: - '@babel/runtime': 7.27.0 + '@babel/runtime': 7.29.7 string-length@4.0.2: dependencies: @@ -32893,32 +29523,38 @@ snapshots: string-width@7.2.0: dependencies: - emoji-regex: 10.4.0 - get-east-asian-width: 1.3.0 - strip-ansi: 7.1.0 + emoji-regex: 10.6.0 + get-east-asian-width: 1.6.0 + strip-ansi: 7.2.0 + + string-width@8.2.2: + dependencies: + get-east-asian-width: 1.6.0 + strip-ansi: 7.2.0 - string.prototype.trim@1.2.10: + string.prototype.trim@1.2.11: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.24.0 - es-object-atoms: 1.1.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 has-property-descriptors: 1.0.2 + safe-regex-test: 1.1.0 - string.prototype.trimend@1.0.9: + string.prototype.trimend@1.0.10: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 define-properties: 1.2.1 - es-object-atoms: 1.1.1 + es-object-atoms: 1.1.2 string_decoder@0.10.31: {} @@ -32940,14 +29576,6 @@ snapshots: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: - dependencies: - ansi-regex: 6.2.2 - - strip-ansi@7.1.2: - dependencies: - ansi-regex: 6.2.2 - strip-ansi@7.2.0: dependencies: ansi-regex: 6.2.2 @@ -32974,8 +29602,6 @@ snapshots: dependencies: boundary: 2.0.0 - style-mod@4.1.2: {} - style-mod@4.1.3: {} stylis@4.4.0: {} @@ -32992,10 +29618,6 @@ snapshots: supports-color@10.2.2: {} - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 @@ -33004,11 +29626,6 @@ snapshots: dependencies: has-flag: 4.0.0 - supports-hyperlinks@2.3.0: - dependencies: - has-flag: 4.0.0 - supports-color: 7.2.0 - supports-hyperlinks@3.2.0: dependencies: has-flag: 4.0.0 @@ -33020,8 +29637,8 @@ snapshots: table-layout@4.1.1: dependencies: - array-back: 6.2.2 - wordwrapjs: 5.1.0 + array-back: 6.2.3 + wordwrapjs: 5.1.1 table@6.9.0: dependencies: @@ -33031,29 +29648,15 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - tapable@2.2.1: {} - tapable@2.3.3: {} - tar-fs@2.1.4: + tar-fs@2.1.5: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 - pump: 3.0.2 + pump: 3.0.4 tar-stream: 2.2.0 - tar-fs@3.1.1: - dependencies: - pump: 3.0.2 - tar-stream: 3.2.0 - optionalDependencies: - bare-fs: 4.1.5 - bare-path: 3.0.0 - transitivePeerDependencies: - - bare-abort-controller - - bare-buffer - - react-native-b4a - tar-fs@3.1.3: dependencies: pump: 3.0.4 @@ -33074,14 +29677,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - tar-stream@3.1.7: - dependencies: - b4a: 1.6.7 - fast-fifo: 1.3.2 - streamx: 2.22.0 - transitivePeerDependencies: - - bare-abort-controller - tar-stream@3.2.0: dependencies: b4a: 1.8.1 @@ -33118,37 +29713,10 @@ snapshots: mkdirp: 0.5.6 rimraf: 2.6.3 - terminal-link@2.1.1: - dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.3.0 - - terser-webpack-plugin@5.6.1(postcss@8.5.21)(webpack@5.105.0(postcss@8.5.21)): - dependencies: - '@jridgewell/trace-mapping': 0.3.31 - jest-worker: 27.5.1 - schema-utils: 4.3.3 - terser: 5.49.0 - webpack: 5.105.0(postcss@8.5.21) - optionalDependencies: - postcss: 8.5.21 - - terser-webpack-plugin@5.6.1(postcss@8.5.21)(webpack@5.105.0): - dependencies: - '@jridgewell/trace-mapping': 0.3.31 - jest-worker: 27.5.1 - schema-utils: 4.3.3 - terser: 5.49.0 - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - optionalDependencies: - postcss: 8.5.21 - - terser@5.27.0: + terminal-link@4.0.0: dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.17.0 - commander: 2.20.3 - source-map-support: 0.5.21 + ansi-escapes: 7.3.0 + supports-hyperlinks: 3.2.0 terser@5.49.0: dependencies: @@ -33163,13 +29731,11 @@ snapshots: glob: 7.2.3 minimatch: 3.1.5 - test-exclude@7.0.1: + test-exclude@7.0.2: dependencies: - '@istanbuljs/schema': 0.1.3 + '@istanbuljs/schema': 0.1.6 glob: 10.5.0 - minimatch: 9.0.9 - - text-decoder@1.2.1: {} + minimatch: 10.2.5 text-decoder@1.2.7: dependencies: @@ -33179,7 +29745,9 @@ snapshots: text-table@0.2.0: {} - textextensions@5.16.0: {} + textextensions@6.11.0: + dependencies: + editions: 6.22.0 thenify-all@1.6.0: dependencies: @@ -33208,35 +29776,20 @@ snapshots: tiny-typed-emitter@2.1.0: {} - tinyexec@1.1.2: {} - - tinyglobby@0.2.12: - dependencies: - fdir: 6.5.0(picomatch@4.0.5) - picomatch: 4.0.5 - - tinyglobby@0.2.14: - dependencies: - fdir: 6.5.0(picomatch@4.0.5) - picomatch: 4.0.5 + tinyexec@1.2.4: {} - tinyglobby@0.2.15: + tinyglobby@0.2.17: dependencies: fdir: 6.5.0(picomatch@4.0.5) picomatch: 4.0.5 - tinyglobby@0.2.17: - dependencies: - fdir: 6.5.0(picomatch@4.0.4) - picomatch: 4.0.4 - tlds@1.261.0: {} tldts-core@5.7.112: {} tldts-core@6.1.86: {} - tldts-core@7.0.26: {} + tldts-core@7.4.9: {} tldts-experimental@5.7.112: dependencies: @@ -33246,9 +29799,9 @@ snapshots: dependencies: tldts-core: 6.1.86 - tldts@7.0.26: + tldts@7.4.9: dependencies: - tldts-core: 7.0.26 + tldts-core: 7.4.9 tmp-promise@3.0.3: dependencies: @@ -33273,9 +29826,9 @@ snapshots: universalify: 0.2.0 url-parse: 1.5.10 - tough-cookie@6.0.1: + tough-cookie@6.0.2: dependencies: - tldts: 7.0.26 + tldts: 7.4.9 tr46@0.0.3: {} @@ -33283,10 +29836,6 @@ snapshots: dependencies: punycode: 2.3.1 - tr46@4.1.1: - dependencies: - punycode: 2.3.1 - tr46@5.1.1: dependencies: punycode: 2.3.1 @@ -33305,7 +29854,7 @@ snapshots: truncate-utf8-bytes@1.0.2: dependencies: - utf8-byte-length: 1.0.4 + utf8-byte-length: 1.0.5 ts-algebra@2.0.0: {} @@ -33317,9 +29866,9 @@ snapshots: dependencies: typescript: 5.9.3 - ts-dedent@2.2.0: {} + ts-dedent@2.3.0: {} - ts-deepmerge@7.0.2: {} + ts-deepmerge@7.0.3: {} ts-graphviz@2.1.6: dependencies: @@ -33328,17 +29877,16 @@ snapshots: '@ts-graphviz/common': 2.1.5 '@ts-graphviz/core': 2.0.7 - ts-jest@29.3.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 - ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@22.15.18)(ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5)) - jest-util: 29.7.0 + handlebars: 4.7.9 + jest: 29.7.0(@types/node@22.20.1)(supports-color@8.1.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.2 + semver: 7.8.5 type-fest: 4.41.0 typescript: 5.4.5 yargs-parser: 21.1.1 @@ -33347,37 +29895,19 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.29.7) - - ts-jest@29.3.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)))(typescript@5.4.5): - dependencies: - bs-logger: 0.2.6 - ejs: 3.1.10 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@26.1.1)(ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5)) + esbuild: 0.28.1 jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.7.2 - type-fest: 4.41.0 - typescript: 5.4.5 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.29.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - ts-jest@29.4.9(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(esbuild@0.28.1)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.4.12(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.9 - jest: 29.7.0(@types/node@22.20.1)(ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5)) + jest: 29.7.0(@types/node@24.13.3)(ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.8.4 + semver: 7.8.5 type-fest: 4.41.0 typescript: 5.4.5 yargs-parser: 21.1.1 @@ -33386,66 +29916,23 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.29.7) - esbuild: 0.28.1 jest-util: 29.7.0 - ts-loader@9.5.2(typescript@5.4.5)(webpack@5.105.0(postcss@8.5.21)): + ts-loader@9.6.2(typescript@5.4.5)(webpack@5.108.4(postcss@8.5.22)): dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 - micromatch: 4.0.8 - semver: 7.5.4 - source-map: 0.7.4 + picomatch: 4.0.5 + source-map: 0.7.6 typescript: 5.4.5 - webpack: 5.105.0(postcss@8.5.21) + webpack: 5.108.4(postcss@8.5.22) - ts-loader@9.5.2(typescript@5.4.5)(webpack@5.105.0): + ts-loader@9.6.2(typescript@5.4.5)(webpack@5.108.4): dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 - micromatch: 4.0.8 - semver: 7.5.4 - source-map: 0.7.4 - typescript: 5.4.5 - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - - ts-node@10.9.2(@types/node@22.15.18)(typescript@5.4.5): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.12 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 22.15.18 - acorn: 8.17.0 - acorn-walk: 8.3.5 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.4 - make-error: 1.3.6 - typescript: 5.4.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optional: true - - ts-node@10.9.2(@types/node@22.19.19)(typescript@5.4.5): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.12 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 22.19.19 - acorn: 8.17.0 - acorn-walk: 8.3.5 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.4 - make-error: 1.3.6 + picomatch: 4.0.5 + source-map: 0.7.6 typescript: 5.4.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optional: true + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) ts-node@10.9.2(@types/node@22.20.1)(typescript@5.4.5): dependencies: @@ -33465,14 +29952,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@26.1.1)(typescript@5.4.5): + ts-node@10.9.2(@types/node@24.13.3)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.12 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 26.1.1 + '@types/node': 24.13.3 acorn: 8.17.0 acorn-walk: 8.3.5 arg: 4.1.3 @@ -33492,16 +29979,13 @@ snapshots: tslib@1.14.1: {} - tslib@2.6.2: {} - tslib@2.8.1: {} tsscmp@1.0.6: {} - tsx@4.21.0: + tsx@4.23.1: dependencies: - esbuild: 0.27.7 - get-tsconfig: 4.14.0 + esbuild: 0.28.1 optionalDependencies: fsevents: 2.3.3 @@ -33528,8 +30012,6 @@ snapshots: type-fest@2.19.0: {} - type-fest@3.13.1: {} - type-fest@4.41.0: {} type-is@1.6.18: @@ -33548,16 +30030,6 @@ snapshots: typescript: 5.4.5 zod: 3.25.76 - typechat@0.1.1(typescript@5.4.5)(zod@4.1.13): - optionalDependencies: - typescript: 5.4.5 - zod: 4.1.13 - - typechat@0.1.1(typescript@5.4.5)(zod@4.3.6): - optionalDependencies: - typescript: 5.4.5 - zod: 4.3.6 - typechat@0.1.1(typescript@5.4.5)(zod@4.4.3): optionalDependencies: typescript: 5.4.5 @@ -33571,7 +30043,7 @@ snapshots: typed-array-byte-length@1.0.3: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 @@ -33580,24 +30052,22 @@ snapshots: typed-array-byte-offset@1.0.4: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 has-proto: 1.2.0 is-typed-array: 1.1.15 reflect.getprototypeof: 1.0.10 - typed-array-length@1.0.7: + typed-array-length@1.0.8: dependencies: - call-bind: 1.0.8 + call-bind: 1.0.9 for-each: 0.3.5 gopd: 1.2.0 is-typed-array: 1.1.15 possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 - typed-query-selector@2.12.0: {} - typed-query-selector@2.12.2: {} typed-rest-client@1.8.11: @@ -33606,24 +30076,24 @@ snapshots: tunnel: 0.0.6 underscore: 1.13.8 - typescript-eslint@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3): + typescript-eslint@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) - '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) - eslint: 10.6.0(jiti@2.7.0)(supports-color@8.1.1) + '@typescript-eslint/eslint-plugin': 8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@5.9.3) + eslint: 10.7.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - typescript-eslint@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3): + typescript-eslint@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.62.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3) - eslint: 10.6.0(jiti@2.7.0) + '@typescript-eslint/eslint-plugin': 8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@5.9.3))(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.65.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@5.9.3) + eslint: 10.7.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -33641,7 +30111,7 @@ snapshots: uglify-js@3.19.3: optional: true - unbash@4.0.2: {} + unbash@4.0.3: {} unbox-primitive@1.1.0: dependencies: @@ -33665,9 +30135,7 @@ snapshots: undici-types@7.18.2: {} - undici-types@7.24.4: {} - - undici-types@8.3.0: {} + undici-types@7.28.0: {} undici@6.27.0: {} @@ -33693,10 +30161,6 @@ snapshots: dependencies: '@types/unist': 2.0.11 - unist-util-is@6.0.0: - dependencies: - '@types/unist': 3.0.3 - unist-util-is@6.0.1: dependencies: '@types/unist': 3.0.3 @@ -33715,11 +30179,6 @@ snapshots: '@types/unist': 2.0.11 unist-util-is: 5.2.1 - unist-util-visit-parents@6.0.1: - dependencies: - '@types/unist': 3.0.3 - unist-util-is: 6.0.0 - unist-util-visit-parents@6.0.2: dependencies: '@types/unist': 3.0.3 @@ -33770,7 +30229,7 @@ snapshots: dependencies: os-homedir: 1.0.2 - utf8-byte-length@1.0.4: {} + utf8-byte-length@1.0.5: {} util-deprecate@1.0.2: {} @@ -33786,12 +30245,6 @@ snapshots: v8-compile-cache-lib@3.0.1: {} - v8-to-istanbul@9.1.3: - dependencies: - '@jridgewell/trace-mapping': 0.3.31 - '@types/istanbul-lib-coverage': 2.0.6 - convert-source-map: 2.0.0 - v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.31 @@ -33803,9 +30256,9 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validate-npm-package-name@6.0.0: {} + validate-npm-package-name@6.0.2: {} - validator@13.15.23: {} + validator@13.15.35: {} vary@1.1.2: {} @@ -33816,7 +30269,9 @@ snapshots: extsprintf: 1.4.1 optional: true - vfile-message@4.0.2: + version-range@4.15.0: {} + + vfile-message@4.0.3: dependencies: '@types/unist': 3.0.3 unist-util-stringify-position: 4.0.0 @@ -33824,57 +30279,40 @@ snapshots: vfile@6.0.3: dependencies: '@types/unist': 3.0.3 - vfile-message: 4.0.2 - - vite@6.4.3(@types/node@22.15.18)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.8.3): - dependencies: - esbuild: 0.25.12 - fdir: 6.5.0(picomatch@4.0.5) - picomatch: 4.0.5 - postcss: 8.5.19 - rollup: 4.62.2 - tinyglobby: 0.2.17 - optionalDependencies: - '@types/node': 22.15.18 - fsevents: 2.3.3 - jiti: 2.7.0 - less: 4.3.0 - terser: 5.49.0 - tsx: 4.21.0 - yaml: 2.8.3 + vfile-message: 4.0.3 - vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0): + vite@6.4.3(@types/node@22.20.1)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.5) picomatch: 4.0.5 - postcss: 8.5.19 + postcss: 8.5.22 rollup: 4.62.2 tinyglobby: 0.2.17 optionalDependencies: '@types/node': 22.20.1 fsevents: 2.3.3 jiti: 2.7.0 - less: 4.3.0 + less: 4.8.0 terser: 5.49.0 - tsx: 4.21.0 + tsx: 4.23.1 yaml: 2.9.0 - vite@6.4.3(@types/node@26.1.1)(jiti@2.7.0)(less@4.3.0)(terser@5.49.0)(tsx@4.21.0)(yaml@2.9.0): + vite@6.4.3(@types/node@24.13.3)(jiti@2.7.0)(less@4.8.0)(terser@5.49.0)(tsx@4.23.1)(yaml@2.9.0): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.5) picomatch: 4.0.5 - postcss: 8.5.19 + postcss: 8.5.22 rollup: 4.62.2 tinyglobby: 0.2.17 optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 24.13.3 fsevents: 2.3.3 jiti: 2.7.0 - less: 4.3.0 + less: 4.8.0 terser: 5.49.0 - tsx: 4.21.0 + tsx: 4.23.1 yaml: 2.9.0 void-elements@3.1.0: {} @@ -33886,7 +30324,7 @@ snapshots: vscode-languageclient@9.0.1: dependencies: minimatch: 5.1.9 - semver: 7.7.4 + semver: 7.8.5 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-protocol@3.17.5: @@ -33902,13 +30340,13 @@ snapshots: dependencies: vscode-languageserver-protocol: 3.17.5 - vue@3.5.16(typescript@5.4.5): + vue@3.5.40(typescript@5.4.5): dependencies: - '@vue/compiler-dom': 3.5.16 - '@vue/compiler-sfc': 3.5.16 - '@vue/runtime-dom': 3.5.16 - '@vue/server-renderer': 3.5.16(vue@3.5.16(typescript@5.4.5)) - '@vue/shared': 3.5.16 + '@vue/compiler-dom': 3.5.40 + '@vue/compiler-sfc': 3.5.40 + '@vue/runtime-dom': 3.5.40 + '@vue/server-renderer': 3.5.40 + '@vue/shared': 3.5.40 optionalDependencies: typescript: 5.4.5 @@ -33952,57 +30390,57 @@ snapshots: webidl-conversions@8.0.1: {} - webpack-cli@5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0): + webpack-cli@5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4): dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.105.0) - '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.105.0) - '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.105.0) + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.108.4) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.108.4) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack-dev-server@5.2.6)(webpack@5.108.4) colorette: 2.0.20 commander: 10.0.1 cross-spawn: 7.0.6 - envinfo: 7.11.0 + envinfo: 7.21.0 fastest-levenshtein: 1.0.16 - import-local: 3.1.0 + import-local: 3.2.0 interpret: 3.1.1 rechoir: 0.8.0 - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) webpack-merge: 5.10.0 optionalDependencies: - webpack-dev-server: 5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0) + webpack-dev-server: 5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4) - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.0): + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.108.4): dependencies: colorette: 2.0.20 - memfs: 4.57.7(tslib@2.8.1) + memfs: 4.64.0(tslib@2.8.1) mime-types: 3.0.2 on-finished: 2.4.1 range-parser: 1.3.0 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) transitivePeerDependencies: - tslib - webpack-dev-server@5.2.6(debug@4.4.1(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.105.0): + webpack-dev-server@5.2.6(debug@4.4.3(supports-color@8.1.1))(supports-color@8.1.1)(tslib@2.8.1)(webpack-cli@5.1.4)(webpack@5.108.4): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 '@types/express': 4.17.25 - '@types/express-serve-static-core': 4.19.8 + '@types/express-serve-static-core': 4.19.9 '@types/serve-index': 1.9.4 '@types/serve-static': 1.15.10 '@types/sockjs': 0.3.36 '@types/ws': 8.18.1 ansi-html-community: 0.0.8 - bonjour-service: 1.4.1 + bonjour-service: 1.4.3 chokidar: 3.6.0 colorette: 2.0.20 compression: 1.8.1 connect-history-api-fallback: 2.0.0 express: 4.22.2 graceful-fs: 4.2.11 - http-proxy-middleware: 2.0.10(@types/express@4.17.25)(debug@4.4.1(supports-color@8.1.1)) + http-proxy-middleware: 2.0.10(@types/express@4.17.25)(debug@4.4.3(supports-color@8.1.1)) ipaddr.js: 2.4.0 launch-editor: 2.14.1 open: 10.2.0 @@ -34012,11 +30450,11 @@ snapshots: serve-index: 1.9.2 sockjs: 0.3.24 spdy: 4.0.2(supports-color@8.1.1) - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.0) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.108.4) ws: 8.21.1 optionalDependencies: - webpack: 5.105.0(postcss@8.5.21)(webpack-cli@5.1.4) - webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + webpack: 5.108.4(postcss@8.5.22)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) transitivePeerDependencies: - bufferutil - debug @@ -34032,9 +30470,8 @@ snapshots: webpack-sources@3.5.1: {} - webpack@5.105.0(postcss@8.5.21): + webpack@5.108.4(postcss@8.5.22): dependencies: - '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 '@types/json-schema': 7.0.15 '@webassemblyjs/ast': 1.14.1 @@ -34048,15 +30485,13 @@ snapshots: es-module-lexer: 2.3.1 eslint-scope: 5.1.1 events: 3.3.0 - glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.2 - mime-types: 2.1.35 + mime-db: 1.54.0 + minimizer-webpack-plugin: 5.6.1(postcss@8.5.22)(webpack@5.108.4(postcss@8.5.22)) neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 - terser-webpack-plugin: 5.6.1(postcss@8.5.21)(webpack@5.105.0(postcss@8.5.21)) watchpack: 2.5.2 webpack-sources: 3.5.1 transitivePeerDependencies: @@ -34073,9 +30508,8 @@ snapshots: - postcss - uglify-js - webpack@5.105.0(postcss@8.5.21)(webpack-cli@5.1.4): + webpack@5.108.4(postcss@8.5.22)(webpack-cli@5.1.4): dependencies: - '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 '@types/json-schema': 7.0.15 '@webassemblyjs/ast': 1.14.1 @@ -34089,19 +30523,17 @@ snapshots: es-module-lexer: 2.3.1 eslint-scope: 5.1.1 events: 3.3.0 - glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.2 - mime-types: 2.1.35 + mime-db: 1.54.0 + minimizer-webpack-plugin: 5.6.1(postcss@8.5.22)(webpack@5.108.4) neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 - terser-webpack-plugin: 5.6.1(postcss@8.5.21)(webpack@5.105.0) watchpack: 2.5.2 webpack-sources: 3.5.1 optionalDependencies: - webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.105.0) + webpack-cli: 5.1.4(webpack-dev-server@5.2.6)(webpack@5.108.4) transitivePeerDependencies: - '@minify-html/node' - '@swc/core' @@ -34145,11 +30577,6 @@ snapshots: tr46: 3.0.0 webidl-conversions: 7.0.0 - whatwg-url@13.0.0: - dependencies: - tr46: 4.1.1 - webidl-conversions: 7.0.0 - whatwg-url@14.2.0: dependencies: tr46: 5.1.1 @@ -34157,7 +30584,7 @@ snapshots: whatwg-url@16.0.1: dependencies: - '@exodus/bytes': 1.15.0 + '@exodus/bytes': 1.15.1 tr46: 6.0.0 webidl-conversions: 8.0.1 transitivePeerDependencies: @@ -34179,7 +30606,7 @@ snapshots: which-builtin-type@1.2.1: dependencies: call-bound: 1.0.4 - function.prototype.name: 1.1.8 + function.prototype.name: 1.2.0 has-tostringtag: 1.0.2 is-async-function: 2.1.1 is-date-object: 1.1.0 @@ -34190,7 +30617,7 @@ snapshots: isarray: 2.0.5 which-boxed-primitive: 1.1.1 which-collection: 1.0.2 - which-typed-array: 1.1.19 + which-typed-array: 1.1.22 which-collection@1.0.2: dependencies: @@ -34199,10 +30626,10 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.4 - which-typed-array@1.1.19: + which-typed-array@1.1.22: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.8 + call-bind: 1.0.9 call-bound: 1.0.4 for-each: 0.3.5 get-proto: 1.0.1 @@ -34248,7 +30675,7 @@ snapshots: wordwrap@1.0.0: {} - wordwrapjs@5.1.0: {} + wordwrapjs@5.1.1: {} workerpool@6.5.1: {} @@ -34297,8 +30724,6 @@ snapshots: xml-name-validator@5.0.0: {} - xml-naming@0.1.0: {} - xml-naming@0.3.0: {} xml2js@0.4.23: @@ -34313,7 +30738,7 @@ snapshots: xml2js@0.6.2: dependencies: - sax: 1.3.0 + sax: 1.6.0 xmlbuilder: 11.0.1 xmlbuilder2@4.0.3: @@ -34336,25 +30761,25 @@ snapshots: xtend@4.0.2: {} - y-prosemirror@1.3.5(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.40.0)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27): + y-prosemirror@1.3.7(prosemirror-model@1.25.11)(prosemirror-state@1.4.4)(prosemirror-view@1.42.1)(y-protocols@1.0.7(yjs@13.6.31))(yjs@13.6.31): dependencies: - lib0: 0.2.108 - prosemirror-model: 1.25.1 - prosemirror-state: 1.4.3 - prosemirror-view: 1.40.0 - y-protocols: 1.0.6(yjs@13.6.27) - yjs: 13.6.27 + lib0: 0.2.117 + prosemirror-model: 1.25.11 + prosemirror-state: 1.4.4 + prosemirror-view: 1.42.1 + y-protocols: 1.0.7(yjs@13.6.31) + yjs: 13.6.31 - y-protocols@1.0.6(yjs@13.6.27): + y-protocols@1.0.7(yjs@13.6.31): dependencies: - lib0: 0.2.108 - yjs: 13.6.27 + lib0: 0.2.117 + yjs: 13.6.31 - y-websocket@3.0.0(yjs@13.6.27): + y-websocket@3.0.0(yjs@13.6.31): dependencies: - lib0: 0.2.108 - y-protocols: 1.0.6(yjs@13.6.27) - yjs: 13.6.27 + lib0: 0.2.117 + y-protocols: 1.0.7(yjs@13.6.31) + yjs: 13.6.31 y18n@5.0.8: {} @@ -34364,8 +30789,6 @@ snapshots: yallist@5.0.0: {} - yaml@2.8.3: {} - yaml@2.9.0: {} yargs-parser@20.2.9: {} @@ -34379,16 +30802,6 @@ snapshots: flat: 5.0.2 is-plain-obj: 2.1.0 - yargs@16.2.0: - dependencies: - cliui: 7.0.4 - escalade: 3.2.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - yargs@16.2.2: dependencies: cliui: 7.0.4 @@ -34424,13 +30837,17 @@ snapshots: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 + yauzl@3.4.0: + dependencies: + pend: 1.2.0 + yazl@2.5.1: dependencies: buffer-crc32: 0.2.13 - yjs@13.6.27: + yjs@13.6.31: dependencies: - lib0: 0.2.108 + lib0: 0.2.117 ylru@1.4.0: {} @@ -34438,9 +30855,9 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.1.1: {} + yocto-queue@1.2.2: {} - yoctocolors-cjs@2.1.2: {} + yoctocolors-cjs@2.1.3: {} yoga-wasm-web@0.3.3: {} @@ -34454,24 +30871,12 @@ snapshots: dependencies: archiver-utils: 5.0.2 compress-commons: 6.0.2 - readable-stream: 4.5.2 - - zod-to-json-schema@3.25.1(zod@4.1.13): - dependencies: - zod: 4.1.13 + readable-stream: 4.7.0 zod-to-json-schema@3.25.2(zod@3.25.76): dependencies: zod: 3.25.76 - zod-to-json-schema@3.25.2(zod@4.1.13): - dependencies: - zod: 4.1.13 - - zod-to-json-schema@3.25.2(zod@4.3.6): - dependencies: - zod: 4.3.6 - zod-to-json-schema@3.25.2(zod@4.4.3): dependencies: zod: 4.4.3 @@ -34480,10 +30885,6 @@ snapshots: zod@3.25.76: {} - zod@4.1.13: {} - - zod@4.3.6: {} - zod@4.4.3: {} zwitch@2.0.4: {}