From 072422c96570e880033cdf1b1db9b2520a1fb0cb Mon Sep 17 00:00:00 2001 From: Silvio Date: Fri, 31 Jul 2026 13:12:39 +0300 Subject: [PATCH 1/5] copy of io-assist-react --- README.md | 4 +- skills/io-intelligence/SKILL.md | 5 +- .../references/editable-io-assist.md | 8 +- .../references/packaged-io-assist.md | 4 +- .../io-assist-react-editable/eslint.config.js | 14 + .../package-lock.json | 4154 +++++++++++++++-- .../io-assist-react-editable/package.json | 14 +- .../io-assist-react-editable/src/App.tsx | 32 +- .../io-assist-react-editable/src/index.css | 2 - .../src/io-assist/.gitkeep | 0 .../src/io-assist/IoAssist.tsx | 63 + .../src/io-assist/PROVENANCE.md | 76 + .../io-assist/actions/abortActiveStream.ts | 27 + .../src/io-assist/actions/deleteThread.ts | 28 + .../src/io-assist/actions/elicitation.ts | 148 + .../src/io-assist/actions/initIoAiWeb.ts | 239 + .../src/io-assist/actions/initIoConnect.ts | 84 + .../src/io-assist/actions/mcpAppEvents.ts | 90 + .../src/io-assist/actions/newConversation.ts | 21 + .../actions/processResponseStream.ts | 360 ++ .../src/io-assist/actions/renameThread.ts | 19 + .../src/io-assist/actions/sampling.ts | 191 + .../src/io-assist/actions/selectThread.ts | 73 + .../src/io-assist/actions/sendUserMessage.ts | 97 + .../io-assist/actions/setPermissionMode.ts | 25 + .../io-assist/actions/toggleFavoritePrompt.ts | 27 + .../src/io-assist/actions/toggleTool.ts | 22 + .../components/chat/ActivePanelModal.tsx | 39 + .../components/chat/AiDisclaimer.tsx | 13 + .../src/io-assist/components/chat/Chat.tsx | 99 + .../components/chat/ConfirmModal.tsx | 51 + .../components/chat/WelcomeHeading.tsx | 13 + .../io-assist/components/header/Header.tsx | 84 + .../components/input-area/InputArea.tsx | 247 + .../components/messages/AssistantMessage.tsx | 28 + .../components/messages/McpAppResource.tsx | 33 + .../components/messages/MdFormatter.tsx | 138 + .../components/messages/MessageArea.tsx | 138 + .../components/messages/MessageFooter.tsx | 32 + .../components/messages/ToolMessage.tsx | 74 + .../components/messages/ToolTraceMessage.tsx | 115 + .../components/messages/UserMessage.tsx | 45 + .../io-assist/components/messages/mdUtils.ts | 3 + .../components/messages/prismTwilightTheme.ts | 52 + .../components/prompt/FavoritePromptList.tsx | 28 + .../components/prompt/PromptListItem.tsx | 84 + .../components/prompt/PromptListPanel.tsx | 103 + .../components/scroll-area/ScrollArea.tsx | 156 + .../components/shared/CopyButton.tsx | 52 + .../src/io-assist/components/shared/Icon.tsx | 13 + .../components/shared/IconButton.tsx | 40 + .../src/io-assist/components/shared/Modal.tsx | 62 + .../components/shared/ReloadButton.tsx | 36 + .../components/shared/SearchInput.tsx | 67 + .../io-assist/components/shared/Select.tsx | 248 + .../components/shared/ToggleInput.tsx | 56 + .../io-assist/components/shared/Tooltip.tsx | 126 + .../src/io-assist/components/shared/icons.tsx | 389 ++ .../components/threads/ThreadHistory.tsx | 98 + .../threads/ThreadHistoryListItem.tsx | 103 + .../components/threads/ThreadHistoryPanel.tsx | 48 + .../components/tool/ToolListItem.tsx | 50 + .../components/tool/ToolListPanel.tsx | 62 + .../WorkingContextPanel.tsx | 25 + .../src/io-assist/constants/modalActions.ts | 14 + .../src/io-assist/constants/uiStrings.ts | 152 + .../src/io-assist/context/IoAssistContext.tsx | 52 + .../src/io-assist/hooks/useIoAiWebApi.ts | 50 + .../io-assist/hooks/useIoAiWebBootstrap.ts | 31 + .../src/io-assist/hooks/useIoConnectApi.ts | 34 + .../io-assist/hooks/useIoConnectBootstrap.ts | 36 + .../io-assist/hooks/useIsMobileViewport.ts | 19 + .../src/io-assist/index.ts | 7 + .../src/io-assist/stores/agent.ts | 22 + .../src/io-assist/stores/app-lifecycle.ts | 32 + .../src/io-assist/stores/confirm-modal.ts | 39 + .../src/io-assist/stores/index.ts | 54 + .../src/io-assist/stores/mcp-apps.ts | 25 + .../src/io-assist/stores/message.ts | 137 + .../src/io-assist/stores/permission-mode.ts | 29 + .../src/io-assist/stores/prompt.ts | 30 + .../src/io-assist/stores/response-stream.ts | 147 + .../src/io-assist/stores/thread.ts | 29 + .../src/io-assist/stores/tool.ts | 28 + .../src/io-assist/stores/working-context.ts | 23 + .../src/io-assist/styles/defaults.css | 280 ++ .../files/inter-latin-wght-normal.woff2 | Bin 0 -> 48256 bytes .../src/io-assist/styles/index.css | 345 ++ .../src/io-assist/types/agent.ts | 9 + .../src/io-assist/types/config.ts | 46 + .../src/io-assist/types/icon.ts | 6 + .../src/io-assist/types/index.ts | 36 + .../src/io-assist/types/loading.ts | 29 + .../src/io-assist/types/message.ts | 63 + .../src/io-assist/types/panel.ts | 7 + .../src/io-assist/types/prompt.ts | 20 + .../src/io-assist/types/select.ts | 15 + .../src/io-assist/types/stream.ts | 25 + .../src/io-assist/types/thread.ts | 12 + .../src/io-assist/types/tool.ts | 18 + .../src/io-assist/utils/clipboard.ts | 47 + .../src/io-assist/utils/confirmModal.ts | 30 + .../src/io-assist/utils/ioModals.ts | 44 + .../src/io-assist/utils/ioPrefs.ts | 73 + .../src/io-assist/utils/logger.ts | 66 + .../src/io-assist/utils/mcpAppModal.ts | 54 + .../src/io-assist/utils/messageConverter.ts | 114 + .../src/io-assist/utils/messageUtils.ts | 176 + .../src/io-assist/utils/safeStringify.ts | 7 + .../src/io-assist/utils/streamUtils.ts | 84 + .../src/io-assist/utils/threadUtils.ts | 118 + .../io-assist-react-editable/vite.config.ts | 5 +- 112 files changed, 11108 insertions(+), 488 deletions(-) delete mode 100644 templates/io-assist-react-editable/src/io-assist/.gitkeep create mode 100644 templates/io-assist-react-editable/src/io-assist/IoAssist.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/PROVENANCE.md create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/abortActiveStream.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/deleteThread.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/elicitation.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/initIoAiWeb.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/initIoConnect.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/mcpAppEvents.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/newConversation.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/processResponseStream.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/renameThread.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/sampling.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/selectThread.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/sendUserMessage.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/setPermissionMode.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/toggleFavoritePrompt.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/actions/toggleTool.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/components/chat/ActivePanelModal.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/chat/AiDisclaimer.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/chat/Chat.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/chat/ConfirmModal.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/chat/WelcomeHeading.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/header/Header.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/input-area/InputArea.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/AssistantMessage.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/McpAppResource.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/MdFormatter.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/MessageArea.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/MessageFooter.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/ToolMessage.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/ToolTraceMessage.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/UserMessage.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/mdUtils.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/components/messages/prismTwilightTheme.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/components/prompt/FavoritePromptList.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/prompt/PromptListItem.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/prompt/PromptListPanel.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/scroll-area/ScrollArea.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/CopyButton.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/Icon.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/IconButton.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/Modal.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/ReloadButton.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/SearchInput.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/Select.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/ToggleInput.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/Tooltip.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/shared/icons.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/threads/ThreadHistory.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/threads/ThreadHistoryListItem.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/threads/ThreadHistoryPanel.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/tool/ToolListItem.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/tool/ToolListPanel.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/components/working-context-panel/WorkingContextPanel.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/constants/modalActions.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/constants/uiStrings.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/context/IoAssistContext.tsx create mode 100644 templates/io-assist-react-editable/src/io-assist/hooks/useIoAiWebApi.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/hooks/useIoAiWebBootstrap.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/hooks/useIoConnectApi.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/hooks/useIoConnectBootstrap.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/hooks/useIsMobileViewport.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/index.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/agent.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/app-lifecycle.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/confirm-modal.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/index.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/mcp-apps.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/message.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/permission-mode.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/prompt.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/response-stream.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/thread.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/tool.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/stores/working-context.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/styles/defaults.css create mode 100644 templates/io-assist-react-editable/src/io-assist/styles/files/inter-latin-wght-normal.woff2 create mode 100644 templates/io-assist-react-editable/src/io-assist/styles/index.css create mode 100644 templates/io-assist-react-editable/src/io-assist/types/agent.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/config.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/icon.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/index.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/loading.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/message.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/panel.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/prompt.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/select.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/stream.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/thread.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/types/tool.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/clipboard.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/confirmModal.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/ioModals.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/ioPrefs.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/logger.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/mcpAppModal.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/messageConverter.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/messageUtils.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/safeStringify.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/streamUtils.ts create mode 100644 templates/io-assist-react-editable/src/io-assist/utils/threadUtils.ts diff --git a/README.md b/README.md index e6060b5..86eff56 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,9 @@ The same skill is intended to work unchanged in Agent Skills-compatible coding a V1 assumes that the installed skill, current official documentation, and locally available io.Intelligence packages describe the same product state. It does not detect package versions or select historical guidance. -The first delivery contains the knowledge skill only. The planned scaffolder for packaged React, packaged Angular, editable React, editable Angular, and Vanilla JavaScript custom-mode applications is a later phase and is not included in this repository state. +The planned scaffolder for packaged React, packaged Angular, editable React, editable Angular, and Vanilla JavaScript custom-mode applications is a later phase and is not included in this repository state. There is no scaffolding command. + +Starting-point applications for those presets live in `templates/`, to be copied manually. Of these, `io-assist-react-editable` is the source-owned React fork: it carries the io.Assist React source at `src/io-assist` with provenance recorded in `src/io-assist/PROVENANCE.md`. `io-assist-angular-editable` is still an unfinished shell. ## Documentation diff --git a/skills/io-intelligence/SKILL.md b/skills/io-intelligence/SKILL.md index 2b6dd4f..0719eed 100644 --- a/skills/io-intelligence/SKILL.md +++ b/skills/io-intelligence/SKILL.md @@ -74,5 +74,6 @@ For an io.Assist Anywhere request, establish the current chapter and the user's - AI Web is the lower-level choice for a fully custom frontend. - AI Mastra Bridge is the provided Mastra implementation of the Agent Protocol; other backends implement the protocol directly. - Project inspection and diagnosis are LLM-led. Do not search for a deterministic io.Intelligence project inspector. -- The official five-preset scaffolder and editable-source extraction flow are planned but not delivered in this skill release. Do not claim a scaffolding command exists. -- Do not reconstruct the full io.Assist implementation from prose. Until the official editable flow exists, treat materialization as an explicit source-ownership task that requires an approved source. +- The official five-preset scaffolder is planned but not delivered in this skill release. Do not claim a scaffolding command exists. +- The React editable payload is delivered as a checked-in template at `templates/io-assist-react-editable` (io.Assist React source under `src/io-assist`). The Angular editable payload is not materialized. See `editable-io-assist.md`. +- Do not reconstruct the full io.Assist implementation from prose. Where no approved editable source is already present, treat materialization as an explicit source-ownership task that requires an approved source. diff --git a/skills/io-intelligence/references/editable-io-assist.md b/skills/io-intelligence/references/editable-io-assist.md index 71e82e8..ed5ad09 100644 --- a/skills/io-intelligence/references/editable-io-assist.md +++ b/skills/io-intelligence/references/editable-io-assist.md @@ -39,9 +39,13 @@ Do not describe the fork as a theme, plugin, or supported extension point unless ## Current delivery boundary -The planned Phase 2 scaffolder will obtain the React or Angular editable payload from the corresponding io.Assist npm package and arrange the local application. That flow is not implemented in the current skill release. +There is still no scaffolding command. The planned five-preset scaffolder is not delivered in this skill release. -Until an approved editable source payload is available: +The **React editable payload is delivered as a checked-in template**. `templates/io-assist-react-editable` carries the io.Assist React source at `src/io-assist`, with `src/io-assist/PROVENANCE.md` recording its origin repository, commit, package version, and customer-owned status. Copy that template to start a React editable application; it builds and runs as-is once `AGENT_SERVER_URL` is set in `src/App.tsx`. + +The **Angular editable payload is not materialized**. `templates/io-assist-angular-editable` is still a shell whose imports do not resolve. + +Where an approved editable source payload is not already present: - do not reconstruct io.Assist from this skill; - do not reverse-engineer compiled package output; diff --git a/skills/io-intelligence/references/packaged-io-assist.md b/skills/io-intelligence/references/packaged-io-assist.md index be44db4..ff5c53c 100644 --- a/skills/io-intelligence/references/packaged-io-assist.md +++ b/skills/io-intelligence/references/packaged-io-assist.md @@ -86,7 +86,9 @@ The Angular provider validates static configuration during bootstrap; resolve th ## Current scaffolding boundary -The planned scaffolder will eventually create packaged React and Angular applications. It is not delivered in this skill release. Implement the current project integration using the official framework pages and project-native conventions; do not invoke or invent a scaffolding command. +The planned scaffolder will eventually create packaged React and Angular applications. It is not delivered in this skill release, and there is no scaffolding command; do not invoke or invent one. + +Starting-point applications exist at `templates/io-assist-react-packaged` and `templates/io-assist-angular-packaged`, to be copied manually. For an existing project, implement the integration using the official framework pages and project-native conventions rather than adapting a template. ## Official documentation diff --git a/templates/io-assist-react-editable/eslint.config.js b/templates/io-assist-react-editable/eslint.config.js index ef614d2..cbefed5 100644 --- a/templates/io-assist-react-editable/eslint.config.js +++ b/templates/io-assist-react-editable/eslint.config.js @@ -19,4 +19,18 @@ export default defineConfig([ globals: globals.browser, }, }, + { + // src/io-assist is vendored io.Assist source (see src/io-assist/PROVENANCE.md). + // It is kept byte-identical to upstream, which does not enforce these rules: + // react-hooks v7 added set-state-in-effect/refs, and only-export-components is a + // dev-server concern that never applied to a published library. Downgraded to + // warnings so `npm run lint` stays green while you still get the signal when you + // edit this source. + files: ['src/io-assist/**/*.{ts,tsx}'], + rules: { + 'react-hooks/set-state-in-effect': 'warn', + 'react-hooks/refs': 'warn', + 'react-refresh/only-export-components': 'warn', + }, + }, ]) diff --git a/templates/io-assist-react-editable/package-lock.json b/templates/io-assist-react-editable/package-lock.json index 8ddd6c8..4adae9a 100644 --- a/templates/io-assist-react-editable/package-lock.json +++ b/templates/io-assist-react-editable/package-lock.json @@ -1,20 +1,29 @@ { - "name": "io-assist-react-packaged", + "name": "io-assist-react-editable", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "io-assist-react-packaged", + "name": "io-assist-react-editable", "version": "0.0.0", "dependencies": { + "@interopio/ai-web": "^1.1.2", "@interopio/browser": "^4.5.0", + "@interopio/core": ">=6.0.0", + "@interopio/desktop": ">=6.0.0", + "@interopio/working-context": "^1.1.1", "@interopio/workspaces-api": "^4.5.0", + "prism-react-renderer": "^2.4.1", "react": "^19.2.6", - "react-dom": "^19.2.6" + "react-dom": "^19.2.6", + "react-markdown": "^9.0.1", + "remark-gfm": "^4.0.1", + "zustand": "^5.0.3" }, "devDependencies": { "@eslint/js": "^10.0.1", + "@tailwindcss/vite": "^4.1.13", "@types/node": "^24.12.3", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", @@ -23,6 +32,7 @@ "eslint-plugin-react-hooks": "^7.1.1", "eslint-plugin-react-refresh": "^0.5.2", "globals": "^17.6.0", + "tailwindcss": "^4.1.13", "typescript": "~6.0.2", "typescript-eslint": "^8.59.2", "vite": "^8.0.12" @@ -269,21 +279,21 @@ } }, "node_modules/@emnapi/core": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", - "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "version": "2.0.0-alpha.3", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-2.0.0-alpha.3.tgz", + "integrity": "sha512-AZypUeJ/yByuxyS7BlSNRDOMLMlROYtjYdIAuBmJssVz1UJDSeYxLrdizhXCFYhedC5bqd/ASy8EuNXbVVXp9g==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/wasi-threads": "1.2.1", + "@emnapi/wasi-threads": "2.0.1", "tslib": "^2.4.0" } }, "node_modules/@emnapi/runtime": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", - "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "version": "2.0.0-alpha.3", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-2.0.0-alpha.3.tgz", + "integrity": "sha512-hFPAhMUjJD9BSyCANEISPOogeXC9Zo9ZQl7L6vKnaVsMkCtzznaW/naYypeyl0Gv5rYfWYsZbpixTMpjDJzQeA==", "dev": true, "license": "MIT", "optional": true, @@ -292,9 +302,9 @@ } }, "node_modules/@emnapi/wasi-threads": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", - "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-2.0.1.tgz", + "integrity": "sha512-9DsSk+o5NBX0CCJT8s0EROGSGxjR/tKu6aBTaVyq+SjAEQH4XcdcRxPBRzsBLizTTJ49MJjF+jgu3qnO9GLQcQ==", "dev": true, "license": "MIT", "optional": true, @@ -303,9 +313,9 @@ } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", - "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.10.1.tgz", + "integrity": "sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==", "dev": true, "license": "MIT", "dependencies": { @@ -360,9 +370,9 @@ } }, "node_modules/@eslint/config-helpers": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz", - "integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.7.0.tgz", + "integrity": "sha512-DObd/KKUsU+FaFv4PLxSRenpXfQWmPXXP3pPZ6/K1PCrMu2vQpMDMuQe/BqYeoLcz8ro0bVDF1RxOJgfVEdhUw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -430,6 +440,18 @@ "node": "^20.19.0 || ^22.13.0 || >=24" } }, + "node_modules/@hono/node-server": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-2.0.12.tgz", + "integrity": "sha512-eWpQYr67tqJLeaSUl0Q+TquuYfUdTibpOJlUMV2FfUP7+KqCC5TufnwnlXL6mobZBJbGAYRd7ZvEBDCbLInjhg==", + "license": "MIT", + "engines": { + "node": ">=20" + }, + "peerDependencies": { + "hono": "^4" + } + }, "node_modules/@humanfs/core": { "version": "0.19.2", "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", @@ -496,6 +518,19 @@ "url": "https://github.com/sponsors/nzakas" } }, + "node_modules/@interopio/ai-web": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@interopio/ai-web/-/ai-web-1.1.2.tgz", + "integrity": "sha512-Y2CvegmCU6o0Jp0TWh3H+/VUe26EwKCDlpQ7VjdxXXJM9QrMkFMFWDgDukFaRhGJzKPjBLgNc6yBEPxkHbPRvg==", + "license": "MIT", + "dependencies": { + "@interopio/browser": "^4.0.0", + "@interopio/desktop": "^6.0.0", + "@interopio/mcp-core": "^1.2.1", + "@interopio/working-context": "^1.1.1", + "@modelcontextprotocol/sdk": "^1.19.1" + } + }, "node_modules/@interopio/browser": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/@interopio/browser/-/browser-4.5.0.tgz", @@ -564,24 +599,6 @@ } } }, - "node_modules/@interopio/core/node_modules/nanoid": { - "version": "5.1.16", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.16.tgz", - "integrity": "sha512-kVrnsrJqMR8+oLJnGEmSWw9BivK5mt7H3FZatVRjrc5wGqFYuBxX1yG7+A7Gi5AefkX6t/oCkizcQgpu0cY1dQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, "node_modules/@interopio/desktop": { "version": "6.21.0", "resolved": "https://registry.npmjs.org/@interopio/desktop/-/desktop-6.21.0.tgz", @@ -653,6 +670,18 @@ } } }, + "node_modules/@interopio/mcp-core": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@interopio/mcp-core/-/mcp-core-1.2.1.tgz", + "integrity": "sha512-6ECVIgyeaB/y00ptlrhT4VatqMKAmeHLTZP6kj8PmUjkKXOaC5/WPrJqGf5meyr6n03IiyFLOp84PB6p8yljbA==", + "license": "MIT", + "dependencies": { + "@interopio/browser": "^4.0.0", + "@interopio/desktop": "^6.0.0", + "@interopio/working-context": "^1.1.1", + "@modelcontextprotocol/sdk": "^1.19.1" + } + }, "node_modules/@interopio/modals-api": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/@interopio/modals-api/-/modals-api-4.5.0.tgz", @@ -714,6 +743,16 @@ "decoder-validate": "^0.0.2" } }, + "node_modules/@interopio/working-context": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@interopio/working-context/-/working-context-1.1.1.tgz", + "integrity": "sha512-Vbb4SXxkxHc5VBsh06EvUDCt53frDi5Au13xQjSHjN8eUYvdPOJovsGOrvQgy7xdyQr6p7kdAxP2M92eSb2Pbg==", + "license": "MIT", + "dependencies": { + "@interopio/browser": "^4.0.0", + "@interopio/desktop": "^6.0.0" + } + }, "node_modules/@interopio/workspaces-api": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/@interopio/workspaces-api/-/workspaces-api-4.5.0.tgz", @@ -770,23 +809,88 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@modelcontextprotocol/sdk": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.30.0.tgz", + "integrity": "sha512-xKd8OIzlqNzcqcNumGAa6g+PW2kjD5vrpcKOnfldAUPP3j7lnqMPwlTXQm8gF+UwH72z0lqaRbjr9hqGz0eITA==", + "license": "MIT", + "dependencies": { + "@hono/node-server": "^1.19.9 || ^2.0.5", + "ajv": "^8.17.1", + "ajv-formats": "^3.0.1", + "content-type": "^1.0.5", + "cors": "^2.8.5", + "cross-spawn": "^7.0.5", + "eventsource": "^3.0.2", + "eventsource-parser": "^3.0.0", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "hono": "^4.11.4", + "jose": "^6.1.3", + "json-schema-typed": "^8.0.2", + "pkce-challenge": "^5.0.0", + "raw-body": "^3.0.0", + "zod": "^3.25 || ^4.0", + "zod-to-json-schema": "^3.25.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@cfworker/json-schema": "^4.1.1", + "zod": "^3.25 || ^4.0" + }, + "peerDependenciesMeta": { + "@cfworker/json-schema": { + "optional": true + }, + "zod": { + "optional": false + } + } + }, + "node_modules/@modelcontextprotocol/sdk/node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, "node_modules/@napi-rs/wasm-runtime": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", - "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.2.1.tgz", + "integrity": "sha512-KjZdi8Q1wh89gsVmghvbrMgWl6ZWmRmHV6wjB7/g4Zf0dyO+hH3neZUtuDNPO00qq5YE5RITVWvrIZKRaAmzGQ==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@tybys/wasm-util": "^0.10.1" + "@tybys/wasm-util": "^0.10.3" + }, + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=23.5.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/Brooooooklyn" }, "peerDependencies": { - "@emnapi/core": "^1.7.1", - "@emnapi/runtime": "^1.7.1" + "@emnapi/core": "^1.7.1 || ^2.0.0-alpha.3", + "@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.3" } }, "node_modules/@opentelemetry/api": { @@ -1247,9 +1351,9 @@ } }, "node_modules/@oxc-project/types": { - "version": "0.132.0", - "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz", - "integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==", + "version": "0.142.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.142.0.tgz", + "integrity": "sha512-7W+2q5AKQVU36fkaryontrHn3YDt1RyUYXatw9i5H8ocYe2sPKSFB6eS8WNPeRKiN1qAWWZUPm7gwFzJGrccqQ==", "dev": true, "license": "MIT", "funding": { @@ -1257,9 +1361,9 @@ } }, "node_modules/@rolldown/binding-android-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz", - "integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.1.tgz", + "integrity": "sha512-02hOeOSryYxVrOIphmLAsqnCJWxwlzFk+pEt/N/i6OgT3lShHO7xGCU5cpgchRDHboAEbSjzgGh+O/u1GswQmA==", "cpu": [ "arm64" ], @@ -1274,9 +1378,9 @@ } }, "node_modules/@rolldown/binding-darwin-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz", - "integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.1.tgz", + "integrity": "sha512-fMsTOnN0OjFm3CyppWPitKnc8UlliVARUULW6cfU6AIqjdtgmSFWSk9vecHzZduv/yMWIHDlRhM1e8Iff9uAfA==", "cpu": [ "arm64" ], @@ -1291,9 +1395,9 @@ } }, "node_modules/@rolldown/binding-darwin-x64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz", - "integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.1.tgz", + "integrity": "sha512-1wjKdz/XLGKHaTNHjQveQ/B23TKx4ItAqm1JbyVuvNPc4Ze0Fb48s49TAd/2zcplPl8okE/UbTgmlVfwT7eFeQ==", "cpu": [ "x64" ], @@ -1308,9 +1412,9 @@ } }, "node_modules/@rolldown/binding-freebsd-x64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz", - "integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.1.tgz", + "integrity": "sha512-Fa0jHR07E7YBN4vOEsbVf2briYNsuOowfLJaXULZM0ldMlaCaj2LJgLMbMe4iacRyZmvR8efFhgR9wKuGclQUg==", "cpu": [ "x64" ], @@ -1325,9 +1429,9 @@ } }, "node_modules/@rolldown/binding-linux-arm-gnueabihf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz", - "integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.1.tgz", + "integrity": "sha512-pzkgu1SSHGgRRyRZ4fbmSgmajbVt+epaLP99NDjFft69v/ypfTi6swBMiVdh2EkQ0OSnHE1lZDM7DRGkyAzUpA==", "cpu": [ "arm" ], @@ -1342,9 +1446,9 @@ } }, "node_modules/@rolldown/binding-linux-arm64-gnu": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz", - "integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.1.tgz", + "integrity": "sha512-QI5SEDY8cbiYWHx0VO4vIc3UlS6a32vXHjU8Qy/17adEmZIPuByJg13UEvo9c/UCiUkdcVWY83C+b+JrwnNyUg==", "cpu": [ "arm64" ], @@ -1359,9 +1463,9 @@ } }, "node_modules/@rolldown/binding-linux-arm64-musl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz", - "integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.1.tgz", + "integrity": "sha512-Sm41FyCeXqmYcERoYOCbGIL5hNfd8w9LQ7Y61Bev48HkcjaJqV/iiVOaiDxjVTRMS+QKrZmD8cfPt4uMVnvM+A==", "cpu": [ "arm64" ], @@ -1376,9 +1480,9 @@ } }, "node_modules/@rolldown/binding-linux-ppc64-gnu": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz", - "integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.1.tgz", + "integrity": "sha512-2x+WhXTGl9yJYPbltW/BSEPTVz9OIWQyER4N+gJEDWkkn904eRcBzELqh/Hf7K0w/ubGbKNMv0ZC+94QK/IFEg==", "cpu": [ "ppc64" ], @@ -1393,9 +1497,9 @@ } }, "node_modules/@rolldown/binding-linux-s390x-gnu": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz", - "integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.1.tgz", + "integrity": "sha512-eEjmQpuRQayHPWWnywaWHkFT3ToPbP3RYy42VVd/B9aBGDA+Ol25EIWHxKQST3IiWJjikCWUF7KtbfqwZrzVwQ==", "cpu": [ "s390x" ], @@ -1410,9 +1514,9 @@ } }, "node_modules/@rolldown/binding-linux-x64-gnu": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz", - "integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.1.tgz", + "integrity": "sha512-/Orga1fZYkLc/56jBICcHrKchl8Z2UKdDSr3LG9ToWO1lQ6a4Livk9Xz+9WN91zsz5QR3XQz2NNoSDEvP6qadw==", "cpu": [ "x64" ], @@ -1427,9 +1531,9 @@ } }, "node_modules/@rolldown/binding-linux-x64-musl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz", - "integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.1.tgz", + "integrity": "sha512-xxBJRL+0q0Kce7orznGWLuylHDY65vuARXZRpX+hPdv+DqK2c3NlCsVA98tlWzWNEE7yPqA/1NQ5nnCrj49Y5A==", "cpu": [ "x64" ], @@ -1444,9 +1548,9 @@ } }, "node_modules/@rolldown/binding-openharmony-arm64": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz", - "integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.1.tgz", + "integrity": "sha512-M6AdXIXw3s+/8XpKMzdGDEXGS1S7kwUsy+rcTIUIOx5Ge4nXKCtAFHFV9YKkXvGcC5WMoTjAteLzlsQROVI0Yw==", "cpu": [ "arm64" ], @@ -1461,28 +1565,25 @@ } }, "node_modules/@rolldown/binding-wasm32-wasi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz", - "integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==", - "cpu": [ - "wasm32" - ], + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.2.1.tgz", + "integrity": "sha512-/TX0SoRGojHzSAHpfVBbavRVSazg5U3h3Y3VXfcc0cdugq6kxdqw8LPGFiPr+/7gE/60zRcsOY2Vi9b9eT0jww==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/core": "1.10.0", - "@emnapi/runtime": "1.10.0", - "@napi-rs/wasm-runtime": "^1.1.4" + "@emnapi/core": "2.0.0-alpha.3", + "@emnapi/runtime": "2.0.0-alpha.3", + "@napi-rs/wasm-runtime": "^1.2.0" }, "engines": { - "node": "^20.19.0 || >=22.12.0" + "node": "^20.19.0 || ^22.13.0 || >=23.5.0" } }, "node_modules/@rolldown/binding-win32-arm64-msvc": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz", - "integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.1.tgz", + "integrity": "sha512-EvRrivJieyHG+AO9lleZWgq+g0+S7oV2C51yuqlcyU/R9net+sI4Pj0F+lUoP2bEr6TWX3SqFaaS0SzfLxSzkw==", "cpu": [ "arm64" ], @@ -1497,9 +1598,9 @@ } }, "node_modules/@rolldown/binding-win32-x64-msvc": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz", - "integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.1.tgz", + "integrity": "sha512-Z4eCmn5QJ/5+azF9knpLWKfVd9aidn0mAe9TpJgvBLId9Ax3t0+JVxBmT25Bv7NBbVW1TZyKjQjQReouMeH5UQ==", "cpu": [ "x64" ], @@ -1520,163 +1621,487 @@ "dev": true, "license": "MIT" }, - "node_modules/@tybys/wasm-util": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz", - "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==", + "node_modules/@tailwindcss/node": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz", + "integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "tslib": "^2.4.0" + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.24.1", + "jiti": "^2.7.0", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.3.3" } }, - "node_modules/@types/esrecurse": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz", - "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==", + "node_modules/@tailwindcss/oxide": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz", + "integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==", "dev": true, - "license": "MIT" - }, - "node_modules/@types/estree": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", - "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.3.3", + "@tailwindcss/oxide-darwin-arm64": "4.3.3", + "@tailwindcss/oxide-darwin-x64": "4.3.3", + "@tailwindcss/oxide-freebsd-x64": "4.3.3", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3", + "@tailwindcss/oxide-linux-arm64-gnu": "4.3.3", + "@tailwindcss/oxide-linux-arm64-musl": "4.3.3", + "@tailwindcss/oxide-linux-x64-gnu": "4.3.3", + "@tailwindcss/oxide-linux-x64-musl": "4.3.3", + "@tailwindcss/oxide-wasm32-wasi": "4.3.3", + "@tailwindcss/oxide-win32-arm64-msvc": "4.3.3", + "@tailwindcss/oxide-win32-x64-msvc": "4.3.3" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz", + "integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz", + "integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } }, - "node_modules/@types/node": { - "version": "24.12.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.4.tgz", - "integrity": "sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==", + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz", + "integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "undici-types": "~7.16.0" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" } }, - "node_modules/@types/react": { - "version": "19.2.15", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.15.tgz", - "integrity": "sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==", + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz", + "integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "csstype": "^3.2.2" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" } }, - "node_modules/@types/react-dom": { - "version": "19.2.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", - "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz", + "integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", - "peerDependencies": { - "@types/react": "^19.2.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.0.tgz", - "integrity": "sha512-QYb/sa74/s7OKMbACMjrYnGspj9Hs5YI5aaffSL65UfeBUzVzBJfVo3oWSpbzPurvm7yaCCo2Lk7lVj610HqKw==", + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz", + "integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.60.0", - "@typescript-eslint/type-utils": "8.60.0", - "@typescript-eslint/utils": "8.60.0", - "@typescript-eslint/visitor-keys": "8.60.0", - "ignore": "^7.0.5", - "natural-compare": "^1.4.0", - "ts-api-utils": "^2.5.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.60.0", - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" + "node": ">= 20" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", - "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz", + "integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 4" + "node": ">= 20" } }, - "node_modules/@typescript-eslint/parser": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.0.tgz", - "integrity": "sha512-fcqpj/MyK4sxDPcbe7STNPbpQL4RLZOPWuaTmwZYuc+hJKzRf58yRxfhqGpc6PIq9ZyfSBpfHgmUHmHs0KwHwg==", + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz", + "integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@typescript-eslint/scope-manager": "8.60.0", - "@typescript-eslint/types": "8.60.0", - "@typescript-eslint/typescript-estree": "8.60.0", - "@typescript-eslint/visitor-keys": "8.60.0", - "debug": "^4.4.3" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" + "node": ">= 20" } }, - "node_modules/@typescript-eslint/project-service": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.0.tgz", - "integrity": "sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==", + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz", + "integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.60.0", - "@typescript-eslint/types": "^8.60.0", - "debug": "^4.4.3" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <6.1.0" + "node": ">= 20" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.0.tgz", - "integrity": "sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==", + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz", + "integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "@typescript-eslint/types": "8.60.0", - "@typescript-eslint/visitor-keys": "8.60.0" + "@emnapi/core": "^1.11.1", + "@emnapi/runtime": "^1.11.1", + "@emnapi/wasi-threads": "^1.2.2", + "@napi-rs/wasm-runtime": "^1.1.4", + "@tybys/wasm-util": "^0.10.2", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz", + "integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz", + "integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.3.tgz", + "integrity": "sha512-yYU8cogLeSh/ms2jh8Fj7jaba/EWa7Ja6GoUqYZaraEuCI5YS6ms6ObZgjjedm+jm6XZjdNRWBpPP6Z86oOxcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.3.3", + "@tailwindcss/oxide": "4.3.3", + "tailwindcss": "4.3.3" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz", + "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/esrecurse": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz", + "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "license": "MIT" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/hast": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.5.tgz", + "integrity": "sha512-rp/ezSWaD1m44dPKICGhiskI13nVr7qTloFwDa/IYkhhf5nzwP+zIQcIJh3WIFSBOy/H1PzB40jPjMDksN4F+g==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.13.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.3.tgz", + "integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/prismjs": { + "version": "1.26.6", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.6.tgz", + "integrity": "sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.2.17", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz", + "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==", + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.65.0.tgz", + "integrity": "sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/type-utils": "8.65.0", + "@typescript-eslint/utils": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.65.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.6.tgz", + "integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.65.0.tgz", + "integrity": "sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.65.0.tgz", + "integrity": "sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.65.0", + "@typescript-eslint/types": "^8.65.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.65.0.tgz", + "integrity": "sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -1687,9 +2112,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.0.tgz", - "integrity": "sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.65.0.tgz", + "integrity": "sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==", "dev": true, "license": "MIT", "engines": { @@ -1704,15 +2129,15 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.0.tgz", - "integrity": "sha512-SX46wEUtitCpq7AN38HkUU/+zvUpdKf7ephtWAFgckH8O7PQIyL5gvrhQgBLuEYgLfuKWOVvWVskMbuFHAz5xg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.65.0.tgz", + "integrity": "sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.60.0", - "@typescript-eslint/typescript-estree": "8.60.0", - "@typescript-eslint/utils": "8.60.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/utils": "8.65.0", "debug": "^4.4.3", "ts-api-utils": "^2.5.0" }, @@ -1729,9 +2154,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.0.tgz", - "integrity": "sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.65.0.tgz", + "integrity": "sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==", "dev": true, "license": "MIT", "engines": { @@ -1743,16 +2168,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.0.tgz", - "integrity": "sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.65.0.tgz", + "integrity": "sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.60.0", - "@typescript-eslint/tsconfig-utils": "8.60.0", - "@typescript-eslint/types": "8.60.0", - "@typescript-eslint/visitor-keys": "8.60.0", + "@typescript-eslint/project-service": "8.65.0", + "@typescript-eslint/tsconfig-utils": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", @@ -1771,9 +2196,9 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz", - "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==", + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", "dev": true, "license": "ISC", "bin": { @@ -1784,16 +2209,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.0.tgz", - "integrity": "sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.65.0.tgz", + "integrity": "sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.60.0", - "@typescript-eslint/types": "8.60.0", - "@typescript-eslint/typescript-estree": "8.60.0" + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -1808,13 +2233,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.0.tgz", - "integrity": "sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.65.0.tgz", + "integrity": "sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.60.0", + "@typescript-eslint/types": "8.65.0", "eslint-visitor-keys": "^5.0.0" }, "engines": { @@ -1825,14 +2250,20 @@ "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.3.tgz", + "integrity": "sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==", + "license": "ISC" + }, "node_modules/@vitejs/plugin-react": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz", - "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.5.tgz", + "integrity": "sha512-BOVzne/NL162sMdResB25mUv+vWMF5NoAjNf09TeGlE7ZpszZWSD3winycicLJw72yeVsoCn/2kOhEuCvEShMA==", "dev": true, "license": "MIT", "dependencies": { - "@rolldown/pluginutils": "^1.0.0" + "@rolldown/pluginutils": "^1.0.1" }, "engines": { "node": "^20.19.0 || >=22.12.0" @@ -1851,10 +2282,23 @@ } } }, + "node_modules/accepts": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "license": "MIT", + "dependencies": { + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/acorn": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", - "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.18.0.tgz", + "integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==", "dev": true, "license": "MIT", "bin": { @@ -1890,6 +2334,45 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, "node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", @@ -1899,6 +2382,16 @@ "ajv": "^6.9.1" } }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/balanced-match": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", @@ -1910,9 +2403,9 @@ } }, "node_modules/baseline-browser-mapping": { - "version": "2.10.33", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz", - "integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==", + "version": "2.11.7", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.11.7.tgz", + "integrity": "sha512-APw5YuIQAg6L9w4sHDI6j26DGFJI6RpYOhnkMPdC9lWbkKvsyPHzDsve1yd73lk21yz7Y09Kci8B2Pp9FonzWA==", "dev": true, "license": "Apache-2.0", "bin": { @@ -1922,23 +2415,60 @@ "node": ">=6.0.0" } }, + "node_modules/body-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz", + "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==", + "license": "MIT", + "dependencies": { + "bytes": "^3.1.2", + "content-type": "^2.0.0", + "debug": "^4.4.3", + "http-errors": "^2.0.1", + "iconv-lite": "^0.7.2", + "on-finished": "^2.4.1", + "qs": "^6.15.2", + "raw-body": "^3.0.2", + "type-is": "^2.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/body-parser/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/brace-expansion": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz", - "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==", + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.9.tgz", + "integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^4.0.2" }, "engines": { - "node": "18 || 20 || >=22" + "node": "20 || >=22" } }, "node_modules/browserslist": { - "version": "4.28.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", - "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "version": "4.28.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.7.tgz", + "integrity": "sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==", "dev": true, "funding": [ { @@ -1956,10 +2486,10 @@ ], "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.10.12", - "caniuse-lite": "^1.0.30001782", - "electron-to-chromium": "^1.5.328", - "node-releases": "^2.0.36", + "baseline-browser-mapping": "^2.10.44", + "caniuse-lite": "^1.0.30001806", + "electron-to-chromium": "^1.5.393", + "node-releases": "^2.0.51", "update-browserslist-db": "^1.2.3" }, "bin": { @@ -1969,24 +2499,62 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/callback-registry": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/callback-registry/-/callback-registry-2.7.2.tgz", - "integrity": "sha512-VVrtF21DaH0VHeNMkLDd4VGuxsYM3V3l3lwYneKVMU/6X3TRtcQszUwlAcqj2HrLcbP1NyS12LsanUwCykaz/Q==", - "license": "ISC" + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001793", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz", - "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callback-registry": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/callback-registry/-/callback-registry-2.7.2.tgz", + "integrity": "sha512-VVrtF21DaH0VHeNMkLDd4VGuxsYM3V3l3lwYneKVMU/6X3TRtcQszUwlAcqj2HrLcbP1NyS12LsanUwCykaz/Q==", + "license": "ISC" + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001806", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz", + "integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { @@ -1996,6 +2564,97 @@ ], "license": "CC-BY-4.0" }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/content-disposition": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz", + "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", @@ -2003,11 +2662,45 @@ "dev": true, "license": "MIT" }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", + "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, + "node_modules/cors": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -2022,7 +2715,6 @@ "version": "3.2.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", - "dev": true, "license": "MIT" }, "node_modules/date-format": { @@ -2051,6 +2743,19 @@ } } }, + "node_modules/decode-named-character-reference": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/decoder-validate": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/decoder-validate/-/decoder-validate-0.0.2.tgz", @@ -2064,6 +2769,24 @@ "dev": true, "license": "MIT" }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/detect-libc": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", @@ -2074,13 +2797,99 @@ "node": ">=8" } }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, "node_modules/electron-to-chromium": { - "version": "1.5.364", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.364.tgz", - "integrity": "sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==", + "version": "1.5.398", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.398.tgz", + "integrity": "sha512-AsvhAxopJGh6museTDMIjn6JpDYOfgu4RLlygomt87MUwBUqTfd/1EiPtx10/LZE8xpTvkP2E9Gafq7lkLtodQ==", "dev": true, "license": "ISC" }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.24.5", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.5.tgz", + "integrity": "sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -2091,6 +2900,12 @@ "node": ">=6" } }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -2105,16 +2920,19 @@ } }, "node_modules/eslint": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.1.tgz", - "integrity": "sha512-AyIKhnOBuOAdueD7RB3xB+YeAWScb9jHsJBgH2Hcde8InP5JYhqrRR6iTMHyTEwgENK54Cp44e4v8BwNhsuHuw==", + "version": "10.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.8.0.tgz", + "integrity": "sha512-nuKKvN+oIBO0koN7Tm7dlkmnkc21mtt0QJLwAKzjLq14y6lRTdVG36MZHJ8eQHwdJMwZbQNMlPOYedMq/oVJvQ==", "dev": true, "license": "MIT", + "workspaces": [ + "packages/*" + ], "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", "@eslint/config-array": "^0.23.5", - "@eslint/config-helpers": "^0.6.0", + "@eslint/config-helpers": "^0.7.0", "@eslint/core": "^1.2.1", "@eslint/plugin-kit": "^0.7.2", "@humanfs/node": "^0.16.6", @@ -2138,7 +2956,7 @@ "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", - "minimatch": "^10.2.4", + "minimatch": "^10.2.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, @@ -2181,9 +2999,9 @@ } }, "node_modules/eslint-plugin-react-refresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz", - "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.3.tgz", + "integrity": "sha512-5EMmLCV98Pi4o/f/3DP/v/tNqLHMIc9I8LKClNDWhZ9JTho89/kQcitCXQBMG7sAfVRK0Ie3T2EDOzp1YXYiVA==", "dev": true, "license": "MIT", "peerDependencies": { @@ -2276,6 +3094,16 @@ "node": ">=4.0" } }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -2286,6 +3114,104 @@ "node": ">=0.10.0" } }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventsource": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz", + "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==", + "license": "MIT", + "dependencies": { + "eventsource-parser": "^3.0.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/eventsource-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz", + "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/express": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", + "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", + "license": "MIT", + "dependencies": { + "accepts": "^2.0.0", + "body-parser": "^2.2.1", + "content-disposition": "^1.0.0", + "content-type": "^1.0.5", + "cookie": "^0.7.1", + "cookie-signature": "^1.2.1", + "debug": "^4.4.0", + "depd": "^2.0.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "finalhandler": "^2.1.0", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "merge-descriptors": "^2.0.0", + "mime-types": "^3.0.0", + "on-finished": "^2.4.1", + "once": "^1.4.0", + "parseurl": "^1.3.3", + "proxy-addr": "^2.0.7", + "qs": "^6.14.0", + "range-parser": "^1.2.1", + "router": "^2.2.0", + "send": "^1.1.0", + "serve-static": "^2.2.0", + "statuses": "^2.0.1", + "type-is": "^2.0.1", + "vary": "^1.1.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express-rate-limit": { + "version": "8.6.1", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.1.tgz", + "integrity": "sha512-0D493aP61w0TJ2A0wy27riRsO7FMQ7FK+KUHOKCSfPvYo0R55aiC6emCVgFUeShH0fq0ICPVzNcgoS+BsbXQCA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "ip-address": "^10.2.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/express-rate-limit" + }, + "peerDependencies": { + "express": ">= 4.11" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -2305,6 +3231,22 @@ "dev": true, "license": "MIT" }, + "node_modules/fast-uri": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz", + "integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, "node_modules/fdir": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", @@ -2336,6 +3278,27 @@ "node": ">=16.0.0" } }, + "node_modules/finalhandler": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", + "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "on-finished": "^2.4.1", + "parseurl": "^1.3.3", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -2368,11 +3331,29 @@ } }, "node_modules/flatted": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", - "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.4.tgz", + "integrity": "sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==", "license": "ISC" }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", @@ -2402,6 +3383,15 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -2412,24 +3402,61 @@ "node": ">=6.9.0" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globals": { - "version": "17.6.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz", - "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==", - "dev": true, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "17.8.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-17.8.0.tgz", + "integrity": "sha512-Zz/LMDZScFmkakeL2cTHzf+PbWKdpU3uclqkZT7TjDG58j5WPt0PpA+n9uPI24fZtlw07q0OtEi84K+umsRzqQ==", + "dev": true, "license": "MIT", "engines": { "node": ">=18" @@ -2438,12 +3465,88 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "license": "ISC" }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hermes-estree": { "version": "0.25.1", "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", @@ -2461,6 +3564,61 @@ "hermes-estree": "0.25.1" } }, + "node_modules/hono": { + "version": "4.12.32", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.32.tgz", + "integrity": "sha512-XcuyW9qE2kJn07PkecMOBd5Vq/hMy7mmGw+idz1yblbg9N17ijJODrvPkn7/dwL3Kulj8LcRJ69DLOWf91dRUg==", + "license": "MIT", + "engines": { + "node": ">=16.9.0" + } + }, + "node_modules/html-url-attributes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/iconv-lite": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz", + "integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", @@ -2481,6 +3639,70 @@ "node": ">=0.8.19" } }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", + "license": "MIT" + }, + "node_modules/ip-address": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.3.1.tgz", + "integrity": "sha512-1e9d3kb97NHJTIJDZW9rKqW2h6+dFa50Dy0fpPSMQp2ADje5gvKsXmdiK6dwY5t76TaTt5+P5N1Y/LoToIxP6g==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2504,13 +3726,59 @@ "node": ">=0.10.0" } }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "license": "MIT" + }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, "license": "ISC" }, + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/jose": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.5.tgz", + "integrity": "sha512-2E5L2yRp03FnwreJLJX8/r7mHiZICCf8kG7fAsTWkSQTDAcc46NIZoQLKy+EJ8sPoJlxyS4OQR5H70LjIZZlIQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -2544,6 +3812,12 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "license": "MIT" }, + "node_modules/json-schema-typed": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz", + "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==", + "license": "BSD-2-Clause" + }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", @@ -2896,6 +4170,16 @@ "node": ">=8.0" } }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -2906,145 +4190,1162 @@ "yallist": "^3.0.2" } }, - "node_modules/minimatch": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", - "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "brace-expansion": "^5.0.5" - }, - "engines": { - "node": "18 || 20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@jridgewell/sourcemap-codec": "^1.5.5" } }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", - "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/node-releases": { - "version": "2.0.46", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.46.tgz", - "integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==", - "dev": true, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "license": "MIT", "engines": { - "node": ">=18" + "node": ">= 0.4" } }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", "license": "MIT", "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" }, - "engines": { - "node": ">= 0.8.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/picocolors": { - "version": "1.1.1", + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/media-typer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.1.tgz", + "integrity": "sha512-yz3xRaG20c6/BOzvYoDaGtPmGscs7YivItZEEqe6GbwNfHuxu9YNmvnEkMzKldAGY4/80pRcQRZSEnhquk9XuQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/merge-descriptors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/minimatch": { + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz", + "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.8" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "5.1.16", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.16.tgz", + "integrity": "sha512-kVrnsrJqMR8+oLJnGEmSWw9BivK5mt7H3FZatVRjrc5wGqFYuBxX1yG7+A7Gi5AefkX6t/oCkizcQgpu0cY1dQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-releases": { + "version": "2.0.51", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.51.tgz", + "integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-to-regexp": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz", + "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, "license": "ISC" }, "node_modules/picomatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz", + "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==", "dev": true, "license": "MIT", "engines": { @@ -3054,10 +5355,19 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pkce-challenge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz", + "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==", + "license": "MIT", + "engines": { + "node": ">=16.20.0" + } + }, "node_modules/postcss": { - "version": "8.5.15", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", - "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", + "version": "8.5.25", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.25.tgz", + "integrity": "sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==", "dev": true, "funding": [ { @@ -3075,7 +5385,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.12", + "nanoid": "^3.3.16", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -3083,6 +5393,25 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.16", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz", + "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -3090,7 +5419,43 @@ "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">= 0.8.0" + } + }, + "node_modules/prism-react-renderer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz", + "integrity": "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==", + "license": "MIT", + "dependencies": { + "@types/prismjs": "^1.26.0", + "clsx": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.0.0" + } + }, + "node_modules/property-information": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.2.0.tgz", + "integrity": "sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/punycode": { @@ -3102,25 +5467,171 @@ "node": ">=6" } }, + "node_modules/qs": { + "version": "6.15.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz", + "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==", + "license": "BSD-3-Clause", + "dependencies": { + "es-define-property": "^1.0.1", + "side-channel": "^1.1.1" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz", + "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/raw-body": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/react": { - "version": "19.2.6", - "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz", - "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==", + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz", + "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-dom": { - "version": "19.2.6", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz", - "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==", + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.8.tgz", + "integrity": "sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==", "license": "MIT", "dependencies": { "scheduler": "^0.27.0" }, "peerDependencies": { - "react": "^19.2.6" + "react": "^19.2.8" + } + }, + "node_modules/react-markdown": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-9.1.0.tgz", + "integrity": "sha512-xaijuJB0kzGiUdG7nc2MOMDUDBWPyGAjZtUrow9XxUeua8IqeP+VlIfAZ3bphpcLTnSZXz6z9jcVC/TCwbfgdw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "html-url-attributes": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=18", + "react": ">=18" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, "node_modules/rfdc": { @@ -3130,13 +5641,13 @@ "license": "MIT" }, "node_modules/rolldown": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz", - "integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.2.1.tgz", + "integrity": "sha512-4FKJhg8d3OiyQOA6Q1Q0hoFFpW9/OoX+VsHzpECsdsIZoOArrAK90gl59YK/Z+gnDel45bgJZK03ozH/9bCqEw==", "dev": true, "license": "MIT", "dependencies": { - "@oxc-project/types": "=0.132.0", + "@oxc-project/types": "=0.142.0", "@rolldown/pluginutils": "^1.0.0" }, "bin": { @@ -3146,23 +5657,45 @@ "node": "^20.19.0 || >=22.12.0" }, "optionalDependencies": { - "@rolldown/binding-android-arm64": "1.0.2", - "@rolldown/binding-darwin-arm64": "1.0.2", - "@rolldown/binding-darwin-x64": "1.0.2", - "@rolldown/binding-freebsd-x64": "1.0.2", - "@rolldown/binding-linux-arm-gnueabihf": "1.0.2", - "@rolldown/binding-linux-arm64-gnu": "1.0.2", - "@rolldown/binding-linux-arm64-musl": "1.0.2", - "@rolldown/binding-linux-ppc64-gnu": "1.0.2", - "@rolldown/binding-linux-s390x-gnu": "1.0.2", - "@rolldown/binding-linux-x64-gnu": "1.0.2", - "@rolldown/binding-linux-x64-musl": "1.0.2", - "@rolldown/binding-openharmony-arm64": "1.0.2", - "@rolldown/binding-wasm32-wasi": "1.0.2", - "@rolldown/binding-win32-arm64-msvc": "1.0.2", - "@rolldown/binding-win32-x64-msvc": "1.0.2" + "@rolldown/binding-android-arm64": "1.2.1", + "@rolldown/binding-darwin-arm64": "1.2.1", + "@rolldown/binding-darwin-x64": "1.2.1", + "@rolldown/binding-freebsd-x64": "1.2.1", + "@rolldown/binding-linux-arm-gnueabihf": "1.2.1", + "@rolldown/binding-linux-arm64-gnu": "1.2.1", + "@rolldown/binding-linux-arm64-musl": "1.2.1", + "@rolldown/binding-linux-ppc64-gnu": "1.2.1", + "@rolldown/binding-linux-s390x-gnu": "1.2.1", + "@rolldown/binding-linux-x64-gnu": "1.2.1", + "@rolldown/binding-linux-x64-musl": "1.2.1", + "@rolldown/binding-openharmony-arm64": "1.2.1", + "@rolldown/binding-wasm32-wasi": "1.2.1", + "@rolldown/binding-win32-arm64-msvc": "1.2.1", + "@rolldown/binding-win32-x64-msvc": "1.2.1" + } + }, + "node_modules/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", + "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "depd": "^2.0.0", + "is-promise": "^4.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "^8.0.0" + }, + "engines": { + "node": ">= 18" } }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, "node_modules/scheduler": { "version": "0.27.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", @@ -3179,11 +5712,61 @@ "semver": "bin/semver.js" } }, + "node_modules/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", + "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.1", + "mime-types": "^3.0.2", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/serve-static": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", + "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.2.0" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -3196,12 +5779,83 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/side-channel": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz", + "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4", + "side-channel-list": "^1.0.1", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", @@ -3212,6 +5866,25 @@ "node": ">=0.10.0" } }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/streamroller": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", @@ -3226,6 +5899,59 @@ "node": ">=8.0" } }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "license": "MIT", + "dependencies": { + "style-to-object": "1.0.14" + } + }, + "node_modules/style-to-object": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.2.7" + } + }, + "node_modules/tailwindcss": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz", + "integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/tinyglobby": { "version": "0.2.17", "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", @@ -3243,6 +5969,35 @@ "url": "https://github.com/sponsors/SuperchupuDev" } }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/ts-api-utils": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", @@ -3277,6 +6032,37 @@ "node": ">= 0.8.0" } }, + "node_modules/type-is": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz", + "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==", + "license": "MIT", + "dependencies": { + "content-type": "^2.0.0", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/type-is/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/typescript": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", @@ -3292,16 +6078,16 @@ } }, "node_modules/typescript-eslint": { - "version": "8.60.0", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.0.tgz", - "integrity": "sha512-9f65qWLZdAW9m1JaxBDUHcqRUfL8bkxxXL7XxEfI+F09q56PkBvIfCjLF3yInsDM/BBmwkqmCQdCZe/RYlIWEw==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.65.0.tgz", + "integrity": "sha512-/ggrHAwyjENDusvyxbuqxAC2dTnZg/Z8F+fgQtYIz+L6n/9HfSlEZcFGV/NsMNa6CkGk0xUjUAFwC0vHOflvIA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/eslint-plugin": "8.60.0", - "@typescript-eslint/parser": "8.60.0", - "@typescript-eslint/typescript-estree": "8.60.0", - "@typescript-eslint/utils": "8.60.0" + "@typescript-eslint/eslint-plugin": "8.65.0", + "@typescript-eslint/parser": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/utils": "8.65.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3316,12 +6102,99 @@ } }, "node_modules/undici-types": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", - "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", "dev": true, "license": "MIT" }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -3331,6 +6204,15 @@ "node": ">= 4.0.0" } }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/update-browserslist-db": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", @@ -3371,18 +6253,55 @@ "punycode": "^2.1.0" } }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/vite": { - "version": "8.0.14", - "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz", - "integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.2.0.tgz", + "integrity": "sha512-pn+CFpM0lwDeKwmOq1ZaBK/9sjorZcgqxki6MbY/jPEVd9vichIlmlD4HmQ5wdP5EgqQCFRaACBxMC7uEGc6lQ==", "dev": true, "license": "MIT", "dependencies": { - "lightningcss": "^1.32.0", - "picomatch": "^4.0.4", - "postcss": "^8.5.15", - "rolldown": "1.0.2", - "tinyglobby": "^0.2.16" + "lightningcss": "^1.33.0", + "picomatch": "^4.0.5", + "postcss": "^8.5.23", + "rolldown": "~1.2.0", + "tinyglobby": "^0.2.17" }, "bin": { "vite": "bin/vite.js" @@ -3398,7 +6317,7 @@ }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", - "@vitejs/devtools": "^0.1.18", + "@vitejs/devtools": "^0.4.0", "esbuild": "^0.27.0 || ^0.28.0", "jiti": ">=1.21.0", "less": "^4.0.0", @@ -3449,11 +6368,271 @@ } } }, + "node_modules/vite/node_modules/lightningcss": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.33.0.tgz", + "integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.33.0", + "lightningcss-darwin-arm64": "1.33.0", + "lightningcss-darwin-x64": "1.33.0", + "lightningcss-freebsd-x64": "1.33.0", + "lightningcss-linux-arm-gnueabihf": "1.33.0", + "lightningcss-linux-arm64-gnu": "1.33.0", + "lightningcss-linux-arm64-musl": "1.33.0", + "lightningcss-linux-x64-gnu": "1.33.0", + "lightningcss-linux-x64-musl": "1.33.0", + "lightningcss-win32-arm64-msvc": "1.33.0", + "lightningcss-win32-x64-msvc": "1.33.0" + } + }, + "node_modules/vite/node_modules/lightningcss-android-arm64": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz", + "integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-darwin-arm64": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz", + "integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-darwin-x64": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz", + "integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-freebsd-x64": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz", + "integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz", + "integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz", + "integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-linux-arm64-musl": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz", + "integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-linux-x64-gnu": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz", + "integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-linux-x64-musl": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz", + "integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz", + "integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/vite/node_modules/lightningcss-win32-x64-msvc": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz", + "integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -3475,6 +6654,12 @@ "node": ">=0.10.0" } }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, "node_modules/ws": { "version": "8.21.1", "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.1.tgz", @@ -3520,12 +6705,20 @@ "version": "4.4.3", "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz", "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", - "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/colinhacks" } }, + "node_modules/zod-to-json-schema": { + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz", + "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==", + "license": "ISC", + "peerDependencies": { + "zod": "^3.25.28 || ^4" + } + }, "node_modules/zod-validation-error": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", @@ -3538,6 +6731,45 @@ "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" } + }, + "node_modules/zustand": { + "version": "5.0.14", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.14.tgz", + "integrity": "sha512-/8tAspM5LMPr28b3fwLYrtdj77ECpfZviaP75CMTnwO8ISyaE4GDIG/9rDDYq/cH9D2Xw2A2RXglLInmVBQB/g==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0", + "immer": ">=9.0.6", + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + }, + "use-sync-external-store": { + "optional": true + } + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } } } } diff --git a/templates/io-assist-react-editable/package.json b/templates/io-assist-react-editable/package.json index 41dff71..9aa0113 100644 --- a/templates/io-assist-react-editable/package.json +++ b/templates/io-assist-react-editable/package.json @@ -1,5 +1,5 @@ { - "name": "io-assist-react-packaged", + "name": "io-assist-react-editable", "private": true, "version": "0.0.0", "type": "module", @@ -10,13 +10,22 @@ "preview": "vite preview" }, "dependencies": { + "@interopio/ai-web": "^1.1.2", "@interopio/browser": "^4.5.0", + "@interopio/core": ">=6.0.0", + "@interopio/desktop": ">=6.0.0", + "@interopio/working-context": "^1.1.1", "@interopio/workspaces-api": "^4.5.0", + "prism-react-renderer": "^2.4.1", "react": "^19.2.6", - "react-dom": "^19.2.6" + "react-dom": "^19.2.6", + "react-markdown": "^9.0.1", + "remark-gfm": "^4.0.1", + "zustand": "^5.0.3" }, "devDependencies": { "@eslint/js": "^10.0.1", + "@tailwindcss/vite": "^4.1.13", "@types/node": "^24.12.3", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", @@ -25,6 +34,7 @@ "eslint-plugin-react-hooks": "^7.1.1", "eslint-plugin-react-refresh": "^0.5.2", "globals": "^17.6.0", + "tailwindcss": "^4.1.13", "typescript": "~6.0.2", "typescript-eslint": "^8.59.2", "vite": "^8.0.12" diff --git a/templates/io-assist-react-editable/src/App.tsx b/templates/io-assist-react-editable/src/App.tsx index 17587fd..85f0f56 100644 --- a/templates/io-assist-react-editable/src/App.tsx +++ b/templates/io-assist-react-editable/src/App.tsx @@ -1,23 +1,23 @@ -import { useMemo } from 'react' -import IOBrowser from '@interopio/browser' +import { useMemo } from "react"; +import IOBrowser from "@interopio/browser"; import { IoAssist, type IoAssistDynamicConfig, type IoAssistStaticConfig, -} from './io-assist/something' -import IOWorkspaces from '@interopio/workspaces-api' -import './App.css' +} from "./io-assist"; +import IOWorkspaces from "@interopio/workspaces-api"; +import "./App.css"; // this must be defined; -const AGENT_SERVER_URL = ''; +const AGENT_SERVER_URL = "http://localhost:4111"; const createIOConnect: typeof IOBrowser = async (config) => { const io = await IOBrowser(config); - (window as any).io = io; + (window as unknown as { io: typeof io }).io = io; - return io -} + return io; +}; const staticConfig: IoAssistStaticConfig = { connectConfig: { @@ -33,30 +33,30 @@ const staticConfig: IoAssistStaticConfig = { }, }, }, - defaultAgentName: 'io-agent', + defaultAgentName: "io-agent", aiWebConfig: { agentServer: { baseUrl: AGENT_SERVER_URL, }, }, -} +}; function App() { const dynamicConfig = useMemo( () => ({ user: { - id: 'acme-advisor', - name: 'ACME Advisor', + id: "acme-advisor", + name: "ACME Advisor", }, }), [], - ) + ); return (
- ) + ); } -export default App +export default App; diff --git a/templates/io-assist-react-editable/src/index.css b/templates/io-assist-react-editable/src/index.css index b9e1f1c..bd49912 100644 --- a/templates/io-assist-react-editable/src/index.css +++ b/templates/io-assist-react-editable/src/index.css @@ -1,5 +1,3 @@ -@import './io-assist/something'; - html, body, #root { diff --git a/templates/io-assist-react-editable/src/io-assist/.gitkeep b/templates/io-assist-react-editable/src/io-assist/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/templates/io-assist-react-editable/src/io-assist/IoAssist.tsx b/templates/io-assist-react-editable/src/io-assist/IoAssist.tsx new file mode 100644 index 0000000..c8fe91c --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/IoAssist.tsx @@ -0,0 +1,63 @@ +import React from "react"; + +import { Chat } from "./components/chat/Chat"; +import { Spinner } from "./components/shared/icons"; +import { UI_STRINGS } from "./constants/uiStrings"; +import { IoAssistProvider } from "./context/IoAssistContext"; +import { useIoAssistStore } from "./context/IoAssistContext"; +import { useIoAiWebBootstrap } from "./hooks/useIoAiWebBootstrap"; +import { useIoConnectBootstrap } from "./hooks/useIoConnectBootstrap"; +import type { IoAssistStaticConfig, IoAssistDynamicConfig } from "./types"; +import { LOADING_STATES } from "./types/loading"; + +type Props = { + staticConfig: IoAssistStaticConfig; + dynamicConfig: IoAssistDynamicConfig; +}; + +/** + * Root IoAssist component. + * Wrap in your own router/auth shell and pass validated configs. + */ +export function IoAssist({ staticConfig, dynamicConfig }: Props): React.JSX.Element { + return ( + + + + ); +} + +const IoAssistInner: React.FC = () => { + useIoConnectBootstrap(); + useIoAiWebBootstrap(); + + const appLoadingState = useIoAssistStore((s) => s.appLoadingState); + + if (appLoadingState.type === LOADING_STATES.LOADING || appLoadingState.type === LOADING_STATES.NOT_STARTED) { + return ; + } + + if (appLoadingState.type === LOADING_STATES.ERROR) { + return window.location.reload()} />; + } + + return ; +}; + +const LoadingScreen: React.FC = () => ( +
+ +
+); + +const ErrorScreen: React.FC<{ onRetry: () => void }> = ({ onRetry }) => ( +
+
+

⚠️

+

{UI_STRINGS.LOADING_STATE.ERROR}

+ +
+
+); diff --git a/templates/io-assist-react-editable/src/io-assist/PROVENANCE.md b/templates/io-assist-react-editable/src/io-assist/PROVENANCE.md new file mode 100644 index 0000000..2555a5d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/PROVENANCE.md @@ -0,0 +1,76 @@ +# io.Assist React — vendored source provenance + +This directory is a **materialized copy of the io.Assist React source**, placed here so the +application owns it outright and can be edited at source level. + +## Origin + +| | | +|---|---| +| Framework | React | +| Source repository | `InteropIO/iointel-js` (https://github.com/InteropIO/iointel-js) | +| Source path | `libs/io-assist-react/src` | +| Ref | `master` | +| Commit | `4c3ccd3867dc38477c23d0edd2d4ca0dc2797da4` (2026-07-29) | +| Source package | `@interopio/io-assist-react` | +| Package version | `1.0.2` | +| `@interopio/ai-web` version | `1.1.2` | +| Materialized | 2026-07-30 | +| Preset | editable React (`io-assist-react-editable`) | + +## Ownership + +**This source is customer-owned.** It is a one-way fork: + +- local changes need not remain equivalent to future io.Assist versions; +- automatic upstream merges are not promised; +- this is not a theme, plugin, or supported extension point. + +If you need to stay on the upgrade path instead, use the packaged preset +(`@interopio/io-assist-react` consumed as a dependency) and customize through static/dynamic +configuration, prompts, MCP/context/backend configuration, host layout, and the supported styling +boundaries. + +## Deviations from upstream + +The tree is byte-identical to the source path at the commit above, with **one addition**: + +- `styles/files/inter-latin-wght-normal.woff2` — added here. + + Upstream, `styles/index.css` declares `@font-face { src: url('./files/inter-latin-wght-normal.woff2') }`, + but that binary is not in the source tree: the library's `vite.config.ts` copies it out of + `@fontsource-variable/inter` into `dist/files` at package build time. Vendoring the raw source + therefore leaves a dangling reference, so the file is committed alongside the CSS that needs it. + This is why `@fontsource-variable/inter` is *not* a dependency of this application — nothing in the + source imports it, the font arrives only through that `url()`. + + Inter (via `@fontsource-variable/inter@5.2.8`) is licensed under the SIL Open Font License 1.1. + +No import paths were rewritten. The source uses relative imports throughout and no `@/` path alias, +so it drops in unmodified. + +## How this connects to the application + +- `src/App.tsx` imports `IoAssist`, `IoAssistStaticConfig`, `IoAssistDynamicConfig` from `./io-assist`. +- `index.ts` here imports `./styles/index.css` itself, so the application's `src/index.css` must **not** + also import it. +- The styles are **Tailwind v4** (`@import 'tailwindcss'` + `@theme`), so `@tailwindcss/vite` is + required in the application's `vite.config.ts`. Tailwind's source detection scans `src/`, which is + what makes the vendored layout work. + +## Architecture worth understanding before changing things + +AI Web initialization and lifetime; static vs dynamic configuration; agent, thread and message state; +run and streaming event reduction; frontend and server tool traces; sampling and elicitation UI; MCP App +inline and workspace lifecycle; Working Context presentation; persistence and user scoping; the React +context/store wiring in `context/` and `stores/`. + +Change the smallest coherent area, and avoid bypassing the AI Web and Agent Protocol contracts to +achieve a UI-only customization. + +## Official documentation + +- [io.Assist Overview](https://docs-ai.interop.io/modules/io-assist-ng/overview.md) +- [React API](https://docs-ai.interop.io/api-reference/io-assist-react/overview.md) +- [AI Web Overview](https://docs-ai.interop.io/modules/ai-web/overview.md) +- [Agent Protocol](https://docs-ai.interop.io/api-reference/ai-server/agent-protocol.md) diff --git a/templates/io-assist-react-editable/src/io-assist/actions/abortActiveStream.ts b/templates/io-assist-react-editable/src/io-assist/actions/abortActiveStream.ts new file mode 100644 index 0000000..b4a2bbb --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/abortActiveStream.ts @@ -0,0 +1,27 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { MESSAGES_LOADING_STATE } from "../types"; +import { logger } from "../utils/logger"; +import { withAllTraceLabelsAborted } from "../utils/streamUtils"; + +const LOGGER_NAME = "AbortActiveStream"; +const log = logger.get(LOGGER_NAME); + +export function abortActiveStream(store: IoAssistStoreInstance): void { + const state = store.getState(); + const selectedAgent = state.selectedAgent; + const threadId = state.activeThreadId; + + if (!selectedAgent || !threadId) return; + + try { + selectedAgent.rawAgent.abortOperation(threadId); + } catch (error) { + log.warn(`Failed to abort operation for thread ${threadId}: ${(error as Error)?.message ?? error}`); + } + + const after = store.getState(); + after.abortStream(threadId); + after.setToolTraceState(withAllTraceLabelsAborted(after.toolTraceState)); + after.setIsGeneratingResponse(false); + after.setMessageLoadingState({ type: MESSAGES_LOADING_STATE.NOT_STARTED }); +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/deleteThread.ts b/templates/io-assist-react-editable/src/io-assist/actions/deleteThread.ts new file mode 100644 index 0000000..afd8e6f --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/deleteThread.ts @@ -0,0 +1,28 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { newConversation } from "./newConversation"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "DeleteThread"; +const log = logger.get(LOGGER_NAME); + +export async function deleteThread(store: IoAssistStoreInstance, threadId: string): Promise { + const state = store.getState(); + const thread = state.threads.find((t) => t.id === threadId); + if (!thread) return; + const wasActive = state.activeThreadId === threadId; + + try { + await thread.delete(); + } catch { + log.error(`Failed to delete thread on server: ${threadId}`); + return; + } + + const next = store.getState(); + next.removeThread(threadId); + next.untrackStream(threadId); + + if (wasActive) { + await newConversation(store); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/elicitation.ts b/templates/io-assist-react-editable/src/io-assist/actions/elicitation.ts new file mode 100644 index 0000000..34c5fff --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/elicitation.ts @@ -0,0 +1,148 @@ +import type { IoAiWeb } from "@interopio/ai-web"; + +import { ELICITATION_ACTION } from "../constants/modalActions"; +import type { ElicitationAction } from "../constants/modalActions"; +import { UI_STRINGS } from "../constants/uiStrings"; +import { ioAssistStore } from "../stores"; +import { PERMISSION_MODE } from "../stores/permission-mode"; +import { showConfirmModal, MODAL_PREEMPTED } from "../utils/confirmModal"; +import { isModalsAvailable, requestModalDialog } from "../utils/ioModals"; +import { logger } from "../utils/logger"; +import { safeStringify } from "../utils/safeStringify"; + +const LOGGER_NAME = "Elicitation"; +const log = logger.get(LOGGER_NAME); + +type ElicitationResponse = + | { action: typeof ELICITATION_ACTION.ACCEPT; content: Record } + | { action: typeof ELICITATION_ACTION.DECLINE } + | { action: typeof ELICITATION_ACTION.CANCEL }; + +// Guards against a second elicitation modal opening while one is still pending. +// Mirrors ng's `_isElicitationModalActive` flag. +let isElicitationModalActive = false; + +export function selectElicitation(mcp: IoAiWeb.MCPConfig | undefined): (serverName: string, params: IoAiWeb.ElicitationRequestParams) => Promise { + const custom = mcp?.clientsConfig?.capabilities?.elicitation?.handler; + if (typeof custom === "function") { + log.warn("Using a custom elicitation handler provided by user configuration."); + return custom; + } + log.warn("No custom elicitation handler provided. Using built-in handler."); + return handleElicitationRequest; +} + +export async function handleElicitationRequest(serverName: string, request: IoAiWeb.ElicitationRequestParams): Promise { + // Permission mode is checked first: in auto-accept mode we respond directly + // regardless of which thread the request originates from (foreground or + // background). Only in ask mode does the originating thread matter. + if (ioAssistStore.getState().permissionMode === PERMISSION_MODE.AUTO_ACCEPT) { + return buildResponse(ELICITATION_ACTION.ACCEPT, "Auto-accepting elicitation request."); + } + + const requestThreadId: string | undefined = request?._meta?.threadId; + const activeThreadId = ioAssistStore.getState().activeThreadId; + const isFromBackgroundThread = Boolean(requestThreadId && activeThreadId !== requestThreadId); + + if (isFromBackgroundThread) { + log.warn(`Elicitation request rejected: active thread (${activeThreadId}) does not match request thread (${requestThreadId})`); + return buildResponse(ELICITATION_ACTION.CANCEL, "Elicitation request rejected: User was not on the thread that the elicitation request was intended for."); + } + + if (!validateElicitationRequest(request)) { + return buildResponse(ELICITATION_ACTION.CANCEL, "Elicitation request validation failed."); + } + + if (isElicitationModalActive) { + return buildResponse(ELICITATION_ACTION.CANCEL, "Elicitation request rejected: another elicitation is already in progress."); + } + + isElicitationModalActive = true; + try { + return await getElicitationModalResponse(serverName, request); + } catch (error) { + const message = "Error occurred while getting elicitation modal response. Request canceled. " + (error instanceof Error ? error.message : String(error)); + return buildResponse(ELICITATION_ACTION.CANCEL, message); + } finally { + isElicitationModalActive = false; + } +} + +function validateElicitationRequest(request: IoAiWeb.ElicitationRequestParams): boolean { + const meta = request?._meta; + if (!meta || !meta.toolName) { + log.warn("Elicitation request is missing required _meta.toolName field."); + return false; + } + const toolName = meta.toolName; + if (typeof toolName !== "string" || toolName.trim().length === 0) { + log.warn("Elicitation request has invalid _meta.toolName field."); + return false; + } + if (!toolName.startsWith("io_connect")) { + log.warn("Elicitation request is not intended for io_connect."); + return false; + } + return true; +} + +async function getElicitationModalResponse(serverName: string, request: IoAiWeb.ElicitationRequestParams): Promise { + log.info(`Showing elicitation request from server: ${serverName}, requesting: ${safeStringify(request)}`); + + const text = typeof request?.message === "string" ? request.message : UI_STRINGS.ELICITATION_MODAL.FALLBACK_TEXT; + + const modalsAvailable = await isModalsAvailable(); + const buttonId = modalsAvailable ? await getModalsApiResponse(text) : await getBuiltInPanelResponse(text); + + if (buttonId === ELICITATION_ACTION.ACCEPT) return buildResponse(ELICITATION_ACTION.ACCEPT); + if (buttonId === ELICITATION_ACTION.DECLINE) return buildResponse(ELICITATION_ACTION.DECLINE); + return buildResponse(ELICITATION_ACTION.CANCEL, "Elicitation dialog was closed without a response."); +} + +async function getModalsApiResponse(text: string): Promise { + const response = await requestModalDialog({ + templateName: "noInputsConfirmationDialog", + variables: { + title: UI_STRINGS.ELICITATION_MODAL.TITLE, + heading: UI_STRINGS.ELICITATION_MODAL.HEADING, + text, + actionButtons: [ + { variant: "primary", text: "Accept", id: ELICITATION_ACTION.ACCEPT }, + { variant: "outline", text: "Decline", id: ELICITATION_ACTION.DECLINE }, + { variant: "outline", text: "Cancel", id: ELICITATION_ACTION.CANCEL }, + ], + }, + }); + return response?.responseButtonClicked?.id ?? null; +} + +async function getBuiltInPanelResponse(text: string): Promise { + const result = await showConfirmModal({ + title: UI_STRINGS.ELICITATION_MODAL.TITLE, + heading: UI_STRINGS.ELICITATION_MODAL.HEADING, + text, + buttons: [ + { id: ELICITATION_ACTION.ACCEPT, label: "Accept", variant: "primary" }, + { id: ELICITATION_ACTION.DECLINE, label: "Decline", variant: "default" }, + { id: ELICITATION_ACTION.CANCEL, label: "Cancel", variant: "default" }, + ], + }); + if (result === MODAL_PREEMPTED) { + log.warn("Elicitation modal was preempted by another modal; treating as cancel."); + return ELICITATION_ACTION.CANCEL; + } + return result; +} + +function buildResponse(action: ElicitationAction, logMessage?: string): ElicitationResponse { + if (action === ELICITATION_ACTION.ACCEPT) { + log.info(logMessage ?? "User accepted the elicitation request."); + return { action: ELICITATION_ACTION.ACCEPT, content: {} }; + } + if (action === ELICITATION_ACTION.DECLINE) { + log.info(logMessage ?? "User declined the elicitation request."); + return { action: ELICITATION_ACTION.DECLINE }; + } + log.info(logMessage ?? "User canceled the elicitation request."); + return { action: ELICITATION_ACTION.CANCEL }; +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/initIoAiWeb.ts b/templates/io-assist-react-editable/src/io-assist/actions/initIoAiWeb.ts new file mode 100644 index 0000000..6179768 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/initIoAiWeb.ts @@ -0,0 +1,239 @@ +// SDK adapter: initialises IoAiWeb after io.Connect is ready, then runs the +// post-init data loaders (agents, threads, prompts, tools, working context). +// This module mutates the store via `store.getState().setX()` — selectors are +// reserved for render-coupled reads in the React tree. + +import type { IoAiWeb } from "@interopio/ai-web"; +import type { IoIntelWorkingContext } from "@interopio/working-context"; + +import type { IoAssistStoreInstance } from "../stores"; +import { LOADING_STATES, TOOL_STATES } from "../types"; +import type { IoAssistDynamicConfig, IoAssistPrompt, IoAssistPromptCategory, IoAssistStaticConfig, Prompt, UIAgent, UIThread, UITool } from "../types"; +import { selectElicitation } from "./elicitation"; +import { wireMcpAppEvents } from "./mcpAppEvents"; +import { selectSampling } from "./sampling"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "InitIoAiWeb"; +const log = logger.get(LOGGER_NAME); + +export async function initIoAiWeb(staticConfig: IoAssistStaticConfig, dynamicConfig: IoAssistDynamicConfig, store: IoAssistStoreInstance): Promise { + try { + const { IoAiWebFactory } = await import("@interopio/ai-web"); + + const ioApi = store.getState().ioConnectApi; + if (!ioApi) throw new Error("io.Connect API not available"); + + const webConfig = buildWebConfig(staticConfig, dynamicConfig); + + const ioIntelWeb = await IoAiWebFactory(ioApi, webConfig); + + log.info("IoAiWeb initialised successfully."); + + // Expose globally for debugging + // (window as Window & { intel?: IoAiWeb.API }).intel = ioIntelWeb; + + const state = store.getState(); + state.setIoAiWebApi(ioIntelWeb); + state.setAppLoadingState({ type: LOADING_STATES.SUCCESS }); + + // Wire MCP app lifecycle events synchronously after init (mirrors Angular's + // McpAppsService.attach()) so we don't miss any events that fire before + // the post-init Promise.all() resolves. + wireMcpAppEvents(ioIntelWeb, store, dynamicConfig); + + const userId = dynamicConfig.user.id ?? ""; + + // Post-init tasks + await Promise.all([ + listAgents(ioIntelWeb, staticConfig.defaultAgentName, userId, store), + loadPrompts(staticConfig.defaultPrompts ?? [], store), + loadTools(ioIntelWeb, store), + checkWorkingContext(ioIntelWeb, store), + ]); + + const toolsApi = ioIntelWeb.tools as IoAiWeb.Tools.API & { + onChanged?: (cb: () => void) => void; + }; + if (typeof toolsApi.onChanged === "function") { + toolsApi.onChanged(() => { + loadTools(ioIntelWeb, store); + }); + } + } catch (error) { + const message = error instanceof Error ? error.message : "Failed to initialise IO Intel Web API"; + + store.getState().setAppLoadingState({ type: LOADING_STATES.ERROR, message }); + log.error("IoAiWeb initialisation failed.", error instanceof Error ? error : new Error(String(error))); + } +} + +function buildWebConfig(staticConfig: IoAssistStaticConfig, dynamicConfig: IoAssistDynamicConfig): IoAiWeb.WebConfig { + const agentServer: IoAiWeb.AgentServerConfig = { + ...staticConfig.aiWebConfig.agentServer, + headers: { + ...(dynamicConfig.agentServer?.headers ?? {}), + }, + }; + + const config: IoAiWeb.WebConfig = { agentServer }; + + if (staticConfig.aiWebConfig.mcp) { + config.mcp = buildMcpConfig(staticConfig.aiWebConfig.mcp); + } + + if (staticConfig.workingContext) { + config.context = staticConfig.workingContext; + } + + return config; +} + +/** + * Mirrors Angular's IoAiWebService.buildMcpConfig(): injects sampling + + * elicitation handlers. Custom handlers from user config take precedence; + * otherwise the built-in overlay-driven handlers are used. + */ +function buildMcpConfig(mcp: IoAiWeb.MCPConfig): IoAiWeb.MCPConfig { + return { + ...mcp, + clientsConfig: { + ...mcp.clientsConfig, + capabilities: { + ...mcp.clientsConfig?.capabilities, + sampling: { handler: selectSampling(mcp) }, + elicitation: { handler: selectElicitation(mcp) }, + }, + }, + }; +} + +async function listAgents(ioIntelWeb: IoAiWeb.API, defaultAgentName: string | undefined, userId: string, store: IoAssistStoreInstance): Promise { + const state = store.getState(); + state.setAgentsLoadingState({ type: LOADING_STATES.LOADING }); + + try { + const rawAgents = await ioIntelWeb.agents.list(); + + const agents: UIAgent[] = rawAgents.map((a) => ({ + id: a.id, + name: a.name, + // `description` is not on IoAiWeb.Agents.Agent's typed surface but some + // backends surface it via the raw payload — read defensively. + description: (a as IoAiWeb.Agents.Agent & { description?: string }).description, + modelId: a.modelId, + rawAgent: a, + })); + + state.setAgents(agents); + state.setAgentsLoadingState({ type: LOADING_STATES.SUCCESS }); + + // Select the default agent or first + const selected = defaultAgentName ? (agents.find((a) => a.name === defaultAgentName) ?? agents[0]) : agents[0]; + + if (selected) { + state.setSelectedAgent(selected); + + // Fetch threads for this agent + await fetchThreads(ioIntelWeb, selected.rawAgent.id, userId, store); + } + } catch (error) { + store.getState().setAgentsLoadingState({ + type: LOADING_STATES.ERROR, + message: error instanceof Error ? error.message : "Failed to load agents", + }); + } +} + +async function fetchThreads(ioIntelWeb: IoAiWeb.API, agentId: string, userId: string, store: IoAssistStoreInstance): Promise { + const state = store.getState(); + + state.setThreadLoadingState({ type: LOADING_STATES.LOADING }); + + try { + const rawThreads = await ioIntelWeb.threads.list({ + agentId, + resourceId: userId, + }); + + const threads: UIThread[] = rawThreads.map((t) => ({ + id: t.id, + title: t.title || t.id.substring(0, 8), + createdAt: t.createdAt ? new Date(t.createdAt) : new Date(), + updatedAt: t.updatedAt ? new Date(t.updatedAt) : undefined, + rawThread: t, + update: (params: { title: string }) => t.update(params), + delete: () => t.delete(), + getMessages: (params: { limit: number }) => t.getMessages(params), + })); + + state.setThreads(threads); + state.setThreadLoadingState({ type: LOADING_STATES.SUCCESS }); + } catch (error) { + store.getState().setThreadLoadingState({ + type: LOADING_STATES.ERROR, + message: error instanceof Error ? error.message : "Failed to load threads", + }); + } +} + +function loadPrompts(defaultPrompts: IoAssistPromptCategory[], store: IoAssistStoreInstance): void { + const allPrompts: Prompt[] = defaultPrompts.flatMap((category) => + (category.prompts ?? []).map((p: IoAssistPrompt, i: number) => ({ + id: `${category.category ?? "default"}-${i}-${p.name}`, + name: p.name, + description: p.prompt, + category: category.category, + iconResource: p.iconResource, + })) + ); + + store.getState().setAllPrompts(allPrompts); +} + +async function loadTools(ioIntelWeb: IoAiWeb.API, store: IoAssistStoreInstance): Promise { + const state = store.getState(); + state.setToolLoadingState({ type: LOADING_STATES.LOADING }); + + try { + const rawTools = await ioIntelWeb.tools.list(); + + const tools: UITool[] = rawTools.map((t) => ({ + name: t.name, + description: t.description ?? "", + enabled: t.enabled ?? true, + mcpServerName: t.source?.mcpName ?? undefined, + state: TOOL_STATES.IDLE, + rawTool: t, + })); + + state.setTools(tools); + state.setToolLoadingState({ type: LOADING_STATES.SUCCESS }); + } catch { + state.setToolLoadingState({ type: LOADING_STATES.ERROR, message: "Failed to load tools" }); + } +} + +async function checkWorkingContext(ioIntelWeb: IoAiWeb.API, store: IoAssistStoreInstance): Promise { + const state = store.getState(); + + try { + if (!ioIntelWeb.context) { + state.setIsWorkingContextEnabled(false); + return; + } + + state.setIsWorkingContextEnabled(true); + state.setWorkingContextLoadingState({ type: LOADING_STATES.LOADING }); + + const ctx = await ioIntelWeb.context.get(); + state.setWorkingContext(ctx ?? null); + state.setWorkingContextLoadingState({ type: LOADING_STATES.SUCCESS }); + + ioIntelWeb.context.onChanged((newCtx: Record) => { + store.getState().setWorkingContext(newCtx); + }); + } catch { + state.setIsWorkingContextEnabled(false); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/initIoConnect.ts b/templates/io-assist-react-editable/src/io-assist/actions/initIoConnect.ts new file mode 100644 index 0000000..ca3d016 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/initIoConnect.ts @@ -0,0 +1,84 @@ +// SDK adapter: bridges the io.Connect factory (browser or desktop) into the +// store. Pure side-effect module; no React. Mirrors ng's IoService. + +import type { IOConnectBrowser } from "@interopio/browser"; +import type { IOConnectDesktop } from "@interopio/desktop"; + +import { PERMISSION_MODE, type PermissionMode } from "../stores/permission-mode"; +import type { IoAssistStaticConfig } from "../types"; +import { fetchPref } from "../utils/ioPrefs"; +import { logger } from "../utils/logger"; + +export type IoConnectStoreSetters = { + setIoConnectApi: (api: IOConnectBrowser.API) => void; + setIsIoConnectReady: (ready: boolean) => void; + setFavoritePromptNames: (names: string[]) => void; + setPermissionMode: (mode: PermissionMode) => void; + setIsDarkMode: (dark: boolean) => void; +}; + +export async function initIoConnect(config: IoAssistStaticConfig, store: IoConnectStoreSetters): Promise { + const { setIoConnectApi, setIsIoConnectReady, setFavoritePromptNames, setPermissionMode, setIsDarkMode } = store; + + const applyAndSync = (themeName: string) => { + applyTheme(themeName); + setIsDarkMode(themeName === "dark"); + }; + + try { + let ioApi: IOConnectBrowser.API | IOConnectDesktop.API; + + const desktopConfig = config.connectConfig?.desktop; + const browserConfig = config.connectConfig?.browser; + + if (desktopConfig?.factory) { + ioApi = await desktopConfig.factory(desktopConfig.config); + } else if (browserConfig?.factory) { + ioApi = await browserConfig.factory(browserConfig.config); + } else { + throw new Error("No io.Connect factory provided. Supply connectConfig.browser or connectConfig.desktop."); + } + + // Debug-only global. NOT required by IoAiWebFactory — the factory takes + // `ioApi` as a direct argument and never reads `window.io`. Host apps that + // need a global set their own. Commented out to verify nothing depends on it. + // (window as Window & { io?: IOConnectBrowser.API | IOConnectDesktop.API }).io = ioApi; + + logger.setLogger(ioApi.logger); + + setIoConnectApi(ioApi as IOConnectBrowser.API); + setIsIoConnectReady(true); + + const themesApi = ioApi.themes; + if (themesApi) { + try { + const currentTheme = await themesApi.getCurrent(); + if (currentTheme) applyAndSync(currentTheme.name); + themesApi.onChanged((theme: { name: string }) => applyAndSync(theme.name)); + } catch { + // Theme API not available in all configurations — apply dark as fallback + applyAndSync("dark"); + } + } else { + applyAndSync("dark"); + } + + const favoritePrompts = await fetchPref(ioApi, "favoritePrompts"); + if (favoritePrompts) { + setFavoritePromptNames(favoritePrompts); + } + + const storedPermissionMode = await fetchPref(ioApi, "permissionMode"); + if (storedPermissionMode === PERMISSION_MODE.ASK || storedPermissionMode === PERMISSION_MODE.AUTO_ACCEPT) { + setPermissionMode(storedPermissionMode); + } + } catch (error) { + setIsIoConnectReady(false); + console.error("[io-assist-react] io.Connect initialisation failed:", error); + } +} + +function applyTheme(themeName: string): void { + document.documentElement.className = ""; + document.documentElement.classList.add(themeName); +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/mcpAppEvents.ts b/templates/io-assist-react-editable/src/io-assist/actions/mcpAppEvents.ts new file mode 100644 index 0000000..fd2327a --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/mcpAppEvents.ts @@ -0,0 +1,90 @@ +import type { IoAiWeb } from "@interopio/ai-web"; + +import type { IoAssistStoreInstance } from "../stores"; +import type { IoAssistDynamicConfig } from "../types"; +import { sendUserMessage } from "./sendUserMessage"; +import { logger } from "../utils/logger"; +import { showMcpAppReplaceModal } from "../utils/mcpAppModal"; +import { safeStringify } from "../utils/safeStringify"; + +const LOGGER_NAME = "McpAppEvents"; +const log = logger.get(LOGGER_NAME); + +type AppInstance = IoAiWeb.McpApps.AppInstance; + +export function wireMcpAppEvents(ioIntelWeb: IoAiWeb.API, store: IoAssistStoreInstance, dynamicConfig: IoAssistDynamicConfig): void { + if (!ioIntelWeb.mcpApps) { + log.warn("ioIntelWeb.mcpApps is not available — MCP app + recreate prompt will not work. Check the mcpApps config + sandboxProxyUrl."); + return; + } + + log.debug( + `Wiring MCP app handlers: ${safeStringify({ + hasOnAppCreated: typeof ioIntelWeb.mcpApps.onAppCreated === "function", + hasOnRecreateRequested: typeof ioIntelWeb.mcpApps.onRecreateRequested === "function", + hasOnAppRecreated: typeof ioIntelWeb.mcpApps.onAppRecreated === "function", + })}` + ); + + let recreateModalOpen = false; + // Per-app onMessage unsubscribers so we can clean up on recreate. + const chatMessageUnsubs = new Map void>(); + + ioIntelWeb.mcpApps.onAppCreated((app: AppInstance) => { + log.debug(`mcpApps.onAppCreated: ${safeStringify({ id: app?.id, threadId: app?.threadId, hasElement: !!app?.element, hasOnMessage: typeof app?.onMessage === "function" })}`); + const activeThreadId = store.getState().activeThreadId; + if (activeThreadId && app.threadId !== activeThreadId) return; + store.getState().addMcpApp(app); + subscribeAppToChat(app, store, dynamicConfig, chatMessageUnsubs); + }); + + ioIntelWeb.mcpApps.onRecreateRequested((event: IoAiWeb.McpApps.RecreateRequestEvent) => { + log.debug(`mcpApps.onRecreateRequested fired: ${safeStringify({ toolName: event?.toolName, hasSelect: typeof event?.select === "function" })}`); + // While a recreate prompt is already on screen, auto-select 'recreate' + // for subsequent events so dialogs don't stack (mirrors Angular). + if (recreateModalOpen) { + event.select("recreate").catch(() => undefined); + return; + } + recreateModalOpen = true; + + showMcpAppReplaceModal(event.toolName ?? "this app") + .then((choice) => event.select(choice)) + .catch(() => event.select("recreate").catch(() => undefined)) + .finally(() => { + recreateModalOpen = false; + }); + }); + + ioIntelWeb.mcpApps.onAppRecreated((event: IoAiWeb.McpApps.AppRecreatedEvent) => { + store.getState().removeMcpApp(event.oldId); + const oldUnsub = chatMessageUnsubs.get(event.oldId); + if (oldUnsub) { + try { + oldUnsub(); + } catch { + /* noop */ + } + chatMessageUnsubs.delete(event.oldId); + } + }); +} + +function subscribeAppToChat(app: AppInstance, store: IoAssistStoreInstance, dynamicConfig: IoAssistDynamicConfig, unsubs: Map void>): void { + if (typeof app?.onMessage !== "function") { + log.warn(`MCP app instance has no onMessage method: ${safeStringify({ id: app?.id })}`); + return; + } + + const unsub = app.onMessage((text: string) => { + log.debug(`MCP app sent chat message: ${safeStringify({ appId: app.id, text })}`); + const activeThreadId = store.getState().activeThreadId; + if (!activeThreadId) return; + if (app.threadId && app.threadId !== activeThreadId) return; + // Forward as a user message and stream the response — same as the + // user typing into the input area. + void sendUserMessage(store, text, dynamicConfig); + }); + + unsubs.set(app.id, unsub); +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/newConversation.ts b/templates/io-assist-react-editable/src/io-assist/actions/newConversation.ts new file mode 100644 index 0000000..a9d2c2e --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/newConversation.ts @@ -0,0 +1,21 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "NewConversation"; +const log = logger.get(LOGGER_NAME); + +export async function newConversation(store: IoAssistStoreInstance): Promise { + const state = store.getState(); + state.clearMessages(); + state.setActiveThreadId(null); + state.resetMcpApps(); + + const api = state.ioAiWebApi; + if (!api?.mcpApps) return; + + try { + await api.mcpApps.closeAll(); + } catch (err) { + log.error("Failed to close MCP apps on new conversation", err instanceof Error ? err : new Error(String(err))); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/processResponseStream.ts b/templates/io-assist-react-editable/src/io-assist/actions/processResponseStream.ts new file mode 100644 index 0000000..73a7206 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/processResponseStream.ts @@ -0,0 +1,360 @@ +import type { IoAiWeb } from "@interopio/ai-web"; + +import type { IoAssistStoreInstance } from "../stores"; +import { UI_MESSAGE_ROLES, MESSAGES_LOADING_STATE, TOOL_RESULT_TYPES, RESPONSE_STREAM_STATUS } from "../types"; +import type { UIMessage, UIToolMessage } from "../types"; +import { logger } from "../utils/logger"; +import { safeStringify } from "../utils/safeStringify"; +import { ensureAssistantMessage, withAllTraceLabelsFinalized, withExecutedToolUpdated, withToolAppendedToTrace } from "../utils/streamUtils"; + +const LOGGER_NAME = "ResponseStream"; +const log = logger.get(LOGGER_NAME); + +type ToolCallState = { + args: string; + toolName?: string; +}; + +/** + * AG-UI event with the optional payload fields we read off it. The upstream + * `IoAiWeb.Agents.StreamEvent` has a `[key: string]: unknown` index signature + * — this narrows the per-case payload fields without resorting to `any`. The + * `type` discriminant is widened to include extension events some backends + * emit (`TEXT_MESSAGE_CHUNK`, `MESSAGES_SNAPSHOT`) that aren't yet listed in + * `IoAiWeb.Agents.StreamEventType`. + */ +type AgUiEventType = IoAiWeb.Agents.StreamEventType | "TEXT_MESSAGE_CHUNK" | "MESSAGES_SNAPSHOT"; + +type AgUiEvent = Omit & { + type: AgUiEventType; + messageId?: string; + delta?: string; + content?: string | { text?: string } | unknown; + toolCallId?: string; + toolCallName?: string; + messages?: unknown[]; +}; + +export async function processResponseStream(runHandle: IoAiWeb.Agents.StreamResponse, threadId: string, store: IoAssistStoreInstance, isActiveThread: () => boolean): Promise { + if (!runHandle || typeof runHandle.subscribe !== "function") { + throw new Error("Invalid response stream object"); + } + + const toolCallArgsMap = new Map(); + let streamedContent = ""; + let currentMessageId = ""; + // Tracks whether currentMessageId was created as a synthetic placeholder + // for a tool call that fired before any TEXT_MESSAGE_START. + let hasSyntheticPlaceholder = false; + + return new Promise((resolve, reject) => { + // eslint-disable-next-line prefer-const + let subscription: { unsubscribe?: () => void } | undefined; + const safeUnsubscribe = () => subscription?.unsubscribe?.(); + subscription = runHandle.subscribe({ + next: (rawEvent: IoAiWeb.Agents.StreamEvent) => { + const event: AgUiEvent = rawEvent; + const state = store.getState(); + const isBackground = !isActiveThread(); + + // Debug: log every AG-UI event so multi-turn / sampling-continuation + // flows are diagnosable from the browser console. + log.debug(`AG-UI event ${event?.type ?? "unknown"}: ${safeStringify(event)}`); + + switch (event.type) { + case "TEXT_MESSAGE_START": { + const incomingId: string | undefined = event.messageId; + + // Reuse the synthetic placeholder only when this TEXT_MESSAGE_START + // belongs to the SAME turn that created it. A new turn (after a + // sampling/tool-result continuation) arrives with a different + // messageId — in that case we must create a fresh assistant + // message so its text isn't appended to the prior turn's bubble. + const sameTurnAsPlaceholder = hasSyntheticPlaceholder && (!incomingId || incomingId === currentMessageId); + + if (sameTurnAsPlaceholder) { + streamedContent = ""; + hasSyntheticPlaceholder = false; + } else { + currentMessageId = incomingId || crypto.randomUUID(); + streamedContent = ""; + hasSyntheticPlaceholder = false; + + if (!isBackground) { + state.addMessage({ + id: currentMessageId, + role: UI_MESSAGE_ROLES.ASSISTANT, + content: "", + }); + } + } + break; + } + + case "TEXT_MESSAGE_CONTENT": { + streamedContent += event.delta || ""; + + if (isBackground) { + state.setStreamState(threadId, { + content: streamedContent, + messageId: currentMessageId, + }); + return; + } + + // Defensive: some backends emit TEXT_MESSAGE_CONTENT without a + // preceding TEXT_MESSAGE_START (e.g. on turn-2 continuation + // after a sampling result). Create an assistant message on the + // fly so the streamed text actually renders. + const ensuredId = ensureAssistantMessage(state, currentMessageId, event.messageId); + if (ensuredId !== currentMessageId) { + currentMessageId = ensuredId; + } + + state.updateMessage(currentMessageId, { content: streamedContent }); + break; + } + + case "TEXT_MESSAGE_END": + // Treat end-of-text as a turn boundary so any TOOL_CALL_START + // that follows in the SAME turn doesn't reuse this message id + // for a synthetic placeholder check on a later turn. + hasSyntheticPlaceholder = false; + break; + + case "TEXT_MESSAGE_CHUNK": { + // Combined start+content+end shorthand some backends emit. + const chunkId: string | undefined = event.messageId; + if (chunkId && chunkId !== currentMessageId) { + currentMessageId = chunkId; + streamedContent = ""; + hasSyntheticPlaceholder = false; + if (!isBackground) { + state.addMessage({ + id: currentMessageId, + role: UI_MESSAGE_ROLES.ASSISTANT, + content: "", + }); + } + } + const chunkText = event.delta ?? (typeof event.content === "string" ? event.content : ""); + streamedContent += chunkText || ""; + if (isBackground) { + state.setStreamState(threadId, { + content: streamedContent, + messageId: currentMessageId, + }); + } else { + const ensuredId = ensureAssistantMessage(state, currentMessageId, chunkId); + if (ensuredId !== currentMessageId) currentMessageId = ensuredId; + state.updateMessage(currentMessageId, { content: streamedContent }); + } + break; + } + + case "MESSAGES_SNAPSHOT": { + // Reconciliation event some backends emit at the end of a turn. + // If the snapshot contains an assistant message with content that + // hasn't been streamed (e.g. turn-2 after sampling), surface it. + if (isBackground) break; + const snapshotMessages: unknown[] = Array.isArray(event.messages) ? (event.messages as unknown[]) : []; + for (const raw of snapshotMessages) { + const m = raw as { + id?: string; + role?: string; + content?: string | { text?: string }; + }; + if (m?.role !== "assistant") continue; + const text = typeof m.content === "string" ? m.content : (m.content?.text ?? ""); + if (!text) continue; + const messageId = m.id ?? crypto.randomUUID(); + const existing = state.messages.find((x: UIMessage) => x.id === messageId); + if (existing) { + if (!existing.content || existing.content.length < text.length) { + state.updateMessage(messageId, { content: text }); + } + } else { + state.addMessage({ + id: messageId, + role: UI_MESSAGE_ROLES.ASSISTANT, + content: text, + }); + } + } + break; + } + + case "TOOL_CALL_START": { + streamedContent = ""; + + // If no assistant message has started yet, create a synthetic + // placeholder so the trace has a real message ID to anchor to. + if (!currentMessageId) { + currentMessageId = crypto.randomUUID(); + hasSyntheticPlaceholder = true; + if (!isBackground) { + state.addMessage({ + id: currentMessageId, + role: UI_MESSAGE_ROLES.ASSISTANT, + content: "", + }); + } + } + + const toolMessage: UIToolMessage = { + id: event.toolCallId || crypto.randomUUID(), + toolName: event.toolCallName || "unknown", + args: {}, + role: UI_MESSAGE_ROLES.TOOL, + }; + + toolCallArgsMap.set(toolMessage.id, { + args: "", + toolName: toolMessage.toolName, + }); + + if (isBackground) { + const currentStream = state.streamsByThreadId[threadId]; + state.setStreamState(threadId, { + toolMessages: [...(currentStream?.toolMessages ?? []), toolMessage], + }); + return; + } + + state.addMessage(toolMessage); + + state.setToolTraceState(withToolAppendedToTrace(state.toolTraceState, currentMessageId, toolMessage)); + break; + } + + case "TOOL_CALL_ARGS": { + const toolCallId = event.toolCallId || ""; + if (!toolCallId) return; + + const current = toolCallArgsMap.get(toolCallId) || { args: "" }; + toolCallArgsMap.set(toolCallId, { + ...current, + args: current.args + (event.delta || ""), + }); + break; + } + + case "TOOL_CALL_END": { + const toolCallId = event.toolCallId || ""; + if (!toolCallId) return; + + const toolCallState = toolCallArgsMap.get(toolCallId); + let parsedArgs: Record = {}; + + try { + parsedArgs = JSON.parse(toolCallState?.args || "{}"); + } catch { + parsedArgs = {}; + } + + if (isBackground) { + const currentStream = state.streamsByThreadId[threadId]; + state.setStreamState(threadId, { + toolMessages: (currentStream?.toolMessages ?? []).map((tm) => (tm.id === toolCallId ? { ...tm, args: parsedArgs } : tm)), + }); + } else { + state.updateMessage(toolCallId, { args: parsedArgs }); + + // Update the tool's args but keep the in-flight "Called tool: X" + // label — it's finalized to "Used N tools" only on completion. + state.setToolTraceState( + withExecutedToolUpdated(state.toolTraceState, toolCallId, { + args: parsedArgs, + }) + ); + } + break; + } + + case "TOOL_CALL_RESULT": { + const resultToolCallId = event.toolCallId || ""; + if (!resultToolCallId) return; + + // AG-UI carries the tool result on `event.content` (string or object), + // NOT `event.result`. When it's a string, try to JSON.parse it; on + // parse failure, wrap as a TEXT ToolResult to match ng's behaviour. + let result: unknown = event.content; + if (typeof result === "string") { + try { + result = JSON.parse(result); + } catch { + result = { type: TOOL_RESULT_TYPES.TEXT, text: result }; + } + } + + if (isBackground) { + const currentStream = state.streamsByThreadId[threadId]; + state.setStreamState(threadId, { + toolMessages: (currentStream?.toolMessages ?? []).map((tm) => (tm.id === resultToolCallId ? { ...tm, result: result as UIToolMessage["result"] } : tm)), + }); + } else { + state.updateMessage(resultToolCallId, { + result, + } as Partial); + + state.setToolTraceState( + withExecutedToolUpdated(state.toolTraceState, resultToolCallId, { + result, + } as Partial) + ); + } + break; + } + } + }, + error: (error: Error) => { + const storeState = store.getState(); + storeState.setIsGeneratingResponse(false); + safeUnsubscribe(); + + const wasAborted = storeState.streamsByThreadId[threadId]?.status === RESPONSE_STREAM_STATUS.ABORTED; + if (wasAborted) { + resolve(); + return; + } + + storeState.failStream(threadId, error.message || "Error during response generation"); + storeState.setIsLastResponseSuccess(false); + storeState.setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.ERROR, + message: error.message || "Error during response generation", + }); + reject(error); + }, + complete: () => { + const finalState = store.getState(); + + // Finalize all trace labels for this assistant turn — but don't clobber + // the "User aborted after using N tools" label set by abortActiveStream + // if the user stopped this stream. + const wasAborted = finalState.streamsByThreadId[threadId]?.status === RESPONSE_STREAM_STATUS.ABORTED; + if (isActiveThread() && !wasAborted) { + finalState.setToolTraceState(withAllTraceLabelsFinalized(finalState.toolTraceState)); + } + + const shouldNotify = !isActiveThread(); + finalState.completeStream(threadId, shouldNotify); + + finalState.setIsGeneratingResponse(false); + if (wasAborted) { + // User stop — not a success. Match ng's NOT_STARTED reset (no error, footer shows). + finalState.setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.NOT_STARTED, + }); + } else { + finalState.setIsLastResponseSuccess(true); + finalState.setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.GET_RESPONSE_SUCCESS, + }); + } + safeUnsubscribe(); + resolve(); + }, + }); + }); +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/renameThread.ts b/templates/io-assist-react-editable/src/io-assist/actions/renameThread.ts new file mode 100644 index 0000000..3f39a49 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/renameThread.ts @@ -0,0 +1,19 @@ +import type { IoAssistStoreInstance } from "../stores"; + +export async function renameThread(store: IoAssistStoreInstance, threadId: string, title: string): Promise { + const trimmed = title.trim(); + if (!trimmed) return; + + const state = store.getState(); + const thread = state.threads.find((t) => t.id === threadId); + if (!thread) return; + + const previousTitle = thread.title; + state.updateThread(threadId, { title: trimmed }); + + try { + await thread.update({ title: trimmed }); + } catch { + store.getState().updateThread(threadId, { title: previousTitle }); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/sampling.ts b/templates/io-assist-react-editable/src/io-assist/actions/sampling.ts new file mode 100644 index 0000000..b43a25d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/sampling.ts @@ -0,0 +1,191 @@ +import type { IoAiWeb } from "@interopio/ai-web"; + +import { SAMPLING_ACTION } from "../constants/modalActions"; +import { UI_STRINGS } from "../constants/uiStrings"; +import { ioAssistStore } from "../stores"; +import { PERMISSION_MODE } from "../stores/permission-mode"; +import { showConfirmModal, MODAL_PREEMPTED } from "../utils/confirmModal"; +import { isModalsAvailable, requestModalDialog } from "../utils/ioModals"; +import { logger } from "../utils/logger"; +import { extractTextContent } from "../utils/messageConverter"; +import { safeStringify } from "../utils/safeStringify"; + +const LOGGER_NAME = "Sampling"; +const log = logger.get(LOGGER_NAME); + +type SamplingResponse = IoAiWeb.SamplingSuccessResponse | IoAiWeb.SamplingErrorResponse; + +type SamplingMessage = IoAiWeb.SamplingRequestParams["messages"][number]; + +// Guards against a second sampling consent modal opening while one is still +// pending. Mirrors ng's `_isSamplingModalActive` flag. +let isSamplingModalActive = false; + +export function selectSampling(mcp: IoAiWeb.MCPConfig | undefined): (serverName: string, params: IoAiWeb.SamplingRequestParams) => Promise { + const custom = mcp?.clientsConfig?.capabilities?.sampling?.handler; + if (typeof custom === "function") { + log.warn("Using a custom sampling handler provided by user configuration."); + return custom; + } + log.warn("No custom sampling handler provided. Using built-in handler."); + return handleSamplingRequest; +} + +export async function handleSamplingRequest(serverName: string, request: IoAiWeb.SamplingRequestParams): Promise { + // Permission mode is checked first: in auto-accept mode we respond directly + // regardless of which thread the request originates from (foreground or + // background). Only in ask mode does the originating thread matter. + if (ioAssistStore.getState().permissionMode === PERMISSION_MODE.AUTO_ACCEPT) { + log.info("Auto-accepting sampling request."); + return await getSamplingResponse(request); + } + + const requestThreadId: string | undefined = request?._meta?.threadId; + const activeThreadId = ioAssistStore.getState().activeThreadId; + const isFromBackgroundThread = Boolean(requestThreadId && activeThreadId !== requestThreadId); + + if (isFromBackgroundThread) { + log.warn(`Sampling request rejected: active thread (${activeThreadId}) does not match request thread (${requestThreadId})`); + return { + code: -1, + message: "Sampling request rejected: User was not on the thread that the request was intended for.", + }; + } + + if (isSamplingModalActive) { + log.warn("Sampling request rejected: another sampling is already in progress."); + return { + code: -1, + message: "Sampling request rejected: another sampling is already in progress.", + }; + } + + isSamplingModalActive = true; + try { + return await getSamplingModalResponse(serverName, request); + } catch (error) { + log.error(`Error occurred while getting sampling modal response: ${error instanceof Error ? error.message : String(error)}`); + return { code: -1, message: "An error occurred while processing the sampling request." }; + } finally { + isSamplingModalActive = false; + } +} + +async function getSamplingModalResponse(serverName: string, request: IoAiWeb.SamplingRequestParams): Promise { + log.info(`Showing sampling request from server: ${serverName}, requesting: ${safeStringify(request)}`); + + const modalsAvailable = await isModalsAvailable(); + const accepted = modalsAvailable ? await getModalsApiResponse() : await getBuiltInPanelResponse(); + + if (accepted) { + log.info("User approved the sampling request."); + return await getSamplingResponse(request); + } + + log.info("User denied the sampling request."); + return { code: -1, message: "User denied the sampling request." }; +} + +async function getModalsApiResponse(): Promise { + const response = await requestModalDialog({ + templateName: "noInputsConfirmationDialog", + variables: { + title: UI_STRINGS.SAMPLING_MODAL.TITLE, + heading: UI_STRINGS.SAMPLING_MODAL.HEADING, + text: UI_STRINGS.SAMPLING_MODAL.TEXT, + actionButtons: [ + { variant: "primary", text: "Continue", id: "yes" }, + { variant: "outline", text: "Cancel", id: "no" }, + ], + }, + }); + return response?.responseButtonClicked?.id === "yes"; +} + +async function getBuiltInPanelResponse(): Promise { + const buttonId = await showConfirmModal({ + title: UI_STRINGS.SAMPLING_MODAL.TITLE, + heading: UI_STRINGS.SAMPLING_MODAL.HEADING, + text: UI_STRINGS.SAMPLING_MODAL.TEXT, + buttons: [ + { id: SAMPLING_ACTION.ACCEPT, label: "Continue", variant: "primary" }, + { id: SAMPLING_ACTION.DECLINE, label: "Cancel", variant: "default" }, + ], + }); + if (buttonId === MODAL_PREEMPTED) { + log.warn("Sampling consent modal was preempted by another modal; treating as decline."); + return false; + } + return buttonId === SAMPLING_ACTION.ACCEPT; +} + +async function getSamplingResponse(request: IoAiWeb.SamplingRequestParams): Promise { + const selectedAgent = ioAssistStore.getState().selectedAgent; + if (!selectedAgent) { + return { code: -1, message: "No agent available for sampling." }; + } + + log.debug(`Preparing to generate sampling response with request: ${safeStringify(request)}`); + + type FormattedMessage = { + id: string; + role: SamplingMessage["role"] | "system"; + content: string; + }; + + const formattedMessages: FormattedMessage[] = (request?.messages ?? []).map((element: SamplingMessage) => ({ + id: crypto.randomUUID(), + role: element?.role, + content: extractTextContent(element?.content), + })); + + log.debug(`Formatted messages for sampling request: ${safeStringify(formattedMessages)}`); + + if (request?.systemPrompt) { + formattedMessages.unshift({ + id: crypto.randomUUID(), + role: "system", + content: request.systemPrompt, + }); + } + + const params = { + messages: formattedMessages, + instructions: request?.systemPrompt, + system: request?.systemPrompt, + modelSettings: { + maxTokens: request?.maxTokens, + temperature: request?.temperature ?? undefined, + }, + requestContext: { + modelPreferences: request?.modelPreferences || undefined, + }, + structuredOutput: { + schema: request?._meta?.structuredOutput, + }, + tools: { autoIncludeEnabled: false }, + }; + + try { + const response = await selectedAgent.rawAgent.generate(params); + if (!response) { + return { + code: -1, + message: "Failed to generate response for sampling success response.", + }; + } + + const finalMessage: IoAiWeb.SamplingSuccessResponse = { + role: "assistant", + content: { type: "text", text: response.text ?? "" }, + model: selectedAgent.modelId ?? "unknown", + stopReason: "endTurn", + }; + + log.info(`Generated response for sampling success: ${safeStringify(finalMessage)}`); + return finalMessage; + } catch (error) { + log.error(`Failed to generate sampling response: ${error instanceof Error ? error.message : String(error)}`); + return { code: -1, message: "Failed to generate sampling response." }; + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/selectThread.ts b/templates/io-assist-react-editable/src/io-assist/actions/selectThread.ts new file mode 100644 index 0000000..a55cbbd --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/selectThread.ts @@ -0,0 +1,73 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { MESSAGES_LOADING_STATE, RESPONSE_STREAM_STATUS, UI_MESSAGE_ROLES } from "../types"; +import type { UIMessage, UIToolMessage } from "../types"; +import { logger } from "../utils/logger"; +import { convertThreadMessages } from "../utils/messageConverter"; +import { buildToolTraceFromMessages } from "../utils/threadUtils"; + +const LOGGER_NAME = "SelectThread"; +const log = logger.get(LOGGER_NAME); + +export async function selectThread(store: IoAssistStoreInstance, threadId: string): Promise { + const state = store.getState(); + const thread = state.threads.find((t) => t.id === threadId); + + state.clearCompletionNotification(threadId); + + if (state.activeThreadId && state.activeThreadId !== threadId) { + state.untrackStream(state.activeThreadId); + } + + state.setActiveThreadId(threadId); + state.clearMessages(); + state.resetMcpApps(); + state.setIsThreadHistoryVisible(false); + + if (!thread) return; + + state.setMessageLoadingState({ type: MESSAGES_LOADING_STATE.LOADING_FROM_THREAD }); + try { + const response = await thread.getMessages({ limit: 100 }); + // `IoAiWeb.Threads.GetMessagesResponse.messages` is itself `any[]` upstream — the + // shape isn't typed on the d.ts. Treat as `unknown[]` at this boundary and let + // `convertThreadMessages` narrow via type-guards. + const rawMessages: unknown[] = Array.isArray(response) ? response : (response?.messages ?? []); + + const messages: UIMessage[] = convertThreadMessages(rawMessages); + const toolTraces = buildToolTraceFromMessages(messages); + store.getState().setMessages(messages); + store.getState().setToolTraceState(toolTraces); + + // Restore MCP app instances for the thread — mirrors ng's + // createMcpAppsOnThreadFetch$ effect. Without this, reopening a + // thread leaves the workspace windows empty because the SDK + // doesn't reattach app instances on its own. + const mcpApps = store.getState().ioAiWebApi?.mcpApps; + if (mcpApps) { + const apps = messages + .filter((m): m is UIToolMessage => m.role === UI_MESSAGE_ROLES.TOOL) + .map((m) => ({ + toolCallId: m.id, + toolName: m.toolName, + toolInput: m.args, + toolResult: m.result, + })); + const restoreApps = apps.length > 0 ? mcpApps.recreate({ threadId, apps }) : mcpApps.closeAll(); + Promise.resolve(restoreApps).catch((err: unknown) => log.error("Failed to restore MCP apps on thread reopen", err as Error)); + } + + const threadStream = store.getState().streamsByThreadId[threadId]; + if (threadStream?.status === RESPONSE_STREAM_STATUS.STREAMING) { + store.getState().mergeAccumulatedStreamContent(threadId); + } + + store.getState().setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.FETCH_MESSAGES_FROM_THREAD_SUCCESS, + }); + } catch (error) { + store.getState().setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.ERROR, + message: error instanceof Error ? error.message : "Failed to load messages", + }); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/sendUserMessage.ts b/templates/io-assist-react-editable/src/io-assist/actions/sendUserMessage.ts new file mode 100644 index 0000000..ed7e49d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/sendUserMessage.ts @@ -0,0 +1,97 @@ +import type { IoAiWeb } from "@interopio/ai-web"; + +import type { IoAssistStoreInstance } from "../stores"; +import { UI_MESSAGE_ROLES, MESSAGES_LOADING_STATE } from "../types"; +import type { IoAssistDynamicConfig, UIThread, UIUserMessage } from "../types"; +import { processResponseStream } from "./processResponseStream"; +import { logger } from "../utils/logger"; +import { safeStringify } from "../utils/safeStringify"; + +const LOGGER_NAME = "SendUserMessage"; +const log = logger.get(LOGGER_NAME); + +export async function sendUserMessage(store: IoAssistStoreInstance, text: string, dynamicConfig: IoAssistDynamicConfig): Promise { + log.debug(`sendUserMessage called with text: ${text}`); + const state = store.getState(); + const selectedAgent = state.selectedAgent; + const ioIntelWeb = state.ioAiWebApi; + + if (!selectedAgent || !ioIntelWeb) { + throw new Error("Agent or IoAiWeb API not ready"); + } + + let threadId = state.activeThreadId; + if (!threadId) { + threadId = crypto.randomUUID(); + state.setActiveThreadId(threadId); + } + + const userId = dynamicConfig.user.id; + const userMessage: UIUserMessage = { + id: crypto.randomUUID(), + role: UI_MESSAGE_ROLES.USER, + content: text, + }; + + state.addMessage(userMessage); + // One-shot imperative snap: pin the just-sent message to the top of the + // visible chat. Done here so it fires for both InputArea-driven sends and + // any other call site of sendUserMessage (e.g. MCP-app message forwarding). + state.requestScrollAnchor(); + state.setIsGeneratingResponse(true); + state.setIsLastResponseSuccess(false); + state.setMessageLoadingState({ type: MESSAGES_LOADING_STATE.LOADING_RESPONSE }); + + // Send only the new user message — the server reconstructs conversation + // history from thread memory. Sending all UI messages caused duplicates + // because the server was writing them again on top of what it already had. + // Mirrors Angular's input-area-send-button which passes only [userMessage]. + const streamParams = { + messages: [{ id: userMessage.id, role: userMessage.role, content: userMessage.content ?? "" }], + memory: { thread: threadId, resource: userId }, + resourceId: userId, + tools: { autoIncludeEnabled: true }, + }; + + try { + log.debug(`Initiating agent stream with params: ${safeStringify(streamParams)}`); + const runHandle = await selectedAgent.rawAgent.stream(streamParams); + + // Store userMessage in stream state before streaming begins + // (mirrors Angular's _dispatchStreamForThread) + store.getState().startStream(threadId, userMessage); + + await processResponseStream(runHandle, threadId, store, () => store.getState().activeThreadId === threadId); + + await refreshThreads(ioIntelWeb, selectedAgent.rawAgent.id, userId, store); + } catch (error) { + state.setIsGeneratingResponse(false); + state.setIsLastResponseSuccess(false); + state.setMessageLoadingState({ + type: MESSAGES_LOADING_STATE.ERROR, + message: error instanceof Error ? error.message : "Error during response generation", + }); + log.error("Send message failed", error instanceof Error ? error : new Error(String(error))); + } +} + +async function refreshThreads(ioIntelWeb: IoAiWeb.API, agentId: string, userId: string, store: IoAssistStoreInstance): Promise { + try { + const rawThreads = await ioIntelWeb.threads.list({ agentId, resourceId: userId }); + + const threads: UIThread[] = rawThreads.map((t) => ({ + id: t.id, + title: t.title || t.id.substring(0, 8), + createdAt: t.createdAt ? new Date(t.createdAt) : new Date(), + updatedAt: t.updatedAt ? new Date(t.updatedAt) : undefined, + rawThread: t, + update: (params: { title: string }) => t.update(params), + delete: () => t.delete(), + getMessages: (params: { limit: number }) => t.getMessages(params), + })); + + store.getState().setThreads(threads); + } catch { + // Non-critical – silently ignore + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/setPermissionMode.ts b/templates/io-assist-react-editable/src/io-assist/actions/setPermissionMode.ts new file mode 100644 index 0000000..1289569 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/setPermissionMode.ts @@ -0,0 +1,25 @@ +import type { IoAssistStoreInstance } from "../stores"; +import type { PermissionMode } from "../stores/permission-mode"; +import { updatePref } from "../utils/ioPrefs"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "SetPermissionMode"; +const log = logger.get(LOGGER_NAME); + +/** + * Update the permission mode and persist it to `io.prefs`. The store mutation is + * optimistic; if `prefs.update` fails, the previous value is restored. + */ +export async function setPermissionMode(store: IoAssistStoreInstance, mode: PermissionMode): Promise { + const before = store.getState().permissionMode; + store.getState().setPermissionMode(mode); + + const api = store.getState().ioConnectApi; + + try { + await updatePref(api, "permissionMode", mode); + } catch (err) { + log.error("Failed to persist permission mode", err instanceof Error ? err : new Error(String(err))); + store.getState().setPermissionMode(before); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/toggleFavoritePrompt.ts b/templates/io-assist-react-editable/src/io-assist/actions/toggleFavoritePrompt.ts new file mode 100644 index 0000000..590395d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/toggleFavoritePrompt.ts @@ -0,0 +1,27 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { updatePref } from "../utils/ioPrefs"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "ToggleFavoritePrompt"; +const log = logger.get(LOGGER_NAME); + +/** + * Toggle a prompt's favorite status and persist the new list to + * `io.prefs`. The store mutation is the source of truth and is kept even + * when persistence fails — this mirrors ng's `syncFavoritePromptsInPrefs$` + * effect, which logs the error and returns `EMPTY` without reverting the + * store. Reverting here would hide the favorite on platforms that don't + * support prefs writes (e.g. the platform-mcp e2e setup). + */ +export async function toggleFavoritePrompt(store: IoAssistStoreInstance, name: string): Promise { + store.getState().toggleFavoritePrompt(name); + const after = store.getState().favoritePromptNames; + + const api = store.getState().ioConnectApi; + + try { + await updatePref(api, "favoritePrompts", after); + } catch (err) { + log.error("Failed to persist favorite prompts", err instanceof Error ? err : new Error(String(err))); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/actions/toggleTool.ts b/templates/io-assist-react-editable/src/io-assist/actions/toggleTool.ts new file mode 100644 index 0000000..39b185d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/actions/toggleTool.ts @@ -0,0 +1,22 @@ +import type { IoAssistStoreInstance } from "../stores"; +import { TOOL_STATES } from "../types"; +import { logger } from "../utils/logger"; + +const LOGGER_NAME = "ToggleTool"; +const log = logger.get(LOGGER_NAME); + +export async function toggleTool(store: IoAssistStoreInstance, name: string, enabled: boolean): Promise { + const state = store.getState(); + const api = state.ioAiWebApi; + if (!api?.tools) return; + + state.updateToolState(name, TOOL_STATES.ENABLING_DISABLING); + try { + const updated = await api.tools.toggleTool(name, enabled); + store.getState().updateToolEnabled(name, updated?.enabled ?? enabled); + } catch (err) { + log.error("toggleTool error", err instanceof Error ? err : new Error(String(err))); + } finally { + store.getState().updateToolState(name, TOOL_STATES.IDLE); + } +} diff --git a/templates/io-assist-react-editable/src/io-assist/components/chat/ActivePanelModal.tsx b/templates/io-assist-react-editable/src/io-assist/components/chat/ActivePanelModal.tsx new file mode 100644 index 0000000..8704a47 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/chat/ActivePanelModal.tsx @@ -0,0 +1,39 @@ +import React from "react"; + +import { UI_STRINGS } from "../../constants/uiStrings"; +import { useIoAssistStore } from "../../context/IoAssistContext"; +import { PANEL_CONTENT } from "../../types/panel"; +import { PromptListPanel } from "../prompt/PromptListPanel"; +import { Modal } from "../shared/Modal"; +import { ToolListPanel } from "../tool/ToolListPanel"; +import { WorkingContextPanel } from "../working-context-panel/WorkingContextPanel"; + +/** + * Renders the currently-active panel (working-context / prompts / tools) inside + * a centered modal. Mirrors the io-assist-ng OverlayService + AppPanel pattern. + */ +export const ActivePanelModal: React.FC = () => { + const activePanelContent = useIoAssistStore((s) => s.activePanelContent); + const setActivePanelContent = useIoAssistStore((s) => s.setActivePanelContent); + + if (!activePanelContent) return null; + + const title = + activePanelContent === PANEL_CONTENT.WORKING_CONTEXT + ? UI_STRINGS.WORKING_CONTEXT_PANEL.TITLE + : activePanelContent === PANEL_CONTENT.PROMPTS + ? UI_STRINGS.PROMPT_LIST_COMPONENT.AVAILABLE_PROMPTS + : UI_STRINGS.TOOL_LIST_COMPONENT.AVAILABLE_TOOLS; + + const close = () => setActivePanelContent(null); + + return ( + +
+ {activePanelContent === PANEL_CONTENT.WORKING_CONTEXT && } + {activePanelContent === PANEL_CONTENT.PROMPTS && } + {activePanelContent === PANEL_CONTENT.TOOLS && } +
+
+ ); +}; diff --git a/templates/io-assist-react-editable/src/io-assist/components/chat/AiDisclaimer.tsx b/templates/io-assist-react-editable/src/io-assist/components/chat/AiDisclaimer.tsx new file mode 100644 index 0000000..0ded168 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/chat/AiDisclaimer.tsx @@ -0,0 +1,13 @@ +import React from "react"; + +import { UI_STRINGS } from "../../constants/uiStrings"; + +type Props = { + showMessageArea: boolean; +}; + +export const AiDisclaimer: React.FC = ({ showMessageArea }) => ( +
+ {UI_STRINGS.GENERAL.AI_CONTENT_INFO} +
+); diff --git a/templates/io-assist-react-editable/src/io-assist/components/chat/Chat.tsx b/templates/io-assist-react-editable/src/io-assist/components/chat/Chat.tsx new file mode 100644 index 0000000..b10af27 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/chat/Chat.tsx @@ -0,0 +1,99 @@ +import React, { useEffect } from "react"; + +import { ActivePanelModal } from "./ActivePanelModal"; +import { AiDisclaimer } from "./AiDisclaimer"; +import { ConfirmModal } from "./ConfirmModal"; +import { WelcomeHeading } from "./WelcomeHeading"; +import { useIoAssistStore, useIoAssistDynamicConfig } from "../../context/IoAssistContext"; +import { useIoAiWebApi } from "../../hooks/useIoAiWebApi"; +import { useIsMobileViewport } from "../../hooks/useIsMobileViewport"; +import { MESSAGES_LOADING_STATE } from "../../types/loading"; +import { Header } from "../header/Header"; +import { InputArea } from "../input-area/InputArea"; +import { MessageArea } from "../messages/MessageArea"; +import { FavoritePromptList } from "../prompt/FavoritePromptList"; +import { ThreadHistoryPanel } from "../threads/ThreadHistoryPanel"; + +export const Chat: React.FC = () => { + const dynamicConfig = useIoAssistDynamicConfig(); + const isThreadHistoryVisible = useIoAssistStore((s) => s.isThreadHistoryVisible); + const setIsThreadHistoryVisible = useIoAssistStore((s) => s.setIsThreadHistoryVisible); + const messages = useIoAssistStore((s) => s.messages); + const messageLoadingState = useIoAssistStore((s) => s.messageLoadingState); + const favoritePromptNames = useIoAssistStore((s) => s.favoritePromptNames); + + const { sendMessage, abortMessage } = useIoAiWebApi(); + + const isMobile = useIsMobileViewport(); + + const hasMessages = messages.length > 0; + const isLoadingThread = messageLoadingState.type === MESSAGES_LOADING_STATE.LOADING_FROM_THREAD; + const showMessageArea = hasMessages || isLoadingThread; + const showWelcomeMessage = !showMessageArea; + const showFavoritePrompts = showWelcomeMessage && favoritePromptNames.length > 0; + const agentName = dynamicConfig.user.name ?? dynamicConfig.user.id; + + // Auto-close sidebar when the viewport shrinks below md (parity with ng's + // ResponsiveUIService effect). Intentionally depends only on `isMobile` so + // it fires on the false→true transition; including `isThreadHistoryVisible` + // would race the Header's open action and slam it shut on mobile. + useEffect(() => { + if (isMobile) { + setIsThreadHistoryVisible(false); + } + }, [isMobile, setIsThreadHistoryVisible]); + + const handleSend = (text: string): void => { + sendMessage(text); + }; + + const handleReload = (userQueryId: string): void => { + const userMessage = messages.find((m) => m.id === userQueryId && m.role === "user"); + if (userMessage && typeof userMessage.content === "string" && userMessage.content.trim()) { + sendMessage(userMessage.content); + } + }; + + const closeSidebar = (): void => setIsThreadHistoryVisible(false); + + const scrollableClassNames = [ + "flex flex-col flex-1 min-h-0 min-w-0 pb-0 w-full overflow-x-hidden overflow-y-auto", + "custom-scrollbar", + showMessageArea ? "pt-0 gap-0" : "pt-24 md:pt-20 gap-12 md:gap-14", + ].join(" "); + + const innerColumnClassNames = ["flex flex-1 min-h-0 min-w-0 flex-col items-center w-full custom-scrollbar-snap-right", showMessageArea ? "gap-0" : "gap-6"].join(" "); + + return ( +
+
+ {isThreadHistoryVisible && isMobile && ( +
e.key === "Escape" && closeSidebar()} /> + )} + + {isThreadHistoryVisible && } + +
+
+ +
+ {showWelcomeMessage && } + +
+ {showMessageArea && } + + + + {showFavoritePrompts && } + + +
+
+
+
+ + + +
+ ); +}; diff --git a/templates/io-assist-react-editable/src/io-assist/components/chat/ConfirmModal.tsx b/templates/io-assist-react-editable/src/io-assist/components/chat/ConfirmModal.tsx new file mode 100644 index 0000000..8fe020d --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/chat/ConfirmModal.tsx @@ -0,0 +1,51 @@ +import React from "react"; + +import { useIoAssistStore } from "../../context/IoAssistContext"; +import { resolveConfirmModal } from "../../utils/confirmModal"; +import { Modal } from "../shared/Modal"; + +/** + * Async question-style dialog backed by `currentConfirmModal` store state: + * sampling consent, elicitation, mcp-replace. Renders `{heading, text, buttons}` + * config and resolves the promise returned by `showConfirmModal` with the + * clicked button id. + */ +export const ConfirmModal: React.FC = () => { + const confirmModal = useIoAssistStore((s) => s.currentConfirmModal); + + if (!confirmModal) return null; + + const close = () => resolveConfirmModal(null); + const showCloseIcon = confirmModal.isHeaderCloseButtonDisplayed ?? false; + + const footer = + confirmModal.buttons.length > 0 + ? confirmModal.buttons.map((btn) => { + const isPrimary = btn.variant === "primary"; + return ( + + ); + }) + : null; + + return ( + +
+ {confirmModal.heading && {confirmModal.heading}} + {confirmModal.text && {confirmModal.text}} +
+
+ ); +}; diff --git a/templates/io-assist-react-editable/src/io-assist/components/chat/WelcomeHeading.tsx b/templates/io-assist-react-editable/src/io-assist/components/chat/WelcomeHeading.tsx new file mode 100644 index 0000000..6cda8c9 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/chat/WelcomeHeading.tsx @@ -0,0 +1,13 @@ +import React from "react"; + +import { UI_STRINGS } from "../../constants/uiStrings"; + +type Props = { + agentName: string; +}; + +export const WelcomeHeading: React.FC = ({ agentName }) => ( +
+

{UI_STRINGS.GENERAL.WELCOME_MESSAGE(agentName)}

+
+); diff --git a/templates/io-assist-react-editable/src/io-assist/components/header/Header.tsx b/templates/io-assist-react-editable/src/io-assist/components/header/Header.tsx new file mode 100644 index 0000000..a0aef05 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/header/Header.tsx @@ -0,0 +1,84 @@ +import React from "react"; + +import { UI_STRINGS } from "../../constants/uiStrings"; +import { useIoAssistStore } from "../../context/IoAssistContext"; +import { useIoAiWebApi } from "../../hooks/useIoAiWebApi"; +import { MESSAGES_LOADING_STATE } from "../../types/loading"; +import { PANEL_CONTENT } from "../../types/panel"; +import { IconButton } from "../shared/IconButton"; +import { HomeIcon, ThreadHistoryIcon } from "../shared/icons"; +import { Tooltip } from "../shared/Tooltip"; + +export const Header: React.FC = () => { + const isThreadHistoryVisible = useIoAssistStore((s) => s.isThreadHistoryVisible); + const messagesLength = useIoAssistStore((s) => s.messages.length); + const messageLoadingState = useIoAssistStore((s) => s.messageLoadingState); + const completionNotifications = useIoAssistStore((s) => s.completionNotifications); + const isWorkingContextEnabled = useIoAssistStore((s) => s.isWorkingContextEnabled); + const setIsThreadHistoryVisible = useIoAssistStore((s) => s.setIsThreadHistoryVisible); + const setActivePanelContent = useIoAssistStore((s) => s.setActivePanelContent); + const { newConversation } = useIoAiWebApi(); + + const hasMessages = messagesLength > 0; + const isMessageLoading = messageLoadingState.type === MESSAGES_LOADING_STATE.LOADING_RESPONSE || messageLoadingState.type === MESSAGES_LOADING_STATE.LOADING_FROM_THREAD; + const hasNotification = completionNotifications.length > 0; + const showThreadToggle = !isThreadHistoryVisible; + const showHomeButton = isMessageLoading || hasMessages; + + const handleShowThreadHistory = () => { + setIsThreadHistoryVisible(true); + }; + + const handleNewConversation = () => { + void newConversation(); + }; + + const handleWorkingContextOpen = () => { + setActivePanelContent(PANEL_CONTENT.WORKING_CONTEXT); + }; + + return ( +
+ {showThreadToggle || showHomeButton ? ( +
+ {showThreadToggle && ( +
+ + + + {hasNotification && } +
+ )} + + {showHomeButton && ( + + + + + + )} +
+ ) : null} + + {isWorkingContextEnabled && ( + {UI_STRINGS.HEADER_COMPONENT.CONTEXT_TOOLTIP}}> + + + )} +
+ ); +}; diff --git a/templates/io-assist-react-editable/src/io-assist/components/input-area/InputArea.tsx b/templates/io-assist-react-editable/src/io-assist/components/input-area/InputArea.tsx new file mode 100644 index 0000000..c8d94e3 --- /dev/null +++ b/templates/io-assist-react-editable/src/io-assist/components/input-area/InputArea.tsx @@ -0,0 +1,247 @@ +import React, { useState, useRef, useCallback, useEffect, type KeyboardEvent, type ChangeEvent } from "react"; + +import { UI_STRINGS } from "../../constants/uiStrings"; +import { useIoAssistStore } from "../../context/IoAssistContext"; +import { useIoConnectApi } from "../../hooks/useIoConnectApi"; +import { PERMISSION_MODE, type PermissionMode } from "../../stores/permission-mode"; +import { UI_MESSAGE_ROLES } from "../../types/message"; +import { PANEL_CONTENT } from "../../types/panel"; +import type { SelectOption } from "../../types/select"; +import { RESPONSE_STREAM_STATUS } from "../../types/stream"; +import { Icon } from "../shared/Icon"; +import { IconButton } from "../shared/IconButton"; +import { ArrowUpIcon, PaperPlaneIcon, StopIcon, PromptPanelIcon, PromptPanelFilledIcon, ToolPanelIcon, ToolPanelFilledIcon } from "../shared/icons"; +import { Select } from "../shared/Select"; + +const PERMISSION_OPTIONS: SelectOption[] = [ + { + title: "Ask permissions", + miniTitle: "Ask", + description: "Always ask for action permissions", + value: PERMISSION_MODE.ASK, + }, + { + title: "Auto accept permissions", + miniTitle: "Auto", + description: "Auto-approve all action permissions", + value: PERMISSION_MODE.AUTO_ACCEPT, + }, +]; + +type Props = { + onSend: (text: string) => void; + onAbort: () => void; + className?: string; +}; + +const MIN_HEIGHT = 17; +const MAX_HEIGHT = 260; + +export const InputArea: React.FC = ({ onSend, onAbort, className }) => { + const [inputValue, setInputValue] = useState(""); + const textareaRef = useRef(null); + const currentMsgIndexRef = useRef(null); + + const isGenerating = useIoAssistStore((s) => { + const id = s.activeThreadId; + return !!id && s.streamsByThreadId[id]?.status === RESPONSE_STREAM_STATUS.STREAMING; + }); + const messages = useIoAssistStore((s) => s.messages); + const selectedPrompt = useIoAssistStore((s) => s.selectedPrompt); + const setSelectedPrompt = useIoAssistStore((s) => s.setSelectedPrompt); + + const userMessages = messages.filter((m) => m.role === UI_MESSAGE_ROLES.USER); + + const updateValue = useCallback((value: string) => { + setInputValue(value); + + requestAnimationFrame(() => { + const el = textareaRef.current; + if (!el) return; + el.style.height = `${MIN_HEIGHT}px`; + if (value.trim() !== "") { + el.style.height = `${Math.min(el.scrollHeight, MAX_HEIGHT)}px`; + } + }); + }, []); + + const updateInputValue = (e: ChangeEvent) => { + updateValue(e.target.value); + currentMsgIndexRef.current = null; + }; + + useEffect(() => { + if (selectedPrompt?.description) { + updateValue(selectedPrompt.description); + setSelectedPrompt(null); + } + }, [selectedPrompt, updateValue, setSelectedPrompt]); + + const handleSend = useCallback(() => { + const trimmed = inputValue.trim(); + if (!trimmed || isGenerating) return; + + onSend(trimmed); + updateValue(""); + currentMsgIndexRef.current = null; + }, [inputValue, isGenerating, onSend, updateValue]); + + const handleSendOrStop = useCallback(() => { + if (isGenerating) { + onAbort(); + } else { + handleSend(); + } + }, [isGenerating, onAbort, handleSend]); + + const handleKeyDown = (e: KeyboardEvent) => { + if (e.key === "Enter" && !e.shiftKey) { + e.preventDefault(); + handleSend(); + return; + } + + if (e.key === "ArrowUp" && e.shiftKey) { + e.preventDefault(); + browseMessages("up"); + return; + } + + if (e.key === "ArrowDown" && e.shiftKey) { + e.preventDefault(); + browseMessages("down"); + return; + } + }; + + const browseMessages = (direction: "up" | "down") => { + if (userMessages.length === 0) return; + + const currentMsgIndex = currentMsgIndexRef.current; + let nextIndex: number; + + if (currentMsgIndex === null) { + nextIndex = direction === "up" ? userMessages.length - 1 : 0; + } else { + if (direction === "up" && currentMsgIndex > 0) { + nextIndex = currentMsgIndex - 1; + } else if (direction === "down" && currentMsgIndex < userMessages.length - 1) { + nextIndex = currentMsgIndex + 1; + } else { + return; + } + } + + currentMsgIndexRef.current = nextIndex; + updateValue(userMessages[nextIndex].content ?? ""); + }; + + const buttonState: "disabled" | "send" | "stop" = isGenerating ? "stop" : inputValue.trim().length > 0 ? "send" : "disabled"; + + return ( +
+
+
+
+
+