@agentprojectcontext/apx 1.24.0 → 1.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +42 -12
- package/skills/apx/SKILL.md +50 -119
- package/skills/apx-agency-agents/SKILL.md +141 -0
- package/skills/apx-agent/SKILL.md +100 -0
- package/skills/apx-mcp/SKILL.md +114 -0
- package/skills/apx-mcp-builder/SKILL.md +186 -0
- package/skills/apx-project/SKILL.md +100 -0
- package/skills/apx-routine/SKILL.md +138 -0
- package/skills/apx-runtime/SKILL.md +115 -0
- package/skills/apx-sessions/SKILL.md +281 -0
- package/skills/apx-skill-builder/SKILL.md +149 -0
- package/skills/apx-task/SKILL.md +95 -0
- package/skills/apx-telegram/SKILL.md +115 -0
- package/skills/apx-voice/SKILL.md +135 -0
- package/src/core/agent/constants.js +3 -0
- package/src/core/agent/ghost-guard.js +24 -0
- package/src/core/agent/index.js +35 -0
- package/src/core/agent/model-router.js +257 -0
- package/src/core/agent/prompt-builder.js +313 -0
- package/src/core/agent/prompts/channels/api.md +7 -0
- package/src/core/agent/prompts/channels/cli.md +6 -0
- package/src/core/agent/prompts/channels/code.md +20 -0
- package/src/core/agent/prompts/channels/deck.md +6 -0
- package/src/core/agent/prompts/channels/desktop.md +24 -0
- package/src/core/agent/prompts/channels/routine.md +9 -0
- package/src/core/agent/prompts/channels/telegram.md +9 -0
- package/src/core/agent/prompts/channels/terminal.md +16 -0
- package/src/core/agent/prompts/channels/web.md +7 -0
- package/src/core/agent/prompts/channels/web_sidebar.md +7 -0
- package/src/core/agent/prompts/modes/voice.md +4 -0
- package/src/core/agent/prompts/super-agent-base.md +42 -0
- package/src/core/agent/pseudo-tools.js +40 -0
- package/src/core/agent/retry.js +85 -0
- package/src/core/agent/run-agent.js +423 -0
- package/src/core/agent/self-memory.js +155 -0
- package/src/{daemon → core/agent}/tool-call-parser.js +83 -10
- package/src/core/agent/tools-overlap.js +66 -0
- package/src/core/apc-skill-sync.js +97 -0
- package/src/core/code-sessions-store.js +150 -0
- package/src/core/config.js +473 -11
- package/src/core/desktop/autostart.js +162 -0
- package/src/core/engines/_health.js +63 -0
- package/src/{daemon → core}/engines/anthropic.js +16 -0
- package/src/core/engines/gemini.js +168 -0
- package/src/core/engines/groq.js +8 -0
- package/src/{daemon → core}/engines/index.js +3 -1
- package/src/{daemon → core}/engines/mock.js +22 -0
- package/src/{daemon → core}/engines/ollama.js +35 -0
- package/src/core/engines/openai-compatible.js +145 -0
- package/src/core/engines/openai.js +8 -0
- package/src/core/engines/openrouter.js +8 -0
- package/src/core/git-baseline.js +147 -0
- package/src/core/identity.js +21 -0
- package/src/core/logging.js +1 -1
- package/src/core/mcp/index.js +14 -0
- package/src/{daemon/mcp-runner.js → core/mcp/runner.js} +18 -6
- package/src/core/mcp/sources.js +246 -0
- package/src/core/memory/active-threads.js +124 -0
- package/src/core/memory/broker.js +144 -0
- package/src/core/memory/compactor.js +186 -0
- package/src/core/memory/embed-engines/gemini.js +62 -0
- package/src/core/memory/embed-engines/index.js +148 -0
- package/src/core/memory/embed-engines/ollama.js +55 -0
- package/src/core/memory/embed-engines/openai.js +64 -0
- package/src/core/memory/embed-engines/tf.js +20 -0
- package/src/core/memory/embeddings.js +132 -0
- package/src/core/memory/index.js +161 -0
- package/src/core/memory/indexer.js +257 -0
- package/src/core/memory/store.js +231 -0
- package/src/core/messages-store.js +143 -25
- package/src/core/parser.js +78 -16
- package/src/core/scaffold.js +175 -79
- package/src/core/tasks-store.js +264 -0
- package/src/core/telegram-identity.js +126 -0
- package/src/core/tools/index.js +6 -0
- package/src/core/voice/engines/elevenlabs.js +96 -0
- package/src/core/voice/engines/gemini.js +148 -0
- package/src/core/voice/engines/index.js +144 -0
- package/src/core/voice/engines/mock.js +59 -0
- package/src/core/voice/engines/openai.js +82 -0
- package/src/core/voice/engines/piper.js +93 -0
- package/src/core/voice/index.js +3 -0
- package/src/core/voice/tts.js +89 -0
- package/src/{daemon → host/daemon}/apc-runtime-context.js +1 -1
- package/src/host/daemon/api/admin-config.js +159 -0
- package/src/host/daemon/api/admin.js +72 -0
- package/src/host/daemon/api/agents.js +284 -0
- package/src/host/daemon/api/artifacts.js +52 -0
- package/src/host/daemon/api/code.js +351 -0
- package/src/host/daemon/api/config.js +104 -0
- package/src/host/daemon/api/connections.js +42 -0
- package/src/host/daemon/api/conversations.js +161 -0
- package/src/host/daemon/api/deck.js +511 -0
- package/src/host/daemon/api/desktop.js +71 -0
- package/src/host/daemon/api/embeddings.js +65 -0
- package/src/host/daemon/api/engines.js +80 -0
- package/src/host/daemon/api/exec.js +193 -0
- package/src/host/daemon/api/health.js +10 -0
- package/src/host/daemon/api/identity.js +36 -0
- package/src/host/daemon/api/mcps.js +205 -0
- package/src/host/daemon/api/messages.js +83 -0
- package/src/host/daemon/api/pairing.js +194 -0
- package/src/host/daemon/api/plugins.js +19 -0
- package/src/host/daemon/api/projects.js +35 -0
- package/src/host/daemon/api/routines.js +84 -0
- package/src/host/daemon/api/run.js +55 -0
- package/src/host/daemon/api/runtimes.js +219 -0
- package/src/host/daemon/api/sessions-search.js +177 -0
- package/src/host/daemon/api/sessions.js +115 -0
- package/src/host/daemon/api/shared.js +217 -0
- package/src/host/daemon/api/super-agent.js +208 -0
- package/src/host/daemon/api/tasks.js +118 -0
- package/src/host/daemon/api/telegram.js +325 -0
- package/src/host/daemon/api/tools.js +21 -0
- package/src/host/daemon/api/top-level.js +131 -0
- package/src/host/daemon/api/transcribe.js +35 -0
- package/src/host/daemon/api/tts.js +44 -0
- package/src/host/daemon/api/voice.js +519 -0
- package/src/host/daemon/api/web.js +123 -0
- package/src/host/daemon/api.js +152 -0
- package/src/{daemon → host/daemon}/compact.js +1 -1
- package/src/{daemon → host/daemon}/db.js +19 -5
- package/src/{daemon/overlay-ws.js → host/daemon/desktop-ws.js} +7 -7
- package/src/host/daemon/engine-sessions.js +245 -0
- package/src/{daemon → host/daemon}/index.js +27 -10
- package/src/{daemon/plugins/overlay.js → host/daemon/plugins/desktop.js} +36 -28
- package/src/{daemon → host/daemon}/plugins/index.js +2 -2
- package/src/{daemon → host/daemon}/plugins/telegram.js +165 -33
- package/src/{daemon → host/daemon}/project-config.js +31 -7
- package/src/{daemon → host/daemon}/routines.js +27 -8
- package/src/{daemon → host/daemon}/skills-loader.js +4 -2
- package/src/{daemon → host/daemon}/smoke.js +9 -5
- package/src/{daemon → host/daemon}/super-agent-tools/helpers.js +1 -1
- package/src/host/daemon/super-agent-tools/index.js +157 -0
- package/src/{daemon → host/daemon}/super-agent-tools/registry-bridge.js +1 -1
- package/src/{daemon → host/daemon}/super-agent-tools/tools/add-project.js +2 -2
- package/src/{daemon → host/daemon}/super-agent-tools/tools/ask-questions.js +4 -0
- package/src/{daemon → host/daemon}/super-agent-tools/tools/call-agent.js +5 -2
- package/src/{daemon → host/daemon}/super-agent-tools/tools/call-runtime.js +117 -8
- package/src/host/daemon/super-agent-tools/tools/create-task.js +52 -0
- package/src/{daemon → host/daemon}/super-agent-tools/tools/import-agent.js +2 -3
- package/src/{daemon → host/daemon}/super-agent-tools/tools/list-agents.js +1 -1
- package/src/host/daemon/super-agent-tools/tools/list-tasks.js +52 -0
- package/src/{daemon → host/daemon}/super-agent-tools/tools/list-vault-agents.js +1 -1
- package/src/host/daemon/super-agent-tools/tools/read-self-memory.js +21 -0
- package/src/host/daemon/super-agent-tools/tools/remember.js +40 -0
- package/src/{daemon → host/daemon}/super-agent-tools/tools/search-messages.js +1 -1
- package/src/host/daemon/super-agent-tools/tools/search-sessions.js +134 -0
- package/src/{daemon → host/daemon}/super-agent-tools/tools/send-telegram.js +2 -2
- package/src/{daemon → host/daemon}/super-agent-tools/tools/set-identity.js +1 -1
- package/src/{daemon → host/daemon}/super-agent-tools/tools/set-permission-mode.js +1 -1
- package/src/{daemon → host/daemon}/super-agent-tools/tools/tail-messages.js +1 -1
- package/src/host/daemon/super-agent.js +129 -0
- package/src/host/daemon/token-store.js +118 -0
- package/src/host/daemon/tool-call-parser.js +2 -0
- package/src/{daemon → host/daemon}/transcription.js +1 -1
- package/src/{daemon → host/daemon}/wakeup.js +2 -2
- package/src/interfaces/cli/claude-permissions.js +33 -0
- package/src/{cli → interfaces/cli}/commands/agent.js +43 -8
- package/src/{cli → interfaces/cli}/commands/command.js +1 -1
- package/src/{cli → interfaces/cli}/commands/config.js +1 -1
- package/src/{cli → interfaces/cli}/commands/daemon.js +67 -0
- package/src/interfaces/cli/commands/desktop.js +335 -0
- package/src/interfaces/cli/commands/exec.js +92 -0
- package/src/{cli → interfaces/cli}/commands/identity.js +6 -63
- package/src/{cli → interfaces/cli}/commands/init.js +1 -1
- package/src/{cli → interfaces/cli}/commands/mcp.js +69 -10
- package/src/{cli → interfaces/cli}/commands/memory.js +2 -2
- package/src/interfaces/cli/commands/model.js +136 -0
- package/src/interfaces/cli/commands/pair.js +170 -0
- package/src/interfaces/cli/commands/project-config.js +131 -0
- package/src/{cli → interfaces/cli}/commands/project.js +1 -1
- package/src/{cli → interfaces/cli}/commands/search.js +1 -1
- package/src/interfaces/cli/commands/session.js +892 -0
- package/src/interfaces/cli/commands/sessions.js +997 -0
- package/src/{cli → interfaces/cli}/commands/setup.js +98 -4
- package/src/{cli → interfaces/cli}/commands/skills.js +117 -9
- package/src/{cli → interfaces/cli}/commands/status.js +9 -1
- package/src/{cli → interfaces/cli}/commands/sys.js +96 -17
- package/src/interfaces/cli/commands/task.js +179 -0
- package/src/interfaces/cli/commands/telegram.js +366 -0
- package/src/{cli → interfaces/cli}/commands/update.js +1 -1
- package/src/interfaces/cli/commands/voice.js +258 -0
- package/src/{cli → interfaces/cli}/http.js +6 -2
- package/src/{cli → interfaces/cli}/index.js +955 -63
- package/src/interfaces/cli/postinstall.js +34 -0
- package/src/interfaces/desktop/assets/app-icon-180.png +0 -0
- package/src/interfaces/desktop/assets/app-icon-32.png +0 -0
- package/src/interfaces/desktop/assets/app-icon.png +0 -0
- package/src/interfaces/desktop/assets/apx-logo.png +0 -0
- package/src/interfaces/desktop/assets/superagent.png +0 -0
- package/src/interfaces/desktop/assets/tray-icon.png +0 -0
- package/src/interfaces/desktop/index.html +18 -0
- package/src/interfaces/desktop/main.js +652 -0
- package/src/interfaces/desktop/preload.js +48 -0
- package/src/interfaces/desktop/renderer.js +1006 -0
- package/src/interfaces/desktop/style.css +400 -0
- package/src/{mcp → interfaces/mcp-server}/index.js +2 -2
- package/src/interfaces/tui/_shims/util-which.ts +53 -0
- package/src/{tui → interfaces/tui}/app.tsx +2 -2
- package/src/{tui → interfaces/tui}/component/prompt/index.tsx +4 -1
- package/src/{tui → interfaces/tui}/context/sdk-apx.tsx +84 -16
- package/src/interfaces/tui/context/sync-apx.tsx +398 -0
- package/src/interfaces/tui/routes/session/index.tsx +368 -0
- package/src/interfaces/tui/routes/session/message-actions.tsx +58 -0
- package/src/interfaces/tui/routes/session/sidebar-apx.tsx +114 -0
- package/src/{tui → interfaces/tui}/tsconfig.json +1 -0
- package/src/{tui → interfaces/tui}/util/clipboard.ts +1 -1
- package/src/interfaces/web/README.md +102 -0
- package/src/interfaces/web/coming-soon.html +65 -0
- package/src/interfaces/web/components.json +25 -0
- package/src/interfaces/web/dist/assets/index-BDUsA6L6.css +1 -0
- package/src/interfaces/web/dist/assets/index-CfWyjPBa.js +548 -0
- package/src/interfaces/web/dist/assets/index-CfWyjPBa.js.map +1 -0
- package/src/interfaces/web/dist/favicon/dark/android-chrome-192x192.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/android-chrome-512x512.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/apple-touch-icon.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/favicon-16x16.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/favicon-32x32.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/favicon-48x48.png +0 -0
- package/src/interfaces/web/dist/favicon/dark/favicon.ico +0 -0
- package/src/interfaces/web/dist/favicon/dark/favicon.webp +0 -0
- package/src/interfaces/web/dist/favicon/dark/site.webmanifest +18 -0
- package/src/interfaces/web/dist/favicon/white/android-chrome-192x192.png +0 -0
- package/src/interfaces/web/dist/favicon/white/android-chrome-512x512.png +0 -0
- package/src/interfaces/web/dist/favicon/white/apple-touch-icon.png +0 -0
- package/src/interfaces/web/dist/favicon/white/favicon-16x16.png +0 -0
- package/src/interfaces/web/dist/favicon/white/favicon-32x32.png +0 -0
- package/src/interfaces/web/dist/favicon/white/favicon-48x48.png +0 -0
- package/src/interfaces/web/dist/favicon/white/favicon.ico +0 -0
- package/src/interfaces/web/dist/favicon/white/favicon.webp +0 -0
- package/src/interfaces/web/dist/favicon/white/site.webmanifest +18 -0
- package/src/interfaces/web/dist/index.html +27 -0
- package/src/interfaces/web/dist/logo/logo_dark.webp +0 -0
- package/src/interfaces/web/dist/logo/logo_only_dark.webp +0 -0
- package/src/interfaces/web/dist/logo/logo_only_white.webp +0 -0
- package/src/interfaces/web/dist/logo/logo_vertical_dark.webp +0 -0
- package/src/interfaces/web/dist/logo/logo_vertical_white.webp +0 -0
- package/src/interfaces/web/dist/logo/logo_white.webp +0 -0
- package/src/interfaces/web/dist/modules/superagent.png +0 -0
- package/src/interfaces/web/index.html +26 -0
- package/src/interfaces/web/package-lock.json +4253 -0
- package/src/interfaces/web/package.json +55 -0
- package/src/interfaces/web/playwright.config.ts +45 -0
- package/src/interfaces/web/pnpm-lock.yaml +2946 -0
- package/src/interfaces/web/public/favicon/dark/android-chrome-192x192.png +0 -0
- package/src/interfaces/web/public/favicon/dark/android-chrome-512x512.png +0 -0
- package/src/interfaces/web/public/favicon/dark/apple-touch-icon.png +0 -0
- package/src/interfaces/web/public/favicon/dark/favicon-16x16.png +0 -0
- package/src/interfaces/web/public/favicon/dark/favicon-32x32.png +0 -0
- package/src/interfaces/web/public/favicon/dark/favicon-48x48.png +0 -0
- package/src/interfaces/web/public/favicon/dark/favicon.ico +0 -0
- package/src/interfaces/web/public/favicon/dark/favicon.webp +0 -0
- package/src/interfaces/web/public/favicon/dark/site.webmanifest +18 -0
- package/src/interfaces/web/public/favicon/white/android-chrome-192x192.png +0 -0
- package/src/interfaces/web/public/favicon/white/android-chrome-512x512.png +0 -0
- package/src/interfaces/web/public/favicon/white/apple-touch-icon.png +0 -0
- package/src/interfaces/web/public/favicon/white/favicon-16x16.png +0 -0
- package/src/interfaces/web/public/favicon/white/favicon-32x32.png +0 -0
- package/src/interfaces/web/public/favicon/white/favicon-48x48.png +0 -0
- package/src/interfaces/web/public/favicon/white/favicon.ico +0 -0
- package/src/interfaces/web/public/favicon/white/favicon.webp +0 -0
- package/src/interfaces/web/public/favicon/white/site.webmanifest +18 -0
- package/src/interfaces/web/public/logo/logo_dark.webp +0 -0
- package/src/interfaces/web/public/logo/logo_only_dark.webp +0 -0
- package/src/interfaces/web/public/logo/logo_only_white.webp +0 -0
- package/src/interfaces/web/public/logo/logo_vertical_dark.webp +0 -0
- package/src/interfaces/web/public/logo/logo_vertical_white.webp +0 -0
- package/src/interfaces/web/public/logo/logo_white.webp +0 -0
- package/src/interfaces/web/public/modules/superagent.png +0 -0
- package/src/interfaces/web/src/App.tsx +199 -0
- package/src/interfaces/web/src/components/AddProjectDialog.tsx +121 -0
- package/src/interfaces/web/src/components/ModelCombobox.tsx +96 -0
- package/src/interfaces/web/src/components/RobyBubble.tsx +213 -0
- package/src/interfaces/web/src/components/Section.tsx +44 -0
- package/src/interfaces/web/src/components/TelegramChannelDialog.tsx +97 -0
- package/src/interfaces/web/src/components/TelegramSendDialog.tsx +48 -0
- package/src/interfaces/web/src/components/Toast.tsx +84 -0
- package/src/interfaces/web/src/components/UiSelect.tsx +74 -0
- package/src/interfaces/web/src/components/chat/Composer.tsx +43 -0
- package/src/interfaces/web/src/components/chat/ContextBar.tsx +111 -0
- package/src/interfaces/web/src/components/chat/MessageBubble.tsx +95 -0
- package/src/interfaces/web/src/components/chat/MessageList.tsx +35 -0
- package/src/interfaces/web/src/components/chat/ModelPicker.tsx +145 -0
- package/src/interfaces/web/src/components/chat/ToolCall.tsx +141 -0
- package/src/interfaces/web/src/components/code/CodeChangesTab.tsx +87 -0
- package/src/interfaces/web/src/components/code/CodeComposer.tsx +87 -0
- package/src/interfaces/web/src/components/code/CodeContextTab.tsx +83 -0
- package/src/interfaces/web/src/components/code/CodeProjectPicker.tsx +39 -0
- package/src/interfaces/web/src/components/code/CodeSessionList.tsx +97 -0
- package/src/interfaces/web/src/components/code/CodeSidePanel.tsx +44 -0
- package/src/interfaces/web/src/components/code/CodeToolTrail.tsx +29 -0
- package/src/interfaces/web/src/components/code/DiffView.tsx +67 -0
- package/src/interfaces/web/src/components/common/Qr.tsx +27 -0
- package/src/interfaces/web/src/components/common/TabLayout.tsx +46 -0
- package/src/interfaces/web/src/components/common/TabNav.tsx +113 -0
- package/src/interfaces/web/src/components/config/ConfigTabsEditor.tsx +202 -0
- package/src/interfaces/web/src/components/config/GlobalConfigEditor.tsx +42 -0
- package/src/interfaces/web/src/components/config/global-config-sections.ts +60 -0
- package/src/interfaces/web/src/components/config/project-config-sections.ts +58 -0
- package/src/interfaces/web/src/components/deck/DaemonCard.tsx +58 -0
- package/src/interfaces/web/src/components/deck/DesktopGroup.tsx +33 -0
- package/src/interfaces/web/src/components/deck/WidgetRow.tsx +100 -0
- package/src/interfaces/web/src/components/layout/Logo.tsx +59 -0
- package/src/interfaces/web/src/components/layout/ProjectAvatar.tsx +116 -0
- package/src/interfaces/web/src/components/layout/ProjectSidebar.tsx +151 -0
- package/src/interfaces/web/src/components/settings/AdvancedPanel.tsx +45 -0
- package/src/interfaces/web/src/components/settings/AppearancePanel.tsx +72 -0
- package/src/interfaces/web/src/components/settings/DefaultRouterCard.tsx +232 -0
- package/src/interfaces/web/src/components/settings/DevicesPanel.tsx +60 -0
- package/src/interfaces/web/src/components/settings/EnginesPanel.tsx +127 -0
- package/src/interfaces/web/src/components/settings/IdentityPanel.tsx +69 -0
- package/src/interfaces/web/src/components/settings/MemoryPanel.tsx +226 -0
- package/src/interfaces/web/src/components/settings/PairDeviceDialog.tsx +175 -0
- package/src/interfaces/web/src/components/settings/SuperAgentPanel.tsx +93 -0
- package/src/interfaces/web/src/components/settings/TelegramChannelsPanel.tsx +90 -0
- package/src/interfaces/web/src/components/settings/TelegramContactsPanel.tsx +101 -0
- package/src/interfaces/web/src/components/settings/TelegramGlobalPanel.tsx +100 -0
- package/src/interfaces/web/src/components/settings/TelegramRolesPanel.tsx +108 -0
- package/src/interfaces/web/src/components/settings/TelegramSettingsTabs.tsx +55 -0
- package/src/interfaces/web/src/components/settings/providers/ProviderCard.tsx +95 -0
- package/src/interfaces/web/src/components/settings/providers/ProviderModal.tsx +405 -0
- package/src/interfaces/web/src/components/settings/providers/typeStyles.ts +155 -0
- package/src/interfaces/web/src/components/settings/providers/types.ts +26 -0
- package/src/interfaces/web/src/components/ui/accordion.tsx +72 -0
- package/src/interfaces/web/src/components/ui/alert-dialog.tsx +187 -0
- package/src/interfaces/web/src/components/ui/alert.tsx +76 -0
- package/src/interfaces/web/src/components/ui/aspect-ratio.tsx +22 -0
- package/src/interfaces/web/src/components/ui/avatar.tsx +107 -0
- package/src/interfaces/web/src/components/ui/badge.tsx +52 -0
- package/src/interfaces/web/src/components/ui/breadcrumb.tsx +125 -0
- package/src/interfaces/web/src/components/ui/button-group.tsx +87 -0
- package/src/interfaces/web/src/components/ui/button.tsx +58 -0
- package/src/interfaces/web/src/components/ui/calendar.tsx +221 -0
- package/src/interfaces/web/src/components/ui/card.tsx +103 -0
- package/src/interfaces/web/src/components/ui/carousel.tsx +242 -0
- package/src/interfaces/web/src/components/ui/chart.tsx +371 -0
- package/src/interfaces/web/src/components/ui/chat-input.tsx +122 -0
- package/src/interfaces/web/src/components/ui/checkbox.tsx +29 -0
- package/src/interfaces/web/src/components/ui/collapsible.tsx +19 -0
- package/src/interfaces/web/src/components/ui/combobox.tsx +295 -0
- package/src/interfaces/web/src/components/ui/command.tsx +196 -0
- package/src/interfaces/web/src/components/ui/context-menu.tsx +271 -0
- package/src/interfaces/web/src/components/ui/dialog.tsx +158 -0
- package/src/interfaces/web/src/components/ui/direction.tsx +4 -0
- package/src/interfaces/web/src/components/ui/drawer.tsx +134 -0
- package/src/interfaces/web/src/components/ui/dropdown-menu.tsx +266 -0
- package/src/interfaces/web/src/components/ui/empty.tsx +104 -0
- package/src/interfaces/web/src/components/ui/field.tsx +236 -0
- package/src/interfaces/web/src/components/ui/hover-card.tsx +51 -0
- package/src/interfaces/web/src/components/ui/input-group.tsx +158 -0
- package/src/interfaces/web/src/components/ui/input-otp.tsx +85 -0
- package/src/interfaces/web/src/components/ui/input.tsx +20 -0
- package/src/interfaces/web/src/components/ui/item.tsx +201 -0
- package/src/interfaces/web/src/components/ui/kbd.tsx +26 -0
- package/src/interfaces/web/src/components/ui/label.tsx +20 -0
- package/src/interfaces/web/src/components/ui/menubar.tsx +280 -0
- package/src/interfaces/web/src/components/ui/native-select.tsx +61 -0
- package/src/interfaces/web/src/components/ui/navigation-menu.tsx +168 -0
- package/src/interfaces/web/src/components/ui/pagination.tsx +130 -0
- package/src/interfaces/web/src/components/ui/popover.tsx +88 -0
- package/src/interfaces/web/src/components/ui/progress.tsx +83 -0
- package/src/interfaces/web/src/components/ui/radio-group.tsx +36 -0
- package/src/interfaces/web/src/components/ui/resizable.tsx +50 -0
- package/src/interfaces/web/src/components/ui/scroll-area.tsx +53 -0
- package/src/interfaces/web/src/components/ui/select.tsx +201 -0
- package/src/interfaces/web/src/components/ui/separator.tsx +23 -0
- package/src/interfaces/web/src/components/ui/sheet.tsx +138 -0
- package/src/interfaces/web/src/components/ui/sidebar.tsx +723 -0
- package/src/interfaces/web/src/components/ui/skeleton.tsx +13 -0
- package/src/interfaces/web/src/components/ui/slider.tsx +52 -0
- package/src/interfaces/web/src/components/ui/sonner.tsx +49 -0
- package/src/interfaces/web/src/components/ui/spinner.tsx +10 -0
- package/src/interfaces/web/src/components/ui/switch.tsx +30 -0
- package/src/interfaces/web/src/components/ui/table.tsx +116 -0
- package/src/interfaces/web/src/components/ui/tabs.tsx +72 -0
- package/src/interfaces/web/src/components/ui/textarea.tsx +18 -0
- package/src/interfaces/web/src/components/ui/tip.tsx +21 -0
- package/src/interfaces/web/src/components/ui/toggle-group.tsx +87 -0
- package/src/interfaces/web/src/components/ui/toggle.tsx +45 -0
- package/src/interfaces/web/src/components/ui/tooltip.tsx +64 -0
- package/src/interfaces/web/src/components/ui.tsx +211 -0
- package/src/interfaces/web/src/components/voice/VoiceProviderList.tsx +197 -0
- package/src/interfaces/web/src/components/voice/VoiceProviderModal.tsx +213 -0
- package/src/interfaces/web/src/components/voice/VoiceSttCard.tsx +72 -0
- package/src/interfaces/web/src/components/voice/VoiceTestCard.tsx +112 -0
- package/src/interfaces/web/src/components/voice/useTtsPlayer.ts +59 -0
- package/src/interfaces/web/src/constants/index.ts +91 -0
- package/src/interfaces/web/src/hooks/use-mobile.ts +19 -0
- package/src/interfaces/web/src/hooks/useChat.ts +276 -0
- package/src/interfaces/web/src/hooks/useDaemonStatus.ts +12 -0
- package/src/interfaces/web/src/hooks/useDevices.ts +12 -0
- package/src/interfaces/web/src/hooks/useEngines.ts +10 -0
- package/src/interfaces/web/src/hooks/useGlobalConfig.ts +24 -0
- package/src/interfaces/web/src/hooks/useIdentity.ts +16 -0
- package/src/interfaces/web/src/hooks/useProjects.ts +27 -0
- package/src/interfaces/web/src/hooks/useTelegram.ts +35 -0
- package/src/interfaces/web/src/hooks/useTheme.tsx +57 -0
- package/src/interfaces/web/src/hooks/useTokenBootstrap.ts +122 -0
- package/src/interfaces/web/src/i18n/en.ts +767 -0
- package/src/interfaces/web/src/i18n/es.ts +770 -0
- package/src/interfaces/web/src/i18n/index.ts +86 -0
- package/src/interfaces/web/src/lib/api/admin.ts +30 -0
- package/src/interfaces/web/src/lib/api/agents.ts +46 -0
- package/src/interfaces/web/src/lib/api/code.ts +122 -0
- package/src/interfaces/web/src/lib/api/conversations.ts +16 -0
- package/src/interfaces/web/src/lib/api/deck.ts +106 -0
- package/src/interfaces/web/src/lib/api/desktop.ts +54 -0
- package/src/interfaces/web/src/lib/api/embeddings.ts +44 -0
- package/src/interfaces/web/src/lib/api/engines.ts +17 -0
- package/src/interfaces/web/src/lib/api/filesystem.ts +12 -0
- package/src/interfaces/web/src/lib/api/health.ts +6 -0
- package/src/interfaces/web/src/lib/api/identity.ts +7 -0
- package/src/interfaces/web/src/lib/api/mcps.ts +29 -0
- package/src/interfaces/web/src/lib/api/messages.ts +24 -0
- package/src/interfaces/web/src/lib/api/projects.ts +29 -0
- package/src/interfaces/web/src/lib/api/routines.ts +14 -0
- package/src/interfaces/web/src/lib/api/sessions.ts +16 -0
- package/src/interfaces/web/src/lib/api/super_agent.ts +29 -0
- package/src/interfaces/web/src/lib/api/tasks.ts +19 -0
- package/src/interfaces/web/src/lib/api/telegram.ts +57 -0
- package/src/interfaces/web/src/lib/api/tools.ts +13 -0
- package/src/interfaces/web/src/lib/api/voice.ts +169 -0
- package/src/interfaces/web/src/lib/api.ts +48 -0
- package/src/interfaces/web/src/lib/cn.ts +6 -0
- package/src/interfaces/web/src/lib/code-context.ts +83 -0
- package/src/interfaces/web/src/lib/config-values.ts +29 -0
- package/src/interfaces/web/src/lib/device.ts +10 -0
- package/src/interfaces/web/src/lib/http.ts +104 -0
- package/src/interfaces/web/src/lib/secrets.ts +15 -0
- package/src/interfaces/web/src/lib/utils.ts +6 -0
- package/src/interfaces/web/src/main.tsx +16 -0
- package/src/interfaces/web/src/screens/ApxAdminScreen.tsx +174 -0
- package/src/interfaces/web/src/screens/PairingScreen.tsx +105 -0
- package/src/interfaces/web/src/screens/ProjectScreen.tsx +178 -0
- package/src/interfaces/web/src/screens/SettingsScreen.tsx +111 -0
- package/src/interfaces/web/src/screens/base/AgentDefaultsTab.tsx +274 -0
- package/src/interfaces/web/src/screens/base/ComingSoon.tsx +16 -0
- package/src/interfaces/web/src/screens/base/GlobalTasksTab.tsx +53 -0
- package/src/interfaces/web/src/screens/base/LogsTab.tsx +188 -0
- package/src/interfaces/web/src/screens/base/ModelsTab.tsx +13 -0
- package/src/interfaces/web/src/screens/base/SessionsTab.tsx +58 -0
- package/src/interfaces/web/src/screens/base/WorkspacesTab.tsx +49 -0
- package/src/interfaces/web/src/screens/modules/CodeScreen.tsx +295 -0
- package/src/interfaces/web/src/screens/modules/DeckScreen.tsx +173 -0
- package/src/interfaces/web/src/screens/modules/DesktopScreen.tsx +304 -0
- package/src/interfaces/web/src/screens/modules/VoiceScreen.tsx +174 -0
- package/src/interfaces/web/src/screens/project/AgentBrainGraph.tsx +152 -0
- package/src/interfaces/web/src/screens/project/AgentDetailScreen.tsx +455 -0
- package/src/interfaces/web/src/screens/project/AgentsTab.tsx +364 -0
- package/src/interfaces/web/src/screens/project/ChatTab.tsx +198 -0
- package/src/interfaces/web/src/screens/project/ConfigTab.tsx +94 -0
- package/src/interfaces/web/src/screens/project/McpsTab.tsx +149 -0
- package/src/interfaces/web/src/screens/project/MemoriesTab.tsx +134 -0
- package/src/interfaces/web/src/screens/project/Overview.tsx +37 -0
- package/src/interfaces/web/src/screens/project/RoutinesTab.tsx +386 -0
- package/src/interfaces/web/src/screens/project/TasksTab.tsx +116 -0
- package/src/interfaces/web/src/screens/project/TelegramTab.tsx +126 -0
- package/src/interfaces/web/src/screens/project/ThreadsTab.tsx +100 -0
- package/src/interfaces/web/src/styles.css +128 -0
- package/src/interfaces/web/src/types/daemon.ts +289 -0
- package/src/interfaces/web/tailwind.config.js +53 -0
- package/src/interfaces/web/tsconfig.json +24 -0
- package/src/interfaces/web/vite.config.ts +50 -0
- package/src/cli/commands/exec.js +0 -56
- package/src/cli/commands/overlay.js +0 -253
- package/src/cli/commands/session.js +0 -395
- package/src/cli/commands/sessions.js +0 -517
- package/src/cli/commands/telegram.js +0 -77
- package/src/cli/postinstall.js +0 -75
- package/src/cli-ts/commands/agent.ts +0 -173
- package/src/cli-ts/commands/chat.ts +0 -119
- package/src/cli-ts/commands/daemon.ts +0 -112
- package/src/cli-ts/commands/exec.ts +0 -109
- package/src/cli-ts/commands/mcp.ts +0 -235
- package/src/cli-ts/commands/session.ts +0 -224
- package/src/cli-ts/commands/status.ts +0 -61
- package/src/cli-ts/http.ts +0 -36
- package/src/cli-ts/index.ts +0 -73
- package/src/cli-ts/ui.ts +0 -107
- package/src/daemon/api.js +0 -1558
- package/src/daemon/engines/gemini.js +0 -56
- package/src/daemon/engines/openai.js +0 -79
- package/src/daemon/mcp-sources.js +0 -114
- package/src/daemon/super-agent-tools/index.js +0 -84
- package/src/daemon/super-agent-tools.js +0 -1
- package/src/daemon/super-agent.js +0 -541
- package/src/overlay/index.html +0 -44
- package/src/overlay/main.js +0 -480
- package/src/overlay/preload.js +0 -34
- package/src/overlay/renderer.js +0 -371
- package/src/overlay/style.css +0 -250
- package/src/tui/context/sync-apx.tsx +0 -284
- package/src/tui/routes/session/index.tsx +0 -274
- package/src/tui/routes/session/sidebar-apx.tsx +0 -90
- /package/src/{daemon → core}/tools/browser.js +0 -0
- /package/src/{daemon → core}/tools/fetch.js +0 -0
- /package/src/{daemon → core}/tools/glob.js +0 -0
- /package/src/{daemon → core}/tools/grep.js +0 -0
- /package/src/{daemon → core}/tools/registry.js +0 -0
- /package/src/{daemon → core}/tools/search.js +0 -0
- /package/src/{daemon → host/daemon}/conversations.js +0 -0
- /package/src/{daemon → host/daemon}/env-detect.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/_spawn.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/aider.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/claude-code.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/codex.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/cursor-agent.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/gemini-cli.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/index.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/opencode.js +0 -0
- /package/src/{daemon → host/daemon}/runtimes/qwen-code.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/call-mcp.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/edit-file.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/list-files.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/list-mcps.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/list-projects.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/list-skills.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/load-skill.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/read-agent-memory.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/read-file.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/run-shell.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/search-files.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/transcribe-audio.js +0 -0
- /package/src/{daemon → host/daemon}/super-agent-tools/tools/write-file.js +0 -0
- /package/src/{daemon → host/daemon}/thinking.js +0 -0
- /package/src/{daemon → host/daemon}/whisper-server.py +0 -0
- /package/src/{daemon → host/daemon}/whisper-transcribe.py +0 -0
- /package/src/{cli → interfaces/cli}/commands/a2a.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/artifact.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/chat.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/log.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/messages.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/plugins.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/routine.js +0 -0
- /package/src/{cli → interfaces/cli}/commands/runtime.js +0 -0
- /package/src/{cli → interfaces/cli}/terminal-chat/renderer.js +0 -0
- /package/src/{overlay → interfaces/desktop}/package.json +0 -0
- /package/src/{tui → interfaces/tui}/_shims/cli-error.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/cli-logo.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/cli-ui.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/config-console-state.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/core-any.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/core-binary.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/core-flag.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/core-log.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/lsp-language.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/opencode-any.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/opencode-sdk-v2.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/plugin-tui.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/prompt-display.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/provider-provider.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/session-retry.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/session-schema.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/session-session.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/snapshot.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/tool-any.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-error.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-filesystem.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-format.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-iife.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-locale.ts +0 -0
- /package/src/{tui → interfaces/tui}/_shims/util-process.ts +0 -0
- /package/src/{tui → interfaces/tui}/asset/charge.wav +0 -0
- /package/src/{tui → interfaces/tui}/asset/pulse-a.wav +0 -0
- /package/src/{tui → interfaces/tui}/asset/pulse-b.wav +0 -0
- /package/src/{tui → interfaces/tui}/asset/pulse-c.wav +0 -0
- /package/src/{tui → interfaces/tui}/attach.ts +0 -0
- /package/src/{tui → interfaces/tui}/component/bg-pulse-render.ts +0 -0
- /package/src/{tui → interfaces/tui}/component/bg-pulse.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/border.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-agent.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-console-org.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-mcp.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-model.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-provider.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-retry-action.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-session-delete-failed.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-session-list.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-session-rename.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-skill.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-stash.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-status.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-tag.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-theme-list.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-variant.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-workspace-create.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-workspace-file-changes.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/dialog-workspace-unavailable.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/error-component.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/logo.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/plugin-route-missing.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/autocomplete.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/cwd.ts +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/frecency.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/history.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/part.ts +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/stash.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/prompt/traits.ts +0 -0
- /package/src/{tui → interfaces/tui}/component/spinner.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/startup-loading.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/todo-item.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/use-connected.tsx +0 -0
- /package/src/{tui → interfaces/tui}/component/workspace-label.tsx +0 -0
- /package/src/{tui → interfaces/tui}/config/cwd.ts +0 -0
- /package/src/{tui → interfaces/tui}/config/keybind.ts +0 -0
- /package/src/{tui → interfaces/tui}/config/tui-migrate.ts +0 -0
- /package/src/{tui → interfaces/tui}/config/tui-schema.ts +0 -0
- /package/src/{tui → interfaces/tui}/config/tui.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/aggregate-failures.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/args.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/command-palette.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/directory.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/editor-zed.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/editor.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/event-apx.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/event.ts +0 -0
- /package/src/{tui → interfaces/tui}/context/exit.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/helper.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/kv.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/local.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/path-format.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/project-apx.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/project.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/prompt.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/route.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/sdk.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/sync-v2.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/sync.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/aura.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/ayu.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/carbonfox.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/catppuccin-frappe.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/catppuccin-macchiato.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/catppuccin.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/cobalt2.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/cursor.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/dracula.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/everforest.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/flexoki.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/github.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/gruvbox.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/kanagawa.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/lucent-orng.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/material.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/matrix.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/mercury.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/monokai.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/nightowl.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/nord.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/one-dark.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/opencode.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/orng.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/osaka-jade.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/palenight.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/rosepine.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/solarized.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/synthwave84.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/tokyonight.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/vercel.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/vesper.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme/zenburn.json +0 -0
- /package/src/{tui → interfaces/tui}/context/theme.tsx +0 -0
- /package/src/{tui → interfaces/tui}/context/tui-config.tsx +0 -0
- /package/src/{tui → interfaces/tui}/event.ts +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/home/footer.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/home/tips-view.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/home/tips.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/context.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/files.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/footer.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/lsp.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/mcp.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/sidebar/todo.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/system/plugins.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/system/session-v2.tsx +0 -0
- /package/src/{tui → interfaces/tui}/feature-plugins/system/which-key.tsx +0 -0
- /package/src/{tui → interfaces/tui}/keymap.tsx +0 -0
- /package/src/{tui → interfaces/tui}/layer.ts +0 -0
- /package/src/{tui → interfaces/tui}/plugin/api.tsx +0 -0
- /package/src/{tui → interfaces/tui}/plugin/command-shim.ts +0 -0
- /package/src/{tui → interfaces/tui}/plugin/internal.ts +0 -0
- /package/src/{tui → interfaces/tui}/plugin/runtime.ts +0 -0
- /package/src/{tui → interfaces/tui}/plugin/slots.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/home.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/dialog-fork-from-timeline.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/dialog-message.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/dialog-subagent.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/dialog-timeline.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/footer.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/permission.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/question.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/sidebar.tsx +0 -0
- /package/src/{tui → interfaces/tui}/routes/session/subagent-footer.tsx +0 -0
- /package/src/{tui → interfaces/tui}/run.ts +0 -0
- /package/src/{tui → interfaces/tui}/thread.ts +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-alert.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-confirm.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-export-options.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-help.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-prompt.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog-select.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/dialog.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/link.tsx +0 -0
- /package/src/{tui → interfaces/tui}/ui/spinner.ts +0 -0
- /package/src/{tui → interfaces/tui}/ui/toast.tsx +0 -0
- /package/src/{tui → interfaces/tui}/util/editor.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/model.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/provider-origin.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/revert-diff.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/scroll.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/selection.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/signal.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/sound.ts +0 -0
- /package/src/{tui → interfaces/tui}/util/transcript.ts +0 -0
- /package/src/{tui → interfaces/tui}/validate-session.ts +0 -0
- /package/src/{tui → interfaces/tui}/win32.ts +0 -0
- /package/src/{tui → interfaces/tui}/worker.ts +0 -0
|
@@ -0,0 +1,2946 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@base-ui/react':
|
|
12
|
+
specifier: ^1.5.0
|
|
13
|
+
version: 1.5.0(@date-fns/tz@1.5.0)(@types/react@19.2.15)(date-fns@4.3.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
14
|
+
'@tailwindcss/vite':
|
|
15
|
+
specifier: ^4.3.0
|
|
16
|
+
version: 4.3.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))
|
|
17
|
+
class-variance-authority:
|
|
18
|
+
specifier: ^0.7.1
|
|
19
|
+
version: 0.7.1
|
|
20
|
+
clsx:
|
|
21
|
+
specifier: ^2.1.1
|
|
22
|
+
version: 2.1.1
|
|
23
|
+
cmdk:
|
|
24
|
+
specifier: ^1.1.1
|
|
25
|
+
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
26
|
+
d3-drag:
|
|
27
|
+
specifier: ^3.0.0
|
|
28
|
+
version: 3.0.0
|
|
29
|
+
d3-force:
|
|
30
|
+
specifier: ^3.0.0
|
|
31
|
+
version: 3.0.0
|
|
32
|
+
d3-selection:
|
|
33
|
+
specifier: ^3.0.0
|
|
34
|
+
version: 3.0.0
|
|
35
|
+
date-fns:
|
|
36
|
+
specifier: ^4.3.0
|
|
37
|
+
version: 4.3.0
|
|
38
|
+
embla-carousel-react:
|
|
39
|
+
specifier: ^8.6.0
|
|
40
|
+
version: 8.6.0(react@19.2.6)
|
|
41
|
+
input-otp:
|
|
42
|
+
specifier: ^1.4.2
|
|
43
|
+
version: 1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
44
|
+
lucide-react:
|
|
45
|
+
specifier: ^0.469.0
|
|
46
|
+
version: 0.469.0(react@19.2.6)
|
|
47
|
+
next-themes:
|
|
48
|
+
specifier: ^0.4.6
|
|
49
|
+
version: 0.4.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
50
|
+
qrcode:
|
|
51
|
+
specifier: ^1.5.4
|
|
52
|
+
version: 1.5.4
|
|
53
|
+
react:
|
|
54
|
+
specifier: ^19.0.0
|
|
55
|
+
version: 19.2.6
|
|
56
|
+
react-day-picker:
|
|
57
|
+
specifier: ^10.0.1
|
|
58
|
+
version: 10.0.1(@types/react@19.2.15)(react@19.2.6)
|
|
59
|
+
react-dom:
|
|
60
|
+
specifier: ^19.0.0
|
|
61
|
+
version: 19.2.6(react@19.2.6)
|
|
62
|
+
react-resizable-panels:
|
|
63
|
+
specifier: ^4.11.2
|
|
64
|
+
version: 4.11.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
65
|
+
react-router-dom:
|
|
66
|
+
specifier: ^7.1.1
|
|
67
|
+
version: 7.15.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
68
|
+
recharts:
|
|
69
|
+
specifier: 3.8.0
|
|
70
|
+
version: 3.8.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react-is@19.2.6)(react@19.2.6)(redux@5.0.1)
|
|
71
|
+
sonner:
|
|
72
|
+
specifier: ^2.0.7
|
|
73
|
+
version: 2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
74
|
+
swr:
|
|
75
|
+
specifier: ^2.3.0
|
|
76
|
+
version: 2.4.1(react@19.2.6)
|
|
77
|
+
tailwind-merge:
|
|
78
|
+
specifier: ^2.6.0
|
|
79
|
+
version: 2.6.1
|
|
80
|
+
tw-animate-css:
|
|
81
|
+
specifier: ^1.4.0
|
|
82
|
+
version: 1.4.0
|
|
83
|
+
vaul:
|
|
84
|
+
specifier: ^1.1.2
|
|
85
|
+
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
86
|
+
devDependencies:
|
|
87
|
+
'@playwright/test':
|
|
88
|
+
specifier: ^1.60.0
|
|
89
|
+
version: 1.60.0
|
|
90
|
+
'@types/d3-drag':
|
|
91
|
+
specifier: ^3.0.7
|
|
92
|
+
version: 3.0.7
|
|
93
|
+
'@types/d3-force':
|
|
94
|
+
specifier: ^3.0.10
|
|
95
|
+
version: 3.0.10
|
|
96
|
+
'@types/d3-selection':
|
|
97
|
+
specifier: ^3.0.11
|
|
98
|
+
version: 3.0.11
|
|
99
|
+
'@types/qrcode':
|
|
100
|
+
specifier: ^1.5.6
|
|
101
|
+
version: 1.5.6
|
|
102
|
+
'@types/react':
|
|
103
|
+
specifier: ^19.0.0
|
|
104
|
+
version: 19.2.15
|
|
105
|
+
'@types/react-dom':
|
|
106
|
+
specifier: ^19.0.0
|
|
107
|
+
version: 19.2.3(@types/react@19.2.15)
|
|
108
|
+
'@vitejs/plugin-react':
|
|
109
|
+
specifier: ^4.3.4
|
|
110
|
+
version: 4.7.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))
|
|
111
|
+
tailwindcss:
|
|
112
|
+
specifier: ^4.3.0
|
|
113
|
+
version: 4.3.0
|
|
114
|
+
typescript:
|
|
115
|
+
specifier: ^5.7.2
|
|
116
|
+
version: 5.9.3
|
|
117
|
+
vite:
|
|
118
|
+
specifier: ^6.0.7
|
|
119
|
+
version: 6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0)
|
|
120
|
+
|
|
121
|
+
packages:
|
|
122
|
+
|
|
123
|
+
'@babel/code-frame@7.29.7':
|
|
124
|
+
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
|
|
125
|
+
engines: {node: '>=6.9.0'}
|
|
126
|
+
|
|
127
|
+
'@babel/compat-data@7.29.7':
|
|
128
|
+
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
|
|
129
|
+
engines: {node: '>=6.9.0'}
|
|
130
|
+
|
|
131
|
+
'@babel/core@7.29.7':
|
|
132
|
+
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
|
|
133
|
+
engines: {node: '>=6.9.0'}
|
|
134
|
+
|
|
135
|
+
'@babel/generator@7.29.7':
|
|
136
|
+
resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
|
|
137
|
+
engines: {node: '>=6.9.0'}
|
|
138
|
+
|
|
139
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
140
|
+
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
|
|
141
|
+
engines: {node: '>=6.9.0'}
|
|
142
|
+
|
|
143
|
+
'@babel/helper-globals@7.29.7':
|
|
144
|
+
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
|
|
145
|
+
engines: {node: '>=6.9.0'}
|
|
146
|
+
|
|
147
|
+
'@babel/helper-module-imports@7.29.7':
|
|
148
|
+
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
|
|
149
|
+
engines: {node: '>=6.9.0'}
|
|
150
|
+
|
|
151
|
+
'@babel/helper-module-transforms@7.29.7':
|
|
152
|
+
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
|
|
153
|
+
engines: {node: '>=6.9.0'}
|
|
154
|
+
peerDependencies:
|
|
155
|
+
'@babel/core': ^7.0.0
|
|
156
|
+
|
|
157
|
+
'@babel/helper-plugin-utils@7.29.7':
|
|
158
|
+
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
|
|
159
|
+
engines: {node: '>=6.9.0'}
|
|
160
|
+
|
|
161
|
+
'@babel/helper-string-parser@7.29.7':
|
|
162
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
163
|
+
engines: {node: '>=6.9.0'}
|
|
164
|
+
|
|
165
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
166
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
167
|
+
engines: {node: '>=6.9.0'}
|
|
168
|
+
|
|
169
|
+
'@babel/helper-validator-option@7.29.7':
|
|
170
|
+
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
|
|
171
|
+
engines: {node: '>=6.9.0'}
|
|
172
|
+
|
|
173
|
+
'@babel/helpers@7.29.7':
|
|
174
|
+
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
|
|
175
|
+
engines: {node: '>=6.9.0'}
|
|
176
|
+
|
|
177
|
+
'@babel/parser@7.29.7':
|
|
178
|
+
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
|
|
179
|
+
engines: {node: '>=6.0.0'}
|
|
180
|
+
hasBin: true
|
|
181
|
+
|
|
182
|
+
'@babel/plugin-transform-react-jsx-self@7.29.7':
|
|
183
|
+
resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
|
|
184
|
+
engines: {node: '>=6.9.0'}
|
|
185
|
+
peerDependencies:
|
|
186
|
+
'@babel/core': ^7.0.0-0
|
|
187
|
+
|
|
188
|
+
'@babel/plugin-transform-react-jsx-source@7.29.7':
|
|
189
|
+
resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
|
|
190
|
+
engines: {node: '>=6.9.0'}
|
|
191
|
+
peerDependencies:
|
|
192
|
+
'@babel/core': ^7.0.0-0
|
|
193
|
+
|
|
194
|
+
'@babel/runtime@7.29.7':
|
|
195
|
+
resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
|
|
196
|
+
engines: {node: '>=6.9.0'}
|
|
197
|
+
|
|
198
|
+
'@babel/template@7.29.7':
|
|
199
|
+
resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
|
|
200
|
+
engines: {node: '>=6.9.0'}
|
|
201
|
+
|
|
202
|
+
'@babel/traverse@7.29.7':
|
|
203
|
+
resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
|
|
204
|
+
engines: {node: '>=6.9.0'}
|
|
205
|
+
|
|
206
|
+
'@babel/types@7.29.7':
|
|
207
|
+
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
208
|
+
engines: {node: '>=6.9.0'}
|
|
209
|
+
|
|
210
|
+
'@base-ui/react@1.5.0':
|
|
211
|
+
resolution: {integrity: sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A==}
|
|
212
|
+
engines: {node: '>=14.0.0'}
|
|
213
|
+
peerDependencies:
|
|
214
|
+
'@date-fns/tz': ^1.2.0
|
|
215
|
+
'@types/react': ^17 || ^18 || ^19
|
|
216
|
+
date-fns: ^4.0.0
|
|
217
|
+
react: ^17 || ^18 || ^19
|
|
218
|
+
react-dom: ^17 || ^18 || ^19
|
|
219
|
+
peerDependenciesMeta:
|
|
220
|
+
'@date-fns/tz':
|
|
221
|
+
optional: true
|
|
222
|
+
'@types/react':
|
|
223
|
+
optional: true
|
|
224
|
+
date-fns:
|
|
225
|
+
optional: true
|
|
226
|
+
|
|
227
|
+
'@base-ui/utils@0.2.9':
|
|
228
|
+
resolution: {integrity: sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw==}
|
|
229
|
+
peerDependencies:
|
|
230
|
+
'@types/react': ^17 || ^18 || ^19
|
|
231
|
+
react: ^17 || ^18 || ^19
|
|
232
|
+
react-dom: ^17 || ^18 || ^19
|
|
233
|
+
peerDependenciesMeta:
|
|
234
|
+
'@types/react':
|
|
235
|
+
optional: true
|
|
236
|
+
|
|
237
|
+
'@date-fns/tz@1.5.0':
|
|
238
|
+
resolution: {integrity: sha512-lwYN/vDPeNRULcepoE/LO2Pgx+7/RV+S9ARfbc9lr2DtGkOD7pAiruHvbR1RX3Qyf6ja47EWJDMsNK5vK08DJg==}
|
|
239
|
+
|
|
240
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
241
|
+
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
242
|
+
engines: {node: '>=18'}
|
|
243
|
+
cpu: [ppc64]
|
|
244
|
+
os: [aix]
|
|
245
|
+
|
|
246
|
+
'@esbuild/android-arm64@0.25.12':
|
|
247
|
+
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
248
|
+
engines: {node: '>=18'}
|
|
249
|
+
cpu: [arm64]
|
|
250
|
+
os: [android]
|
|
251
|
+
|
|
252
|
+
'@esbuild/android-arm@0.25.12':
|
|
253
|
+
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
254
|
+
engines: {node: '>=18'}
|
|
255
|
+
cpu: [arm]
|
|
256
|
+
os: [android]
|
|
257
|
+
|
|
258
|
+
'@esbuild/android-x64@0.25.12':
|
|
259
|
+
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
260
|
+
engines: {node: '>=18'}
|
|
261
|
+
cpu: [x64]
|
|
262
|
+
os: [android]
|
|
263
|
+
|
|
264
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
265
|
+
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
266
|
+
engines: {node: '>=18'}
|
|
267
|
+
cpu: [arm64]
|
|
268
|
+
os: [darwin]
|
|
269
|
+
|
|
270
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
271
|
+
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
272
|
+
engines: {node: '>=18'}
|
|
273
|
+
cpu: [x64]
|
|
274
|
+
os: [darwin]
|
|
275
|
+
|
|
276
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
277
|
+
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
278
|
+
engines: {node: '>=18'}
|
|
279
|
+
cpu: [arm64]
|
|
280
|
+
os: [freebsd]
|
|
281
|
+
|
|
282
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
283
|
+
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
284
|
+
engines: {node: '>=18'}
|
|
285
|
+
cpu: [x64]
|
|
286
|
+
os: [freebsd]
|
|
287
|
+
|
|
288
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
289
|
+
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
290
|
+
engines: {node: '>=18'}
|
|
291
|
+
cpu: [arm64]
|
|
292
|
+
os: [linux]
|
|
293
|
+
|
|
294
|
+
'@esbuild/linux-arm@0.25.12':
|
|
295
|
+
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
296
|
+
engines: {node: '>=18'}
|
|
297
|
+
cpu: [arm]
|
|
298
|
+
os: [linux]
|
|
299
|
+
|
|
300
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
301
|
+
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
302
|
+
engines: {node: '>=18'}
|
|
303
|
+
cpu: [ia32]
|
|
304
|
+
os: [linux]
|
|
305
|
+
|
|
306
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
307
|
+
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
308
|
+
engines: {node: '>=18'}
|
|
309
|
+
cpu: [loong64]
|
|
310
|
+
os: [linux]
|
|
311
|
+
|
|
312
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
313
|
+
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
314
|
+
engines: {node: '>=18'}
|
|
315
|
+
cpu: [mips64el]
|
|
316
|
+
os: [linux]
|
|
317
|
+
|
|
318
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
319
|
+
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
320
|
+
engines: {node: '>=18'}
|
|
321
|
+
cpu: [ppc64]
|
|
322
|
+
os: [linux]
|
|
323
|
+
|
|
324
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
325
|
+
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
326
|
+
engines: {node: '>=18'}
|
|
327
|
+
cpu: [riscv64]
|
|
328
|
+
os: [linux]
|
|
329
|
+
|
|
330
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
331
|
+
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
332
|
+
engines: {node: '>=18'}
|
|
333
|
+
cpu: [s390x]
|
|
334
|
+
os: [linux]
|
|
335
|
+
|
|
336
|
+
'@esbuild/linux-x64@0.25.12':
|
|
337
|
+
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
338
|
+
engines: {node: '>=18'}
|
|
339
|
+
cpu: [x64]
|
|
340
|
+
os: [linux]
|
|
341
|
+
|
|
342
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
343
|
+
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
344
|
+
engines: {node: '>=18'}
|
|
345
|
+
cpu: [arm64]
|
|
346
|
+
os: [netbsd]
|
|
347
|
+
|
|
348
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
349
|
+
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
350
|
+
engines: {node: '>=18'}
|
|
351
|
+
cpu: [x64]
|
|
352
|
+
os: [netbsd]
|
|
353
|
+
|
|
354
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
355
|
+
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
356
|
+
engines: {node: '>=18'}
|
|
357
|
+
cpu: [arm64]
|
|
358
|
+
os: [openbsd]
|
|
359
|
+
|
|
360
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
361
|
+
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
362
|
+
engines: {node: '>=18'}
|
|
363
|
+
cpu: [x64]
|
|
364
|
+
os: [openbsd]
|
|
365
|
+
|
|
366
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
367
|
+
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
368
|
+
engines: {node: '>=18'}
|
|
369
|
+
cpu: [arm64]
|
|
370
|
+
os: [openharmony]
|
|
371
|
+
|
|
372
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
373
|
+
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
374
|
+
engines: {node: '>=18'}
|
|
375
|
+
cpu: [x64]
|
|
376
|
+
os: [sunos]
|
|
377
|
+
|
|
378
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
379
|
+
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
380
|
+
engines: {node: '>=18'}
|
|
381
|
+
cpu: [arm64]
|
|
382
|
+
os: [win32]
|
|
383
|
+
|
|
384
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
385
|
+
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
386
|
+
engines: {node: '>=18'}
|
|
387
|
+
cpu: [ia32]
|
|
388
|
+
os: [win32]
|
|
389
|
+
|
|
390
|
+
'@esbuild/win32-x64@0.25.12':
|
|
391
|
+
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
392
|
+
engines: {node: '>=18'}
|
|
393
|
+
cpu: [x64]
|
|
394
|
+
os: [win32]
|
|
395
|
+
|
|
396
|
+
'@floating-ui/core@1.7.5':
|
|
397
|
+
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
|
|
398
|
+
|
|
399
|
+
'@floating-ui/dom@1.7.6':
|
|
400
|
+
resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
|
|
401
|
+
|
|
402
|
+
'@floating-ui/react-dom@2.1.8':
|
|
403
|
+
resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==}
|
|
404
|
+
peerDependencies:
|
|
405
|
+
react: '>=16.8.0'
|
|
406
|
+
react-dom: '>=16.8.0'
|
|
407
|
+
|
|
408
|
+
'@floating-ui/utils@0.2.11':
|
|
409
|
+
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
|
|
410
|
+
|
|
411
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
412
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
413
|
+
|
|
414
|
+
'@jridgewell/remapping@2.3.5':
|
|
415
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
416
|
+
|
|
417
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
418
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
419
|
+
engines: {node: '>=6.0.0'}
|
|
420
|
+
|
|
421
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
422
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
423
|
+
|
|
424
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
425
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
426
|
+
|
|
427
|
+
'@playwright/test@1.60.0':
|
|
428
|
+
resolution: {integrity: sha512-O71yZIbAh/PxDMNGns37GHBIfrVkEVyn+AXyIa5dOTfb4/xNvRWV+Vv/NMbNCtODB/pO7vLlF2OTmMVLhmr7Ag==}
|
|
429
|
+
engines: {node: '>=18'}
|
|
430
|
+
hasBin: true
|
|
431
|
+
|
|
432
|
+
'@radix-ui/primitive@1.1.3':
|
|
433
|
+
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
|
|
434
|
+
|
|
435
|
+
'@radix-ui/react-compose-refs@1.1.2':
|
|
436
|
+
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
|
|
437
|
+
peerDependencies:
|
|
438
|
+
'@types/react': '*'
|
|
439
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
440
|
+
peerDependenciesMeta:
|
|
441
|
+
'@types/react':
|
|
442
|
+
optional: true
|
|
443
|
+
|
|
444
|
+
'@radix-ui/react-context@1.1.2':
|
|
445
|
+
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
|
|
446
|
+
peerDependencies:
|
|
447
|
+
'@types/react': '*'
|
|
448
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
449
|
+
peerDependenciesMeta:
|
|
450
|
+
'@types/react':
|
|
451
|
+
optional: true
|
|
452
|
+
|
|
453
|
+
'@radix-ui/react-dialog@1.1.15':
|
|
454
|
+
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
|
|
455
|
+
peerDependencies:
|
|
456
|
+
'@types/react': '*'
|
|
457
|
+
'@types/react-dom': '*'
|
|
458
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
459
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
460
|
+
peerDependenciesMeta:
|
|
461
|
+
'@types/react':
|
|
462
|
+
optional: true
|
|
463
|
+
'@types/react-dom':
|
|
464
|
+
optional: true
|
|
465
|
+
|
|
466
|
+
'@radix-ui/react-dismissable-layer@1.1.11':
|
|
467
|
+
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
|
|
468
|
+
peerDependencies:
|
|
469
|
+
'@types/react': '*'
|
|
470
|
+
'@types/react-dom': '*'
|
|
471
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
472
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
473
|
+
peerDependenciesMeta:
|
|
474
|
+
'@types/react':
|
|
475
|
+
optional: true
|
|
476
|
+
'@types/react-dom':
|
|
477
|
+
optional: true
|
|
478
|
+
|
|
479
|
+
'@radix-ui/react-focus-guards@1.1.3':
|
|
480
|
+
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
|
|
481
|
+
peerDependencies:
|
|
482
|
+
'@types/react': '*'
|
|
483
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
484
|
+
peerDependenciesMeta:
|
|
485
|
+
'@types/react':
|
|
486
|
+
optional: true
|
|
487
|
+
|
|
488
|
+
'@radix-ui/react-focus-scope@1.1.7':
|
|
489
|
+
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
|
|
490
|
+
peerDependencies:
|
|
491
|
+
'@types/react': '*'
|
|
492
|
+
'@types/react-dom': '*'
|
|
493
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
494
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
495
|
+
peerDependenciesMeta:
|
|
496
|
+
'@types/react':
|
|
497
|
+
optional: true
|
|
498
|
+
'@types/react-dom':
|
|
499
|
+
optional: true
|
|
500
|
+
|
|
501
|
+
'@radix-ui/react-id@1.1.1':
|
|
502
|
+
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
|
|
503
|
+
peerDependencies:
|
|
504
|
+
'@types/react': '*'
|
|
505
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
506
|
+
peerDependenciesMeta:
|
|
507
|
+
'@types/react':
|
|
508
|
+
optional: true
|
|
509
|
+
|
|
510
|
+
'@radix-ui/react-portal@1.1.9':
|
|
511
|
+
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
|
|
512
|
+
peerDependencies:
|
|
513
|
+
'@types/react': '*'
|
|
514
|
+
'@types/react-dom': '*'
|
|
515
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
516
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
517
|
+
peerDependenciesMeta:
|
|
518
|
+
'@types/react':
|
|
519
|
+
optional: true
|
|
520
|
+
'@types/react-dom':
|
|
521
|
+
optional: true
|
|
522
|
+
|
|
523
|
+
'@radix-ui/react-presence@1.1.5':
|
|
524
|
+
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
|
|
525
|
+
peerDependencies:
|
|
526
|
+
'@types/react': '*'
|
|
527
|
+
'@types/react-dom': '*'
|
|
528
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
529
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
530
|
+
peerDependenciesMeta:
|
|
531
|
+
'@types/react':
|
|
532
|
+
optional: true
|
|
533
|
+
'@types/react-dom':
|
|
534
|
+
optional: true
|
|
535
|
+
|
|
536
|
+
'@radix-ui/react-primitive@2.1.3':
|
|
537
|
+
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
|
|
538
|
+
peerDependencies:
|
|
539
|
+
'@types/react': '*'
|
|
540
|
+
'@types/react-dom': '*'
|
|
541
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
542
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
543
|
+
peerDependenciesMeta:
|
|
544
|
+
'@types/react':
|
|
545
|
+
optional: true
|
|
546
|
+
'@types/react-dom':
|
|
547
|
+
optional: true
|
|
548
|
+
|
|
549
|
+
'@radix-ui/react-primitive@2.1.4':
|
|
550
|
+
resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
|
|
551
|
+
peerDependencies:
|
|
552
|
+
'@types/react': '*'
|
|
553
|
+
'@types/react-dom': '*'
|
|
554
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
555
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
556
|
+
peerDependenciesMeta:
|
|
557
|
+
'@types/react':
|
|
558
|
+
optional: true
|
|
559
|
+
'@types/react-dom':
|
|
560
|
+
optional: true
|
|
561
|
+
|
|
562
|
+
'@radix-ui/react-slot@1.2.3':
|
|
563
|
+
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
|
|
564
|
+
peerDependencies:
|
|
565
|
+
'@types/react': '*'
|
|
566
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
567
|
+
peerDependenciesMeta:
|
|
568
|
+
'@types/react':
|
|
569
|
+
optional: true
|
|
570
|
+
|
|
571
|
+
'@radix-ui/react-slot@1.2.4':
|
|
572
|
+
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
|
|
573
|
+
peerDependencies:
|
|
574
|
+
'@types/react': '*'
|
|
575
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
576
|
+
peerDependenciesMeta:
|
|
577
|
+
'@types/react':
|
|
578
|
+
optional: true
|
|
579
|
+
|
|
580
|
+
'@radix-ui/react-use-callback-ref@1.1.1':
|
|
581
|
+
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
|
|
582
|
+
peerDependencies:
|
|
583
|
+
'@types/react': '*'
|
|
584
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
585
|
+
peerDependenciesMeta:
|
|
586
|
+
'@types/react':
|
|
587
|
+
optional: true
|
|
588
|
+
|
|
589
|
+
'@radix-ui/react-use-controllable-state@1.2.2':
|
|
590
|
+
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
|
|
591
|
+
peerDependencies:
|
|
592
|
+
'@types/react': '*'
|
|
593
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
594
|
+
peerDependenciesMeta:
|
|
595
|
+
'@types/react':
|
|
596
|
+
optional: true
|
|
597
|
+
|
|
598
|
+
'@radix-ui/react-use-effect-event@0.0.2':
|
|
599
|
+
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
|
|
600
|
+
peerDependencies:
|
|
601
|
+
'@types/react': '*'
|
|
602
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
603
|
+
peerDependenciesMeta:
|
|
604
|
+
'@types/react':
|
|
605
|
+
optional: true
|
|
606
|
+
|
|
607
|
+
'@radix-ui/react-use-escape-keydown@1.1.1':
|
|
608
|
+
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
|
|
609
|
+
peerDependencies:
|
|
610
|
+
'@types/react': '*'
|
|
611
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
612
|
+
peerDependenciesMeta:
|
|
613
|
+
'@types/react':
|
|
614
|
+
optional: true
|
|
615
|
+
|
|
616
|
+
'@radix-ui/react-use-layout-effect@1.1.1':
|
|
617
|
+
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
|
|
618
|
+
peerDependencies:
|
|
619
|
+
'@types/react': '*'
|
|
620
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
621
|
+
peerDependenciesMeta:
|
|
622
|
+
'@types/react':
|
|
623
|
+
optional: true
|
|
624
|
+
|
|
625
|
+
'@reduxjs/toolkit@2.12.0':
|
|
626
|
+
resolution: {integrity: sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==}
|
|
627
|
+
peerDependencies:
|
|
628
|
+
react: ^16.9.0 || ^17.0.0 || ^18 || ^19
|
|
629
|
+
react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
|
|
630
|
+
peerDependenciesMeta:
|
|
631
|
+
react:
|
|
632
|
+
optional: true
|
|
633
|
+
react-redux:
|
|
634
|
+
optional: true
|
|
635
|
+
|
|
636
|
+
'@rolldown/pluginutils@1.0.0-beta.27':
|
|
637
|
+
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
|
|
638
|
+
|
|
639
|
+
'@rollup/rollup-android-arm-eabi@4.60.4':
|
|
640
|
+
resolution: {integrity: sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==}
|
|
641
|
+
cpu: [arm]
|
|
642
|
+
os: [android]
|
|
643
|
+
|
|
644
|
+
'@rollup/rollup-android-arm64@4.60.4':
|
|
645
|
+
resolution: {integrity: sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==}
|
|
646
|
+
cpu: [arm64]
|
|
647
|
+
os: [android]
|
|
648
|
+
|
|
649
|
+
'@rollup/rollup-darwin-arm64@4.60.4':
|
|
650
|
+
resolution: {integrity: sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==}
|
|
651
|
+
cpu: [arm64]
|
|
652
|
+
os: [darwin]
|
|
653
|
+
|
|
654
|
+
'@rollup/rollup-darwin-x64@4.60.4':
|
|
655
|
+
resolution: {integrity: sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==}
|
|
656
|
+
cpu: [x64]
|
|
657
|
+
os: [darwin]
|
|
658
|
+
|
|
659
|
+
'@rollup/rollup-freebsd-arm64@4.60.4':
|
|
660
|
+
resolution: {integrity: sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==}
|
|
661
|
+
cpu: [arm64]
|
|
662
|
+
os: [freebsd]
|
|
663
|
+
|
|
664
|
+
'@rollup/rollup-freebsd-x64@4.60.4':
|
|
665
|
+
resolution: {integrity: sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==}
|
|
666
|
+
cpu: [x64]
|
|
667
|
+
os: [freebsd]
|
|
668
|
+
|
|
669
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.60.4':
|
|
670
|
+
resolution: {integrity: sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==}
|
|
671
|
+
cpu: [arm]
|
|
672
|
+
os: [linux]
|
|
673
|
+
|
|
674
|
+
'@rollup/rollup-linux-arm-musleabihf@4.60.4':
|
|
675
|
+
resolution: {integrity: sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==}
|
|
676
|
+
cpu: [arm]
|
|
677
|
+
os: [linux]
|
|
678
|
+
|
|
679
|
+
'@rollup/rollup-linux-arm64-gnu@4.60.4':
|
|
680
|
+
resolution: {integrity: sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==}
|
|
681
|
+
cpu: [arm64]
|
|
682
|
+
os: [linux]
|
|
683
|
+
|
|
684
|
+
'@rollup/rollup-linux-arm64-musl@4.60.4':
|
|
685
|
+
resolution: {integrity: sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==}
|
|
686
|
+
cpu: [arm64]
|
|
687
|
+
os: [linux]
|
|
688
|
+
|
|
689
|
+
'@rollup/rollup-linux-loong64-gnu@4.60.4':
|
|
690
|
+
resolution: {integrity: sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==}
|
|
691
|
+
cpu: [loong64]
|
|
692
|
+
os: [linux]
|
|
693
|
+
|
|
694
|
+
'@rollup/rollup-linux-loong64-musl@4.60.4':
|
|
695
|
+
resolution: {integrity: sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==}
|
|
696
|
+
cpu: [loong64]
|
|
697
|
+
os: [linux]
|
|
698
|
+
|
|
699
|
+
'@rollup/rollup-linux-ppc64-gnu@4.60.4':
|
|
700
|
+
resolution: {integrity: sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==}
|
|
701
|
+
cpu: [ppc64]
|
|
702
|
+
os: [linux]
|
|
703
|
+
|
|
704
|
+
'@rollup/rollup-linux-ppc64-musl@4.60.4':
|
|
705
|
+
resolution: {integrity: sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==}
|
|
706
|
+
cpu: [ppc64]
|
|
707
|
+
os: [linux]
|
|
708
|
+
|
|
709
|
+
'@rollup/rollup-linux-riscv64-gnu@4.60.4':
|
|
710
|
+
resolution: {integrity: sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==}
|
|
711
|
+
cpu: [riscv64]
|
|
712
|
+
os: [linux]
|
|
713
|
+
|
|
714
|
+
'@rollup/rollup-linux-riscv64-musl@4.60.4':
|
|
715
|
+
resolution: {integrity: sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==}
|
|
716
|
+
cpu: [riscv64]
|
|
717
|
+
os: [linux]
|
|
718
|
+
|
|
719
|
+
'@rollup/rollup-linux-s390x-gnu@4.60.4':
|
|
720
|
+
resolution: {integrity: sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==}
|
|
721
|
+
cpu: [s390x]
|
|
722
|
+
os: [linux]
|
|
723
|
+
|
|
724
|
+
'@rollup/rollup-linux-x64-gnu@4.60.4':
|
|
725
|
+
resolution: {integrity: sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==}
|
|
726
|
+
cpu: [x64]
|
|
727
|
+
os: [linux]
|
|
728
|
+
|
|
729
|
+
'@rollup/rollup-linux-x64-musl@4.60.4':
|
|
730
|
+
resolution: {integrity: sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==}
|
|
731
|
+
cpu: [x64]
|
|
732
|
+
os: [linux]
|
|
733
|
+
|
|
734
|
+
'@rollup/rollup-openbsd-x64@4.60.4':
|
|
735
|
+
resolution: {integrity: sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==}
|
|
736
|
+
cpu: [x64]
|
|
737
|
+
os: [openbsd]
|
|
738
|
+
|
|
739
|
+
'@rollup/rollup-openharmony-arm64@4.60.4':
|
|
740
|
+
resolution: {integrity: sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==}
|
|
741
|
+
cpu: [arm64]
|
|
742
|
+
os: [openharmony]
|
|
743
|
+
|
|
744
|
+
'@rollup/rollup-win32-arm64-msvc@4.60.4':
|
|
745
|
+
resolution: {integrity: sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==}
|
|
746
|
+
cpu: [arm64]
|
|
747
|
+
os: [win32]
|
|
748
|
+
|
|
749
|
+
'@rollup/rollup-win32-ia32-msvc@4.60.4':
|
|
750
|
+
resolution: {integrity: sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==}
|
|
751
|
+
cpu: [ia32]
|
|
752
|
+
os: [win32]
|
|
753
|
+
|
|
754
|
+
'@rollup/rollup-win32-x64-gnu@4.60.4':
|
|
755
|
+
resolution: {integrity: sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==}
|
|
756
|
+
cpu: [x64]
|
|
757
|
+
os: [win32]
|
|
758
|
+
|
|
759
|
+
'@rollup/rollup-win32-x64-msvc@4.60.4':
|
|
760
|
+
resolution: {integrity: sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==}
|
|
761
|
+
cpu: [x64]
|
|
762
|
+
os: [win32]
|
|
763
|
+
|
|
764
|
+
'@standard-schema/spec@1.1.0':
|
|
765
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
766
|
+
|
|
767
|
+
'@standard-schema/utils@0.3.0':
|
|
768
|
+
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
769
|
+
|
|
770
|
+
'@tailwindcss/node@4.3.0':
|
|
771
|
+
resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
|
|
772
|
+
|
|
773
|
+
'@tailwindcss/oxide-android-arm64@4.3.0':
|
|
774
|
+
resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==}
|
|
775
|
+
engines: {node: '>= 20'}
|
|
776
|
+
cpu: [arm64]
|
|
777
|
+
os: [android]
|
|
778
|
+
|
|
779
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.0':
|
|
780
|
+
resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==}
|
|
781
|
+
engines: {node: '>= 20'}
|
|
782
|
+
cpu: [arm64]
|
|
783
|
+
os: [darwin]
|
|
784
|
+
|
|
785
|
+
'@tailwindcss/oxide-darwin-x64@4.3.0':
|
|
786
|
+
resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==}
|
|
787
|
+
engines: {node: '>= 20'}
|
|
788
|
+
cpu: [x64]
|
|
789
|
+
os: [darwin]
|
|
790
|
+
|
|
791
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.0':
|
|
792
|
+
resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==}
|
|
793
|
+
engines: {node: '>= 20'}
|
|
794
|
+
cpu: [x64]
|
|
795
|
+
os: [freebsd]
|
|
796
|
+
|
|
797
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
|
|
798
|
+
resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==}
|
|
799
|
+
engines: {node: '>= 20'}
|
|
800
|
+
cpu: [arm]
|
|
801
|
+
os: [linux]
|
|
802
|
+
|
|
803
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
|
|
804
|
+
resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==}
|
|
805
|
+
engines: {node: '>= 20'}
|
|
806
|
+
cpu: [arm64]
|
|
807
|
+
os: [linux]
|
|
808
|
+
|
|
809
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
810
|
+
resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
|
|
811
|
+
engines: {node: '>= 20'}
|
|
812
|
+
cpu: [arm64]
|
|
813
|
+
os: [linux]
|
|
814
|
+
|
|
815
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
816
|
+
resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
|
|
817
|
+
engines: {node: '>= 20'}
|
|
818
|
+
cpu: [x64]
|
|
819
|
+
os: [linux]
|
|
820
|
+
|
|
821
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
822
|
+
resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
|
|
823
|
+
engines: {node: '>= 20'}
|
|
824
|
+
cpu: [x64]
|
|
825
|
+
os: [linux]
|
|
826
|
+
|
|
827
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
828
|
+
resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
|
|
829
|
+
engines: {node: '>=14.0.0'}
|
|
830
|
+
cpu: [wasm32]
|
|
831
|
+
bundledDependencies:
|
|
832
|
+
- '@napi-rs/wasm-runtime'
|
|
833
|
+
- '@emnapi/core'
|
|
834
|
+
- '@emnapi/runtime'
|
|
835
|
+
- '@tybys/wasm-util'
|
|
836
|
+
- '@emnapi/wasi-threads'
|
|
837
|
+
- tslib
|
|
838
|
+
|
|
839
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
|
|
840
|
+
resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==}
|
|
841
|
+
engines: {node: '>= 20'}
|
|
842
|
+
cpu: [arm64]
|
|
843
|
+
os: [win32]
|
|
844
|
+
|
|
845
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.0':
|
|
846
|
+
resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==}
|
|
847
|
+
engines: {node: '>= 20'}
|
|
848
|
+
cpu: [x64]
|
|
849
|
+
os: [win32]
|
|
850
|
+
|
|
851
|
+
'@tailwindcss/oxide@4.3.0':
|
|
852
|
+
resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==}
|
|
853
|
+
engines: {node: '>= 20'}
|
|
854
|
+
|
|
855
|
+
'@tailwindcss/vite@4.3.0':
|
|
856
|
+
resolution: {integrity: sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==}
|
|
857
|
+
peerDependencies:
|
|
858
|
+
vite: ^5.2.0 || ^6 || ^7 || ^8
|
|
859
|
+
|
|
860
|
+
'@types/babel__core@7.20.5':
|
|
861
|
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
862
|
+
|
|
863
|
+
'@types/babel__generator@7.27.0':
|
|
864
|
+
resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
|
|
865
|
+
|
|
866
|
+
'@types/babel__template@7.4.4':
|
|
867
|
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
|
868
|
+
|
|
869
|
+
'@types/babel__traverse@7.28.0':
|
|
870
|
+
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
871
|
+
|
|
872
|
+
'@types/d3-array@3.2.2':
|
|
873
|
+
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
|
|
874
|
+
|
|
875
|
+
'@types/d3-color@3.1.3':
|
|
876
|
+
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
|
|
877
|
+
|
|
878
|
+
'@types/d3-drag@3.0.7':
|
|
879
|
+
resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
|
|
880
|
+
|
|
881
|
+
'@types/d3-ease@3.0.2':
|
|
882
|
+
resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
|
|
883
|
+
|
|
884
|
+
'@types/d3-force@3.0.10':
|
|
885
|
+
resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
|
|
886
|
+
|
|
887
|
+
'@types/d3-interpolate@3.0.4':
|
|
888
|
+
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
|
|
889
|
+
|
|
890
|
+
'@types/d3-path@3.1.1':
|
|
891
|
+
resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
|
|
892
|
+
|
|
893
|
+
'@types/d3-scale@4.0.9':
|
|
894
|
+
resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
|
|
895
|
+
|
|
896
|
+
'@types/d3-selection@3.0.11':
|
|
897
|
+
resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
|
|
898
|
+
|
|
899
|
+
'@types/d3-shape@3.1.8':
|
|
900
|
+
resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
|
|
901
|
+
|
|
902
|
+
'@types/d3-time@3.0.4':
|
|
903
|
+
resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
|
|
904
|
+
|
|
905
|
+
'@types/d3-timer@3.0.2':
|
|
906
|
+
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
|
|
907
|
+
|
|
908
|
+
'@types/estree@1.0.8':
|
|
909
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
910
|
+
|
|
911
|
+
'@types/node@25.9.1':
|
|
912
|
+
resolution: {integrity: sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==}
|
|
913
|
+
|
|
914
|
+
'@types/qrcode@1.5.6':
|
|
915
|
+
resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
|
|
916
|
+
|
|
917
|
+
'@types/react-dom@19.2.3':
|
|
918
|
+
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
919
|
+
peerDependencies:
|
|
920
|
+
'@types/react': ^19.2.0
|
|
921
|
+
|
|
922
|
+
'@types/react@19.2.15':
|
|
923
|
+
resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
|
|
924
|
+
|
|
925
|
+
'@types/use-sync-external-store@0.0.6':
|
|
926
|
+
resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
|
|
927
|
+
|
|
928
|
+
'@vitejs/plugin-react@4.7.0':
|
|
929
|
+
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
|
|
930
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
931
|
+
peerDependencies:
|
|
932
|
+
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
933
|
+
|
|
934
|
+
ansi-regex@5.0.1:
|
|
935
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
936
|
+
engines: {node: '>=8'}
|
|
937
|
+
|
|
938
|
+
ansi-styles@4.3.0:
|
|
939
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
940
|
+
engines: {node: '>=8'}
|
|
941
|
+
|
|
942
|
+
aria-hidden@1.2.6:
|
|
943
|
+
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
|
|
944
|
+
engines: {node: '>=10'}
|
|
945
|
+
|
|
946
|
+
baseline-browser-mapping@2.10.32:
|
|
947
|
+
resolution: {integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==}
|
|
948
|
+
engines: {node: '>=6.0.0'}
|
|
949
|
+
hasBin: true
|
|
950
|
+
|
|
951
|
+
browserslist@4.28.2:
|
|
952
|
+
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
953
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
954
|
+
hasBin: true
|
|
955
|
+
|
|
956
|
+
camelcase@5.3.1:
|
|
957
|
+
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
|
958
|
+
engines: {node: '>=6'}
|
|
959
|
+
|
|
960
|
+
caniuse-lite@1.0.30001793:
|
|
961
|
+
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
|
962
|
+
|
|
963
|
+
class-variance-authority@0.7.1:
|
|
964
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
965
|
+
|
|
966
|
+
cliui@6.0.0:
|
|
967
|
+
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
|
|
968
|
+
|
|
969
|
+
clsx@2.1.1:
|
|
970
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
971
|
+
engines: {node: '>=6'}
|
|
972
|
+
|
|
973
|
+
cmdk@1.1.1:
|
|
974
|
+
resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
|
|
975
|
+
peerDependencies:
|
|
976
|
+
react: ^18 || ^19 || ^19.0.0-rc
|
|
977
|
+
react-dom: ^18 || ^19 || ^19.0.0-rc
|
|
978
|
+
|
|
979
|
+
color-convert@2.0.1:
|
|
980
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
981
|
+
engines: {node: '>=7.0.0'}
|
|
982
|
+
|
|
983
|
+
color-name@1.1.4:
|
|
984
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
985
|
+
|
|
986
|
+
convert-source-map@2.0.0:
|
|
987
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
988
|
+
|
|
989
|
+
cookie@1.1.1:
|
|
990
|
+
resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
|
|
991
|
+
engines: {node: '>=18'}
|
|
992
|
+
|
|
993
|
+
csstype@3.2.3:
|
|
994
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
995
|
+
|
|
996
|
+
d3-array@3.2.4:
|
|
997
|
+
resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
|
|
998
|
+
engines: {node: '>=12'}
|
|
999
|
+
|
|
1000
|
+
d3-color@3.1.0:
|
|
1001
|
+
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
|
1002
|
+
engines: {node: '>=12'}
|
|
1003
|
+
|
|
1004
|
+
d3-dispatch@3.0.1:
|
|
1005
|
+
resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
|
|
1006
|
+
engines: {node: '>=12'}
|
|
1007
|
+
|
|
1008
|
+
d3-drag@3.0.0:
|
|
1009
|
+
resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
|
|
1010
|
+
engines: {node: '>=12'}
|
|
1011
|
+
|
|
1012
|
+
d3-ease@3.0.1:
|
|
1013
|
+
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
|
1014
|
+
engines: {node: '>=12'}
|
|
1015
|
+
|
|
1016
|
+
d3-force@3.0.0:
|
|
1017
|
+
resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==}
|
|
1018
|
+
engines: {node: '>=12'}
|
|
1019
|
+
|
|
1020
|
+
d3-format@3.1.2:
|
|
1021
|
+
resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
|
|
1022
|
+
engines: {node: '>=12'}
|
|
1023
|
+
|
|
1024
|
+
d3-interpolate@3.0.1:
|
|
1025
|
+
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
|
1026
|
+
engines: {node: '>=12'}
|
|
1027
|
+
|
|
1028
|
+
d3-path@3.1.0:
|
|
1029
|
+
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
|
|
1030
|
+
engines: {node: '>=12'}
|
|
1031
|
+
|
|
1032
|
+
d3-quadtree@3.0.1:
|
|
1033
|
+
resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
|
|
1034
|
+
engines: {node: '>=12'}
|
|
1035
|
+
|
|
1036
|
+
d3-scale@4.0.2:
|
|
1037
|
+
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
|
|
1038
|
+
engines: {node: '>=12'}
|
|
1039
|
+
|
|
1040
|
+
d3-selection@3.0.0:
|
|
1041
|
+
resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
|
|
1042
|
+
engines: {node: '>=12'}
|
|
1043
|
+
|
|
1044
|
+
d3-shape@3.2.0:
|
|
1045
|
+
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
|
|
1046
|
+
engines: {node: '>=12'}
|
|
1047
|
+
|
|
1048
|
+
d3-time-format@4.1.0:
|
|
1049
|
+
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
|
|
1050
|
+
engines: {node: '>=12'}
|
|
1051
|
+
|
|
1052
|
+
d3-time@3.1.0:
|
|
1053
|
+
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
|
|
1054
|
+
engines: {node: '>=12'}
|
|
1055
|
+
|
|
1056
|
+
d3-timer@3.0.1:
|
|
1057
|
+
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
1058
|
+
engines: {node: '>=12'}
|
|
1059
|
+
|
|
1060
|
+
date-fns@4.3.0:
|
|
1061
|
+
resolution: {integrity: sha512-OYcL+3N/jyWbYdFGqoMAhytDgxP9pbYPUUiRCOgn4Fewaadk9l/Wam4Avciiyp2BgkpfQyBV9B+ehnVJych+eQ==}
|
|
1062
|
+
|
|
1063
|
+
debug@4.4.3:
|
|
1064
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
1065
|
+
engines: {node: '>=6.0'}
|
|
1066
|
+
peerDependencies:
|
|
1067
|
+
supports-color: '*'
|
|
1068
|
+
peerDependenciesMeta:
|
|
1069
|
+
supports-color:
|
|
1070
|
+
optional: true
|
|
1071
|
+
|
|
1072
|
+
decamelize@1.2.0:
|
|
1073
|
+
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
1074
|
+
engines: {node: '>=0.10.0'}
|
|
1075
|
+
|
|
1076
|
+
decimal.js-light@2.5.1:
|
|
1077
|
+
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
|
|
1078
|
+
|
|
1079
|
+
dequal@2.0.3:
|
|
1080
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
1081
|
+
engines: {node: '>=6'}
|
|
1082
|
+
|
|
1083
|
+
detect-libc@2.1.2:
|
|
1084
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
1085
|
+
engines: {node: '>=8'}
|
|
1086
|
+
|
|
1087
|
+
detect-node-es@1.1.0:
|
|
1088
|
+
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
|
|
1089
|
+
|
|
1090
|
+
dijkstrajs@1.0.3:
|
|
1091
|
+
resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
|
|
1092
|
+
|
|
1093
|
+
electron-to-chromium@1.5.363:
|
|
1094
|
+
resolution: {integrity: sha512-VjUKPyWzGnT1fujlkEGC/BvN70Hh70KXtAqcmniXviYlJC/ivcT+BWGPyxWVbJZLfvtKR6dqg1L7T7pgAMBtWA==}
|
|
1095
|
+
|
|
1096
|
+
embla-carousel-react@8.6.0:
|
|
1097
|
+
resolution: {integrity: sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==}
|
|
1098
|
+
peerDependencies:
|
|
1099
|
+
react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1100
|
+
|
|
1101
|
+
embla-carousel-reactive-utils@8.6.0:
|
|
1102
|
+
resolution: {integrity: sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==}
|
|
1103
|
+
peerDependencies:
|
|
1104
|
+
embla-carousel: 8.6.0
|
|
1105
|
+
|
|
1106
|
+
embla-carousel@8.6.0:
|
|
1107
|
+
resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==}
|
|
1108
|
+
|
|
1109
|
+
emoji-regex@8.0.0:
|
|
1110
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
1111
|
+
|
|
1112
|
+
enhanced-resolve@5.22.0:
|
|
1113
|
+
resolution: {integrity: sha512-xYcDWrpELkFzz9SpZ3PlI6Eu6eD93Yf0WLDRxikGhWJ3MAir2SNZTIVCVZqZ/NUyx8AdMc2gT9C0gPiw18kG+A==}
|
|
1114
|
+
engines: {node: '>=10.13.0'}
|
|
1115
|
+
|
|
1116
|
+
es-toolkit@1.47.0:
|
|
1117
|
+
resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==}
|
|
1118
|
+
|
|
1119
|
+
esbuild@0.25.12:
|
|
1120
|
+
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
1121
|
+
engines: {node: '>=18'}
|
|
1122
|
+
hasBin: true
|
|
1123
|
+
|
|
1124
|
+
escalade@3.2.0:
|
|
1125
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1126
|
+
engines: {node: '>=6'}
|
|
1127
|
+
|
|
1128
|
+
eventemitter3@5.0.4:
|
|
1129
|
+
resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
|
|
1130
|
+
|
|
1131
|
+
fdir@6.5.0:
|
|
1132
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
1133
|
+
engines: {node: '>=12.0.0'}
|
|
1134
|
+
peerDependencies:
|
|
1135
|
+
picomatch: ^3 || ^4
|
|
1136
|
+
peerDependenciesMeta:
|
|
1137
|
+
picomatch:
|
|
1138
|
+
optional: true
|
|
1139
|
+
|
|
1140
|
+
find-up@4.1.0:
|
|
1141
|
+
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
|
|
1142
|
+
engines: {node: '>=8'}
|
|
1143
|
+
|
|
1144
|
+
fsevents@2.3.2:
|
|
1145
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
1146
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1147
|
+
os: [darwin]
|
|
1148
|
+
|
|
1149
|
+
fsevents@2.3.3:
|
|
1150
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1151
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1152
|
+
os: [darwin]
|
|
1153
|
+
|
|
1154
|
+
gensync@1.0.0-beta.2:
|
|
1155
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
1156
|
+
engines: {node: '>=6.9.0'}
|
|
1157
|
+
|
|
1158
|
+
get-caller-file@2.0.5:
|
|
1159
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
1160
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
1161
|
+
|
|
1162
|
+
get-nonce@1.0.1:
|
|
1163
|
+
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
|
|
1164
|
+
engines: {node: '>=6'}
|
|
1165
|
+
|
|
1166
|
+
graceful-fs@4.2.11:
|
|
1167
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1168
|
+
|
|
1169
|
+
immer@10.2.0:
|
|
1170
|
+
resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
|
|
1171
|
+
|
|
1172
|
+
immer@11.1.8:
|
|
1173
|
+
resolution: {integrity: sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==}
|
|
1174
|
+
|
|
1175
|
+
input-otp@1.4.2:
|
|
1176
|
+
resolution: {integrity: sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==}
|
|
1177
|
+
peerDependencies:
|
|
1178
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1179
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1180
|
+
|
|
1181
|
+
internmap@2.0.3:
|
|
1182
|
+
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
|
|
1183
|
+
engines: {node: '>=12'}
|
|
1184
|
+
|
|
1185
|
+
is-fullwidth-code-point@3.0.0:
|
|
1186
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
1187
|
+
engines: {node: '>=8'}
|
|
1188
|
+
|
|
1189
|
+
jiti@2.7.0:
|
|
1190
|
+
resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
|
|
1191
|
+
hasBin: true
|
|
1192
|
+
|
|
1193
|
+
js-tokens@4.0.0:
|
|
1194
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1195
|
+
|
|
1196
|
+
jsesc@3.1.0:
|
|
1197
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
1198
|
+
engines: {node: '>=6'}
|
|
1199
|
+
hasBin: true
|
|
1200
|
+
|
|
1201
|
+
json5@2.2.3:
|
|
1202
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
1203
|
+
engines: {node: '>=6'}
|
|
1204
|
+
hasBin: true
|
|
1205
|
+
|
|
1206
|
+
lightningcss-android-arm64@1.32.0:
|
|
1207
|
+
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
1208
|
+
engines: {node: '>= 12.0.0'}
|
|
1209
|
+
cpu: [arm64]
|
|
1210
|
+
os: [android]
|
|
1211
|
+
|
|
1212
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
1213
|
+
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
|
|
1214
|
+
engines: {node: '>= 12.0.0'}
|
|
1215
|
+
cpu: [arm64]
|
|
1216
|
+
os: [darwin]
|
|
1217
|
+
|
|
1218
|
+
lightningcss-darwin-x64@1.32.0:
|
|
1219
|
+
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
|
|
1220
|
+
engines: {node: '>= 12.0.0'}
|
|
1221
|
+
cpu: [x64]
|
|
1222
|
+
os: [darwin]
|
|
1223
|
+
|
|
1224
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
1225
|
+
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
|
|
1226
|
+
engines: {node: '>= 12.0.0'}
|
|
1227
|
+
cpu: [x64]
|
|
1228
|
+
os: [freebsd]
|
|
1229
|
+
|
|
1230
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
1231
|
+
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
|
|
1232
|
+
engines: {node: '>= 12.0.0'}
|
|
1233
|
+
cpu: [arm]
|
|
1234
|
+
os: [linux]
|
|
1235
|
+
|
|
1236
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
1237
|
+
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
|
|
1238
|
+
engines: {node: '>= 12.0.0'}
|
|
1239
|
+
cpu: [arm64]
|
|
1240
|
+
os: [linux]
|
|
1241
|
+
|
|
1242
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
1243
|
+
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
1244
|
+
engines: {node: '>= 12.0.0'}
|
|
1245
|
+
cpu: [arm64]
|
|
1246
|
+
os: [linux]
|
|
1247
|
+
|
|
1248
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
1249
|
+
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
1250
|
+
engines: {node: '>= 12.0.0'}
|
|
1251
|
+
cpu: [x64]
|
|
1252
|
+
os: [linux]
|
|
1253
|
+
|
|
1254
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
1255
|
+
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
1256
|
+
engines: {node: '>= 12.0.0'}
|
|
1257
|
+
cpu: [x64]
|
|
1258
|
+
os: [linux]
|
|
1259
|
+
|
|
1260
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1261
|
+
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
1262
|
+
engines: {node: '>= 12.0.0'}
|
|
1263
|
+
cpu: [arm64]
|
|
1264
|
+
os: [win32]
|
|
1265
|
+
|
|
1266
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
1267
|
+
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
|
|
1268
|
+
engines: {node: '>= 12.0.0'}
|
|
1269
|
+
cpu: [x64]
|
|
1270
|
+
os: [win32]
|
|
1271
|
+
|
|
1272
|
+
lightningcss@1.32.0:
|
|
1273
|
+
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
|
|
1274
|
+
engines: {node: '>= 12.0.0'}
|
|
1275
|
+
|
|
1276
|
+
locate-path@5.0.0:
|
|
1277
|
+
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
|
1278
|
+
engines: {node: '>=8'}
|
|
1279
|
+
|
|
1280
|
+
lru-cache@5.1.1:
|
|
1281
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1282
|
+
|
|
1283
|
+
lucide-react@0.469.0:
|
|
1284
|
+
resolution: {integrity: sha512-28vvUnnKQ/dBwiCQtwJw7QauYnE7yd2Cyp4tTTJpvglX4EMpbflcdBgrgToX2j71B3YvugK/NH3BGUk+E/p/Fw==}
|
|
1285
|
+
peerDependencies:
|
|
1286
|
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1287
|
+
|
|
1288
|
+
magic-string@0.30.21:
|
|
1289
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1290
|
+
|
|
1291
|
+
ms@2.1.3:
|
|
1292
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1293
|
+
|
|
1294
|
+
nanoid@3.3.12:
|
|
1295
|
+
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
|
1296
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1297
|
+
hasBin: true
|
|
1298
|
+
|
|
1299
|
+
next-themes@0.4.6:
|
|
1300
|
+
resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==}
|
|
1301
|
+
peerDependencies:
|
|
1302
|
+
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
1303
|
+
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
1304
|
+
|
|
1305
|
+
node-releases@2.0.46:
|
|
1306
|
+
resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==}
|
|
1307
|
+
engines: {node: '>=18'}
|
|
1308
|
+
|
|
1309
|
+
p-limit@2.3.0:
|
|
1310
|
+
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
|
|
1311
|
+
engines: {node: '>=6'}
|
|
1312
|
+
|
|
1313
|
+
p-locate@4.1.0:
|
|
1314
|
+
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
|
|
1315
|
+
engines: {node: '>=8'}
|
|
1316
|
+
|
|
1317
|
+
p-try@2.2.0:
|
|
1318
|
+
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
|
|
1319
|
+
engines: {node: '>=6'}
|
|
1320
|
+
|
|
1321
|
+
path-exists@4.0.0:
|
|
1322
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1323
|
+
engines: {node: '>=8'}
|
|
1324
|
+
|
|
1325
|
+
picocolors@1.1.1:
|
|
1326
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1327
|
+
|
|
1328
|
+
picomatch@4.0.4:
|
|
1329
|
+
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
1330
|
+
engines: {node: '>=12'}
|
|
1331
|
+
|
|
1332
|
+
playwright-core@1.60.0:
|
|
1333
|
+
resolution: {integrity: sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==}
|
|
1334
|
+
engines: {node: '>=18'}
|
|
1335
|
+
hasBin: true
|
|
1336
|
+
|
|
1337
|
+
playwright@1.60.0:
|
|
1338
|
+
resolution: {integrity: sha512-hheHdokM8cdqCb0lcE3s+zT4t4W+vvjpGxsZlDnikarzx8tSzMebh3UiFtgqwFwnTnjYQcsyMF8ei2mCO/tpeA==}
|
|
1339
|
+
engines: {node: '>=18'}
|
|
1340
|
+
hasBin: true
|
|
1341
|
+
|
|
1342
|
+
pngjs@5.0.0:
|
|
1343
|
+
resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
|
|
1344
|
+
engines: {node: '>=10.13.0'}
|
|
1345
|
+
|
|
1346
|
+
postcss@8.5.15:
|
|
1347
|
+
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
|
|
1348
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1349
|
+
|
|
1350
|
+
qrcode@1.5.4:
|
|
1351
|
+
resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
|
|
1352
|
+
engines: {node: '>=10.13.0'}
|
|
1353
|
+
hasBin: true
|
|
1354
|
+
|
|
1355
|
+
react-day-picker@10.0.1:
|
|
1356
|
+
resolution: {integrity: sha512-eNh6BlwcYInWaJtRv18mXQ06Ys/H6rdTZAnTaSdOYJuTpwP1JMCHNd1FDRadA+gbeinq+psdULN5Xnowy9mV8w==}
|
|
1357
|
+
engines: {node: '>=18'}
|
|
1358
|
+
peerDependencies:
|
|
1359
|
+
'@types/react': '>=16.8.0'
|
|
1360
|
+
react: '>=16.8.0'
|
|
1361
|
+
peerDependenciesMeta:
|
|
1362
|
+
'@types/react':
|
|
1363
|
+
optional: true
|
|
1364
|
+
|
|
1365
|
+
react-dom@19.2.6:
|
|
1366
|
+
resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
|
|
1367
|
+
peerDependencies:
|
|
1368
|
+
react: ^19.2.6
|
|
1369
|
+
|
|
1370
|
+
react-is@19.2.6:
|
|
1371
|
+
resolution: {integrity: sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==}
|
|
1372
|
+
|
|
1373
|
+
react-redux@9.3.0:
|
|
1374
|
+
resolution: {integrity: sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==}
|
|
1375
|
+
peerDependencies:
|
|
1376
|
+
'@types/react': ^18.2.25 || ^19
|
|
1377
|
+
react: ^18.0 || ^19
|
|
1378
|
+
redux: ^5.0.0
|
|
1379
|
+
peerDependenciesMeta:
|
|
1380
|
+
'@types/react':
|
|
1381
|
+
optional: true
|
|
1382
|
+
redux:
|
|
1383
|
+
optional: true
|
|
1384
|
+
|
|
1385
|
+
react-refresh@0.17.0:
|
|
1386
|
+
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
1387
|
+
engines: {node: '>=0.10.0'}
|
|
1388
|
+
|
|
1389
|
+
react-remove-scroll-bar@2.3.8:
|
|
1390
|
+
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
|
|
1391
|
+
engines: {node: '>=10'}
|
|
1392
|
+
peerDependencies:
|
|
1393
|
+
'@types/react': '*'
|
|
1394
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1395
|
+
peerDependenciesMeta:
|
|
1396
|
+
'@types/react':
|
|
1397
|
+
optional: true
|
|
1398
|
+
|
|
1399
|
+
react-remove-scroll@2.7.2:
|
|
1400
|
+
resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
|
|
1401
|
+
engines: {node: '>=10'}
|
|
1402
|
+
peerDependencies:
|
|
1403
|
+
'@types/react': '*'
|
|
1404
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1405
|
+
peerDependenciesMeta:
|
|
1406
|
+
'@types/react':
|
|
1407
|
+
optional: true
|
|
1408
|
+
|
|
1409
|
+
react-resizable-panels@4.11.2:
|
|
1410
|
+
resolution: {integrity: sha512-+kfFbDZ8mygc7g0vxOcDzCVGuwiIUOnILqPoUHo6/uP+Mmyx6HzZU+kj1aOPDlktXuobYbr6BtQekvJwHRX4Eg==}
|
|
1411
|
+
peerDependencies:
|
|
1412
|
+
react: ^18.0.0 || ^19.0.0
|
|
1413
|
+
react-dom: ^18.0.0 || ^19.0.0
|
|
1414
|
+
|
|
1415
|
+
react-router-dom@7.15.1:
|
|
1416
|
+
resolution: {integrity: sha512-AzF62gjY6U9rkMq4RfP/r2EVtQ7DMfNMjyOp/flLTCrtRylLiK4wT4pSq6O8rOXZ2eXdZYJPEYe+ifomiv+Igg==}
|
|
1417
|
+
engines: {node: '>=20.0.0'}
|
|
1418
|
+
peerDependencies:
|
|
1419
|
+
react: '>=18'
|
|
1420
|
+
react-dom: '>=18'
|
|
1421
|
+
|
|
1422
|
+
react-router@7.15.1:
|
|
1423
|
+
resolution: {integrity: sha512-R8rl9HhgikFYoPJymnUtPXWbnDb3oget6lQnfIoupbt61aT9aOhRkDsY2XRhZRyX1Z/8a5sL74fXmFNm3NRK5A==}
|
|
1424
|
+
engines: {node: '>=20.0.0'}
|
|
1425
|
+
peerDependencies:
|
|
1426
|
+
react: '>=18'
|
|
1427
|
+
react-dom: '>=18'
|
|
1428
|
+
peerDependenciesMeta:
|
|
1429
|
+
react-dom:
|
|
1430
|
+
optional: true
|
|
1431
|
+
|
|
1432
|
+
react-style-singleton@2.2.3:
|
|
1433
|
+
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
|
|
1434
|
+
engines: {node: '>=10'}
|
|
1435
|
+
peerDependencies:
|
|
1436
|
+
'@types/react': '*'
|
|
1437
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1438
|
+
peerDependenciesMeta:
|
|
1439
|
+
'@types/react':
|
|
1440
|
+
optional: true
|
|
1441
|
+
|
|
1442
|
+
react@19.2.6:
|
|
1443
|
+
resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
|
|
1444
|
+
engines: {node: '>=0.10.0'}
|
|
1445
|
+
|
|
1446
|
+
recharts@3.8.0:
|
|
1447
|
+
resolution: {integrity: sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==}
|
|
1448
|
+
engines: {node: '>=18'}
|
|
1449
|
+
peerDependencies:
|
|
1450
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1451
|
+
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1452
|
+
react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1453
|
+
|
|
1454
|
+
redux-thunk@3.1.0:
|
|
1455
|
+
resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
|
|
1456
|
+
peerDependencies:
|
|
1457
|
+
redux: ^5.0.0
|
|
1458
|
+
|
|
1459
|
+
redux@5.0.1:
|
|
1460
|
+
resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
|
|
1461
|
+
|
|
1462
|
+
require-directory@2.1.1:
|
|
1463
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
1464
|
+
engines: {node: '>=0.10.0'}
|
|
1465
|
+
|
|
1466
|
+
require-main-filename@2.0.0:
|
|
1467
|
+
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
|
|
1468
|
+
|
|
1469
|
+
reselect@5.1.1:
|
|
1470
|
+
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
|
|
1471
|
+
|
|
1472
|
+
reselect@5.2.0:
|
|
1473
|
+
resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==}
|
|
1474
|
+
|
|
1475
|
+
rollup@4.60.4:
|
|
1476
|
+
resolution: {integrity: sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==}
|
|
1477
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1478
|
+
hasBin: true
|
|
1479
|
+
|
|
1480
|
+
scheduler@0.27.0:
|
|
1481
|
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
1482
|
+
|
|
1483
|
+
semver@6.3.1:
|
|
1484
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1485
|
+
hasBin: true
|
|
1486
|
+
|
|
1487
|
+
set-blocking@2.0.0:
|
|
1488
|
+
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
|
|
1489
|
+
|
|
1490
|
+
set-cookie-parser@2.7.2:
|
|
1491
|
+
resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
|
|
1492
|
+
|
|
1493
|
+
sonner@2.0.7:
|
|
1494
|
+
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
|
|
1495
|
+
peerDependencies:
|
|
1496
|
+
react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1497
|
+
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1498
|
+
|
|
1499
|
+
source-map-js@1.2.1:
|
|
1500
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1501
|
+
engines: {node: '>=0.10.0'}
|
|
1502
|
+
|
|
1503
|
+
string-width@4.2.3:
|
|
1504
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
1505
|
+
engines: {node: '>=8'}
|
|
1506
|
+
|
|
1507
|
+
strip-ansi@6.0.1:
|
|
1508
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1509
|
+
engines: {node: '>=8'}
|
|
1510
|
+
|
|
1511
|
+
swr@2.4.1:
|
|
1512
|
+
resolution: {integrity: sha512-2CC6CiKQtEwaEeNiqWTAw9PGykW8SR5zZX8MZk6TeAvEAnVS7Visz8WzphqgtQ8v2xz/4Q5K+j+SeMaKXeeQIA==}
|
|
1513
|
+
peerDependencies:
|
|
1514
|
+
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1515
|
+
|
|
1516
|
+
tailwind-merge@2.6.1:
|
|
1517
|
+
resolution: {integrity: sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==}
|
|
1518
|
+
|
|
1519
|
+
tailwindcss@4.3.0:
|
|
1520
|
+
resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==}
|
|
1521
|
+
|
|
1522
|
+
tapable@2.3.3:
|
|
1523
|
+
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
1524
|
+
engines: {node: '>=6'}
|
|
1525
|
+
|
|
1526
|
+
tiny-invariant@1.3.3:
|
|
1527
|
+
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
1528
|
+
|
|
1529
|
+
tinyglobby@0.2.16:
|
|
1530
|
+
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
|
|
1531
|
+
engines: {node: '>=12.0.0'}
|
|
1532
|
+
|
|
1533
|
+
tslib@2.8.1:
|
|
1534
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1535
|
+
|
|
1536
|
+
tw-animate-css@1.4.0:
|
|
1537
|
+
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
1538
|
+
|
|
1539
|
+
typescript@5.9.3:
|
|
1540
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1541
|
+
engines: {node: '>=14.17'}
|
|
1542
|
+
hasBin: true
|
|
1543
|
+
|
|
1544
|
+
undici-types@7.24.6:
|
|
1545
|
+
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
1546
|
+
|
|
1547
|
+
update-browserslist-db@1.2.3:
|
|
1548
|
+
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
1549
|
+
hasBin: true
|
|
1550
|
+
peerDependencies:
|
|
1551
|
+
browserslist: '>= 4.21.0'
|
|
1552
|
+
|
|
1553
|
+
use-callback-ref@1.3.3:
|
|
1554
|
+
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
|
|
1555
|
+
engines: {node: '>=10'}
|
|
1556
|
+
peerDependencies:
|
|
1557
|
+
'@types/react': '*'
|
|
1558
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1559
|
+
peerDependenciesMeta:
|
|
1560
|
+
'@types/react':
|
|
1561
|
+
optional: true
|
|
1562
|
+
|
|
1563
|
+
use-sidecar@1.1.3:
|
|
1564
|
+
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
|
|
1565
|
+
engines: {node: '>=10'}
|
|
1566
|
+
peerDependencies:
|
|
1567
|
+
'@types/react': '*'
|
|
1568
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1569
|
+
peerDependenciesMeta:
|
|
1570
|
+
'@types/react':
|
|
1571
|
+
optional: true
|
|
1572
|
+
|
|
1573
|
+
use-sync-external-store@1.6.0:
|
|
1574
|
+
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
|
|
1575
|
+
peerDependencies:
|
|
1576
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1577
|
+
|
|
1578
|
+
vaul@1.1.2:
|
|
1579
|
+
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
|
|
1580
|
+
peerDependencies:
|
|
1581
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1582
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1583
|
+
|
|
1584
|
+
victory-vendor@37.3.6:
|
|
1585
|
+
resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
|
|
1586
|
+
|
|
1587
|
+
vite@6.4.2:
|
|
1588
|
+
resolution: {integrity: sha512-2N/55r4JDJ4gdrCvGgINMy+HH3iRpNIz8K6SFwVsA+JbQScLiC+clmAxBgwiSPgcG9U15QmvqCGWzMbqda5zGQ==}
|
|
1589
|
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
1590
|
+
hasBin: true
|
|
1591
|
+
peerDependencies:
|
|
1592
|
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
|
1593
|
+
jiti: '>=1.21.0'
|
|
1594
|
+
less: '*'
|
|
1595
|
+
lightningcss: ^1.21.0
|
|
1596
|
+
sass: '*'
|
|
1597
|
+
sass-embedded: '*'
|
|
1598
|
+
stylus: '*'
|
|
1599
|
+
sugarss: '*'
|
|
1600
|
+
terser: ^5.16.0
|
|
1601
|
+
tsx: ^4.8.1
|
|
1602
|
+
yaml: ^2.4.2
|
|
1603
|
+
peerDependenciesMeta:
|
|
1604
|
+
'@types/node':
|
|
1605
|
+
optional: true
|
|
1606
|
+
jiti:
|
|
1607
|
+
optional: true
|
|
1608
|
+
less:
|
|
1609
|
+
optional: true
|
|
1610
|
+
lightningcss:
|
|
1611
|
+
optional: true
|
|
1612
|
+
sass:
|
|
1613
|
+
optional: true
|
|
1614
|
+
sass-embedded:
|
|
1615
|
+
optional: true
|
|
1616
|
+
stylus:
|
|
1617
|
+
optional: true
|
|
1618
|
+
sugarss:
|
|
1619
|
+
optional: true
|
|
1620
|
+
terser:
|
|
1621
|
+
optional: true
|
|
1622
|
+
tsx:
|
|
1623
|
+
optional: true
|
|
1624
|
+
yaml:
|
|
1625
|
+
optional: true
|
|
1626
|
+
|
|
1627
|
+
which-module@2.0.1:
|
|
1628
|
+
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
|
|
1629
|
+
|
|
1630
|
+
wrap-ansi@6.2.0:
|
|
1631
|
+
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
|
|
1632
|
+
engines: {node: '>=8'}
|
|
1633
|
+
|
|
1634
|
+
y18n@4.0.3:
|
|
1635
|
+
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
|
|
1636
|
+
|
|
1637
|
+
yallist@3.1.1:
|
|
1638
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
1639
|
+
|
|
1640
|
+
yargs-parser@18.1.3:
|
|
1641
|
+
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
|
|
1642
|
+
engines: {node: '>=6'}
|
|
1643
|
+
|
|
1644
|
+
yargs@15.4.1:
|
|
1645
|
+
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
|
|
1646
|
+
engines: {node: '>=8'}
|
|
1647
|
+
|
|
1648
|
+
snapshots:
|
|
1649
|
+
|
|
1650
|
+
'@babel/code-frame@7.29.7':
|
|
1651
|
+
dependencies:
|
|
1652
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
1653
|
+
js-tokens: 4.0.0
|
|
1654
|
+
picocolors: 1.1.1
|
|
1655
|
+
|
|
1656
|
+
'@babel/compat-data@7.29.7': {}
|
|
1657
|
+
|
|
1658
|
+
'@babel/core@7.29.7':
|
|
1659
|
+
dependencies:
|
|
1660
|
+
'@babel/code-frame': 7.29.7
|
|
1661
|
+
'@babel/generator': 7.29.7
|
|
1662
|
+
'@babel/helper-compilation-targets': 7.29.7
|
|
1663
|
+
'@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
|
|
1664
|
+
'@babel/helpers': 7.29.7
|
|
1665
|
+
'@babel/parser': 7.29.7
|
|
1666
|
+
'@babel/template': 7.29.7
|
|
1667
|
+
'@babel/traverse': 7.29.7
|
|
1668
|
+
'@babel/types': 7.29.7
|
|
1669
|
+
'@jridgewell/remapping': 2.3.5
|
|
1670
|
+
convert-source-map: 2.0.0
|
|
1671
|
+
debug: 4.4.3
|
|
1672
|
+
gensync: 1.0.0-beta.2
|
|
1673
|
+
json5: 2.2.3
|
|
1674
|
+
semver: 6.3.1
|
|
1675
|
+
transitivePeerDependencies:
|
|
1676
|
+
- supports-color
|
|
1677
|
+
|
|
1678
|
+
'@babel/generator@7.29.7':
|
|
1679
|
+
dependencies:
|
|
1680
|
+
'@babel/parser': 7.29.7
|
|
1681
|
+
'@babel/types': 7.29.7
|
|
1682
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
1683
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1684
|
+
jsesc: 3.1.0
|
|
1685
|
+
|
|
1686
|
+
'@babel/helper-compilation-targets@7.29.7':
|
|
1687
|
+
dependencies:
|
|
1688
|
+
'@babel/compat-data': 7.29.7
|
|
1689
|
+
'@babel/helper-validator-option': 7.29.7
|
|
1690
|
+
browserslist: 4.28.2
|
|
1691
|
+
lru-cache: 5.1.1
|
|
1692
|
+
semver: 6.3.1
|
|
1693
|
+
|
|
1694
|
+
'@babel/helper-globals@7.29.7': {}
|
|
1695
|
+
|
|
1696
|
+
'@babel/helper-module-imports@7.29.7':
|
|
1697
|
+
dependencies:
|
|
1698
|
+
'@babel/traverse': 7.29.7
|
|
1699
|
+
'@babel/types': 7.29.7
|
|
1700
|
+
transitivePeerDependencies:
|
|
1701
|
+
- supports-color
|
|
1702
|
+
|
|
1703
|
+
'@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
|
|
1704
|
+
dependencies:
|
|
1705
|
+
'@babel/core': 7.29.7
|
|
1706
|
+
'@babel/helper-module-imports': 7.29.7
|
|
1707
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
1708
|
+
'@babel/traverse': 7.29.7
|
|
1709
|
+
transitivePeerDependencies:
|
|
1710
|
+
- supports-color
|
|
1711
|
+
|
|
1712
|
+
'@babel/helper-plugin-utils@7.29.7': {}
|
|
1713
|
+
|
|
1714
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
1715
|
+
|
|
1716
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
1717
|
+
|
|
1718
|
+
'@babel/helper-validator-option@7.29.7': {}
|
|
1719
|
+
|
|
1720
|
+
'@babel/helpers@7.29.7':
|
|
1721
|
+
dependencies:
|
|
1722
|
+
'@babel/template': 7.29.7
|
|
1723
|
+
'@babel/types': 7.29.7
|
|
1724
|
+
|
|
1725
|
+
'@babel/parser@7.29.7':
|
|
1726
|
+
dependencies:
|
|
1727
|
+
'@babel/types': 7.29.7
|
|
1728
|
+
|
|
1729
|
+
'@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)':
|
|
1730
|
+
dependencies:
|
|
1731
|
+
'@babel/core': 7.29.7
|
|
1732
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
1733
|
+
|
|
1734
|
+
'@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)':
|
|
1735
|
+
dependencies:
|
|
1736
|
+
'@babel/core': 7.29.7
|
|
1737
|
+
'@babel/helper-plugin-utils': 7.29.7
|
|
1738
|
+
|
|
1739
|
+
'@babel/runtime@7.29.7': {}
|
|
1740
|
+
|
|
1741
|
+
'@babel/template@7.29.7':
|
|
1742
|
+
dependencies:
|
|
1743
|
+
'@babel/code-frame': 7.29.7
|
|
1744
|
+
'@babel/parser': 7.29.7
|
|
1745
|
+
'@babel/types': 7.29.7
|
|
1746
|
+
|
|
1747
|
+
'@babel/traverse@7.29.7':
|
|
1748
|
+
dependencies:
|
|
1749
|
+
'@babel/code-frame': 7.29.7
|
|
1750
|
+
'@babel/generator': 7.29.7
|
|
1751
|
+
'@babel/helper-globals': 7.29.7
|
|
1752
|
+
'@babel/parser': 7.29.7
|
|
1753
|
+
'@babel/template': 7.29.7
|
|
1754
|
+
'@babel/types': 7.29.7
|
|
1755
|
+
debug: 4.4.3
|
|
1756
|
+
transitivePeerDependencies:
|
|
1757
|
+
- supports-color
|
|
1758
|
+
|
|
1759
|
+
'@babel/types@7.29.7':
|
|
1760
|
+
dependencies:
|
|
1761
|
+
'@babel/helper-string-parser': 7.29.7
|
|
1762
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
1763
|
+
|
|
1764
|
+
'@base-ui/react@1.5.0(@date-fns/tz@1.5.0)(@types/react@19.2.15)(date-fns@4.3.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1765
|
+
dependencies:
|
|
1766
|
+
'@babel/runtime': 7.29.7
|
|
1767
|
+
'@base-ui/utils': 0.2.9(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1768
|
+
'@floating-ui/react-dom': 2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1769
|
+
'@floating-ui/utils': 0.2.11
|
|
1770
|
+
react: 19.2.6
|
|
1771
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1772
|
+
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
1773
|
+
optionalDependencies:
|
|
1774
|
+
'@date-fns/tz': 1.5.0
|
|
1775
|
+
'@types/react': 19.2.15
|
|
1776
|
+
date-fns: 4.3.0
|
|
1777
|
+
|
|
1778
|
+
'@base-ui/utils@0.2.9(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1779
|
+
dependencies:
|
|
1780
|
+
'@babel/runtime': 7.29.7
|
|
1781
|
+
'@floating-ui/utils': 0.2.11
|
|
1782
|
+
react: 19.2.6
|
|
1783
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1784
|
+
reselect: 5.2.0
|
|
1785
|
+
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
1786
|
+
optionalDependencies:
|
|
1787
|
+
'@types/react': 19.2.15
|
|
1788
|
+
|
|
1789
|
+
'@date-fns/tz@1.5.0': {}
|
|
1790
|
+
|
|
1791
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
1792
|
+
optional: true
|
|
1793
|
+
|
|
1794
|
+
'@esbuild/android-arm64@0.25.12':
|
|
1795
|
+
optional: true
|
|
1796
|
+
|
|
1797
|
+
'@esbuild/android-arm@0.25.12':
|
|
1798
|
+
optional: true
|
|
1799
|
+
|
|
1800
|
+
'@esbuild/android-x64@0.25.12':
|
|
1801
|
+
optional: true
|
|
1802
|
+
|
|
1803
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
1804
|
+
optional: true
|
|
1805
|
+
|
|
1806
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
1807
|
+
optional: true
|
|
1808
|
+
|
|
1809
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
1810
|
+
optional: true
|
|
1811
|
+
|
|
1812
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
1813
|
+
optional: true
|
|
1814
|
+
|
|
1815
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
1816
|
+
optional: true
|
|
1817
|
+
|
|
1818
|
+
'@esbuild/linux-arm@0.25.12':
|
|
1819
|
+
optional: true
|
|
1820
|
+
|
|
1821
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
1822
|
+
optional: true
|
|
1823
|
+
|
|
1824
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
1825
|
+
optional: true
|
|
1826
|
+
|
|
1827
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
1828
|
+
optional: true
|
|
1829
|
+
|
|
1830
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
1831
|
+
optional: true
|
|
1832
|
+
|
|
1833
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
1834
|
+
optional: true
|
|
1835
|
+
|
|
1836
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
1837
|
+
optional: true
|
|
1838
|
+
|
|
1839
|
+
'@esbuild/linux-x64@0.25.12':
|
|
1840
|
+
optional: true
|
|
1841
|
+
|
|
1842
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
1843
|
+
optional: true
|
|
1844
|
+
|
|
1845
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
1846
|
+
optional: true
|
|
1847
|
+
|
|
1848
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
1849
|
+
optional: true
|
|
1850
|
+
|
|
1851
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
1852
|
+
optional: true
|
|
1853
|
+
|
|
1854
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
1855
|
+
optional: true
|
|
1856
|
+
|
|
1857
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
1858
|
+
optional: true
|
|
1859
|
+
|
|
1860
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
1861
|
+
optional: true
|
|
1862
|
+
|
|
1863
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
1864
|
+
optional: true
|
|
1865
|
+
|
|
1866
|
+
'@esbuild/win32-x64@0.25.12':
|
|
1867
|
+
optional: true
|
|
1868
|
+
|
|
1869
|
+
'@floating-ui/core@1.7.5':
|
|
1870
|
+
dependencies:
|
|
1871
|
+
'@floating-ui/utils': 0.2.11
|
|
1872
|
+
|
|
1873
|
+
'@floating-ui/dom@1.7.6':
|
|
1874
|
+
dependencies:
|
|
1875
|
+
'@floating-ui/core': 1.7.5
|
|
1876
|
+
'@floating-ui/utils': 0.2.11
|
|
1877
|
+
|
|
1878
|
+
'@floating-ui/react-dom@2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1879
|
+
dependencies:
|
|
1880
|
+
'@floating-ui/dom': 1.7.6
|
|
1881
|
+
react: 19.2.6
|
|
1882
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1883
|
+
|
|
1884
|
+
'@floating-ui/utils@0.2.11': {}
|
|
1885
|
+
|
|
1886
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
1887
|
+
dependencies:
|
|
1888
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1889
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1890
|
+
|
|
1891
|
+
'@jridgewell/remapping@2.3.5':
|
|
1892
|
+
dependencies:
|
|
1893
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
1894
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1895
|
+
|
|
1896
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
1897
|
+
|
|
1898
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
1899
|
+
|
|
1900
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
1901
|
+
dependencies:
|
|
1902
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
1903
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1904
|
+
|
|
1905
|
+
'@playwright/test@1.60.0':
|
|
1906
|
+
dependencies:
|
|
1907
|
+
playwright: 1.60.0
|
|
1908
|
+
|
|
1909
|
+
'@radix-ui/primitive@1.1.3': {}
|
|
1910
|
+
|
|
1911
|
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.15)(react@19.2.6)':
|
|
1912
|
+
dependencies:
|
|
1913
|
+
react: 19.2.6
|
|
1914
|
+
optionalDependencies:
|
|
1915
|
+
'@types/react': 19.2.15
|
|
1916
|
+
|
|
1917
|
+
'@radix-ui/react-context@1.1.2(@types/react@19.2.15)(react@19.2.6)':
|
|
1918
|
+
dependencies:
|
|
1919
|
+
react: 19.2.6
|
|
1920
|
+
optionalDependencies:
|
|
1921
|
+
'@types/react': 19.2.15
|
|
1922
|
+
|
|
1923
|
+
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1924
|
+
dependencies:
|
|
1925
|
+
'@radix-ui/primitive': 1.1.3
|
|
1926
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1927
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1928
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1929
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
|
|
1930
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1931
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1932
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1933
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1934
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1935
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
1936
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
|
|
1937
|
+
aria-hidden: 1.2.6
|
|
1938
|
+
react: 19.2.6
|
|
1939
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1940
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
|
|
1941
|
+
optionalDependencies:
|
|
1942
|
+
'@types/react': 19.2.15
|
|
1943
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1944
|
+
|
|
1945
|
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1946
|
+
dependencies:
|
|
1947
|
+
'@radix-ui/primitive': 1.1.3
|
|
1948
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1949
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1950
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1951
|
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1952
|
+
react: 19.2.6
|
|
1953
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1954
|
+
optionalDependencies:
|
|
1955
|
+
'@types/react': 19.2.15
|
|
1956
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1957
|
+
|
|
1958
|
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.15)(react@19.2.6)':
|
|
1959
|
+
dependencies:
|
|
1960
|
+
react: 19.2.6
|
|
1961
|
+
optionalDependencies:
|
|
1962
|
+
'@types/react': 19.2.15
|
|
1963
|
+
|
|
1964
|
+
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1965
|
+
dependencies:
|
|
1966
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1967
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1968
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1969
|
+
react: 19.2.6
|
|
1970
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1971
|
+
optionalDependencies:
|
|
1972
|
+
'@types/react': 19.2.15
|
|
1973
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1974
|
+
|
|
1975
|
+
'@radix-ui/react-id@1.1.1(@types/react@19.2.15)(react@19.2.6)':
|
|
1976
|
+
dependencies:
|
|
1977
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1978
|
+
react: 19.2.6
|
|
1979
|
+
optionalDependencies:
|
|
1980
|
+
'@types/react': 19.2.15
|
|
1981
|
+
|
|
1982
|
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1983
|
+
dependencies:
|
|
1984
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1985
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1986
|
+
react: 19.2.6
|
|
1987
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1988
|
+
optionalDependencies:
|
|
1989
|
+
'@types/react': 19.2.15
|
|
1990
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1991
|
+
|
|
1992
|
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1993
|
+
dependencies:
|
|
1994
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1995
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1996
|
+
react: 19.2.6
|
|
1997
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
1998
|
+
optionalDependencies:
|
|
1999
|
+
'@types/react': 19.2.15
|
|
2000
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
2001
|
+
|
|
2002
|
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
2003
|
+
dependencies:
|
|
2004
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2005
|
+
react: 19.2.6
|
|
2006
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2007
|
+
optionalDependencies:
|
|
2008
|
+
'@types/react': 19.2.15
|
|
2009
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
2010
|
+
|
|
2011
|
+
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
2012
|
+
dependencies:
|
|
2013
|
+
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.15)(react@19.2.6)
|
|
2014
|
+
react: 19.2.6
|
|
2015
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2016
|
+
optionalDependencies:
|
|
2017
|
+
'@types/react': 19.2.15
|
|
2018
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
2019
|
+
|
|
2020
|
+
'@radix-ui/react-slot@1.2.3(@types/react@19.2.15)(react@19.2.6)':
|
|
2021
|
+
dependencies:
|
|
2022
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2023
|
+
react: 19.2.6
|
|
2024
|
+
optionalDependencies:
|
|
2025
|
+
'@types/react': 19.2.15
|
|
2026
|
+
|
|
2027
|
+
'@radix-ui/react-slot@1.2.4(@types/react@19.2.15)(react@19.2.6)':
|
|
2028
|
+
dependencies:
|
|
2029
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2030
|
+
react: 19.2.6
|
|
2031
|
+
optionalDependencies:
|
|
2032
|
+
'@types/react': 19.2.15
|
|
2033
|
+
|
|
2034
|
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.15)(react@19.2.6)':
|
|
2035
|
+
dependencies:
|
|
2036
|
+
react: 19.2.6
|
|
2037
|
+
optionalDependencies:
|
|
2038
|
+
'@types/react': 19.2.15
|
|
2039
|
+
|
|
2040
|
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.15)(react@19.2.6)':
|
|
2041
|
+
dependencies:
|
|
2042
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.15)(react@19.2.6)
|
|
2043
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2044
|
+
react: 19.2.6
|
|
2045
|
+
optionalDependencies:
|
|
2046
|
+
'@types/react': 19.2.15
|
|
2047
|
+
|
|
2048
|
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.15)(react@19.2.6)':
|
|
2049
|
+
dependencies:
|
|
2050
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2051
|
+
react: 19.2.6
|
|
2052
|
+
optionalDependencies:
|
|
2053
|
+
'@types/react': 19.2.15
|
|
2054
|
+
|
|
2055
|
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.15)(react@19.2.6)':
|
|
2056
|
+
dependencies:
|
|
2057
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2058
|
+
react: 19.2.6
|
|
2059
|
+
optionalDependencies:
|
|
2060
|
+
'@types/react': 19.2.15
|
|
2061
|
+
|
|
2062
|
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.15)(react@19.2.6)':
|
|
2063
|
+
dependencies:
|
|
2064
|
+
react: 19.2.6
|
|
2065
|
+
optionalDependencies:
|
|
2066
|
+
'@types/react': 19.2.15
|
|
2067
|
+
|
|
2068
|
+
'@reduxjs/toolkit@2.12.0(react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1))(react@19.2.6)':
|
|
2069
|
+
dependencies:
|
|
2070
|
+
'@standard-schema/spec': 1.1.0
|
|
2071
|
+
'@standard-schema/utils': 0.3.0
|
|
2072
|
+
immer: 11.1.8
|
|
2073
|
+
redux: 5.0.1
|
|
2074
|
+
redux-thunk: 3.1.0(redux@5.0.1)
|
|
2075
|
+
reselect: 5.2.0
|
|
2076
|
+
optionalDependencies:
|
|
2077
|
+
react: 19.2.6
|
|
2078
|
+
react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1)
|
|
2079
|
+
|
|
2080
|
+
'@rolldown/pluginutils@1.0.0-beta.27': {}
|
|
2081
|
+
|
|
2082
|
+
'@rollup/rollup-android-arm-eabi@4.60.4':
|
|
2083
|
+
optional: true
|
|
2084
|
+
|
|
2085
|
+
'@rollup/rollup-android-arm64@4.60.4':
|
|
2086
|
+
optional: true
|
|
2087
|
+
|
|
2088
|
+
'@rollup/rollup-darwin-arm64@4.60.4':
|
|
2089
|
+
optional: true
|
|
2090
|
+
|
|
2091
|
+
'@rollup/rollup-darwin-x64@4.60.4':
|
|
2092
|
+
optional: true
|
|
2093
|
+
|
|
2094
|
+
'@rollup/rollup-freebsd-arm64@4.60.4':
|
|
2095
|
+
optional: true
|
|
2096
|
+
|
|
2097
|
+
'@rollup/rollup-freebsd-x64@4.60.4':
|
|
2098
|
+
optional: true
|
|
2099
|
+
|
|
2100
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.60.4':
|
|
2101
|
+
optional: true
|
|
2102
|
+
|
|
2103
|
+
'@rollup/rollup-linux-arm-musleabihf@4.60.4':
|
|
2104
|
+
optional: true
|
|
2105
|
+
|
|
2106
|
+
'@rollup/rollup-linux-arm64-gnu@4.60.4':
|
|
2107
|
+
optional: true
|
|
2108
|
+
|
|
2109
|
+
'@rollup/rollup-linux-arm64-musl@4.60.4':
|
|
2110
|
+
optional: true
|
|
2111
|
+
|
|
2112
|
+
'@rollup/rollup-linux-loong64-gnu@4.60.4':
|
|
2113
|
+
optional: true
|
|
2114
|
+
|
|
2115
|
+
'@rollup/rollup-linux-loong64-musl@4.60.4':
|
|
2116
|
+
optional: true
|
|
2117
|
+
|
|
2118
|
+
'@rollup/rollup-linux-ppc64-gnu@4.60.4':
|
|
2119
|
+
optional: true
|
|
2120
|
+
|
|
2121
|
+
'@rollup/rollup-linux-ppc64-musl@4.60.4':
|
|
2122
|
+
optional: true
|
|
2123
|
+
|
|
2124
|
+
'@rollup/rollup-linux-riscv64-gnu@4.60.4':
|
|
2125
|
+
optional: true
|
|
2126
|
+
|
|
2127
|
+
'@rollup/rollup-linux-riscv64-musl@4.60.4':
|
|
2128
|
+
optional: true
|
|
2129
|
+
|
|
2130
|
+
'@rollup/rollup-linux-s390x-gnu@4.60.4':
|
|
2131
|
+
optional: true
|
|
2132
|
+
|
|
2133
|
+
'@rollup/rollup-linux-x64-gnu@4.60.4':
|
|
2134
|
+
optional: true
|
|
2135
|
+
|
|
2136
|
+
'@rollup/rollup-linux-x64-musl@4.60.4':
|
|
2137
|
+
optional: true
|
|
2138
|
+
|
|
2139
|
+
'@rollup/rollup-openbsd-x64@4.60.4':
|
|
2140
|
+
optional: true
|
|
2141
|
+
|
|
2142
|
+
'@rollup/rollup-openharmony-arm64@4.60.4':
|
|
2143
|
+
optional: true
|
|
2144
|
+
|
|
2145
|
+
'@rollup/rollup-win32-arm64-msvc@4.60.4':
|
|
2146
|
+
optional: true
|
|
2147
|
+
|
|
2148
|
+
'@rollup/rollup-win32-ia32-msvc@4.60.4':
|
|
2149
|
+
optional: true
|
|
2150
|
+
|
|
2151
|
+
'@rollup/rollup-win32-x64-gnu@4.60.4':
|
|
2152
|
+
optional: true
|
|
2153
|
+
|
|
2154
|
+
'@rollup/rollup-win32-x64-msvc@4.60.4':
|
|
2155
|
+
optional: true
|
|
2156
|
+
|
|
2157
|
+
'@standard-schema/spec@1.1.0': {}
|
|
2158
|
+
|
|
2159
|
+
'@standard-schema/utils@0.3.0': {}
|
|
2160
|
+
|
|
2161
|
+
'@tailwindcss/node@4.3.0':
|
|
2162
|
+
dependencies:
|
|
2163
|
+
'@jridgewell/remapping': 2.3.5
|
|
2164
|
+
enhanced-resolve: 5.22.0
|
|
2165
|
+
jiti: 2.7.0
|
|
2166
|
+
lightningcss: 1.32.0
|
|
2167
|
+
magic-string: 0.30.21
|
|
2168
|
+
source-map-js: 1.2.1
|
|
2169
|
+
tailwindcss: 4.3.0
|
|
2170
|
+
|
|
2171
|
+
'@tailwindcss/oxide-android-arm64@4.3.0':
|
|
2172
|
+
optional: true
|
|
2173
|
+
|
|
2174
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.0':
|
|
2175
|
+
optional: true
|
|
2176
|
+
|
|
2177
|
+
'@tailwindcss/oxide-darwin-x64@4.3.0':
|
|
2178
|
+
optional: true
|
|
2179
|
+
|
|
2180
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.0':
|
|
2181
|
+
optional: true
|
|
2182
|
+
|
|
2183
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
|
|
2184
|
+
optional: true
|
|
2185
|
+
|
|
2186
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
|
|
2187
|
+
optional: true
|
|
2188
|
+
|
|
2189
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
2190
|
+
optional: true
|
|
2191
|
+
|
|
2192
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
2193
|
+
optional: true
|
|
2194
|
+
|
|
2195
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
2196
|
+
optional: true
|
|
2197
|
+
|
|
2198
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
2199
|
+
optional: true
|
|
2200
|
+
|
|
2201
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
|
|
2202
|
+
optional: true
|
|
2203
|
+
|
|
2204
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.0':
|
|
2205
|
+
optional: true
|
|
2206
|
+
|
|
2207
|
+
'@tailwindcss/oxide@4.3.0':
|
|
2208
|
+
optionalDependencies:
|
|
2209
|
+
'@tailwindcss/oxide-android-arm64': 4.3.0
|
|
2210
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.0
|
|
2211
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.0
|
|
2212
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.0
|
|
2213
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0
|
|
2214
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.0
|
|
2215
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.0
|
|
2216
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.0
|
|
2217
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.0
|
|
2218
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.0
|
|
2219
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.0
|
|
2220
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.0
|
|
2221
|
+
|
|
2222
|
+
'@tailwindcss/vite@4.3.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))':
|
|
2223
|
+
dependencies:
|
|
2224
|
+
'@tailwindcss/node': 4.3.0
|
|
2225
|
+
'@tailwindcss/oxide': 4.3.0
|
|
2226
|
+
tailwindcss: 4.3.0
|
|
2227
|
+
vite: 6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0)
|
|
2228
|
+
|
|
2229
|
+
'@types/babel__core@7.20.5':
|
|
2230
|
+
dependencies:
|
|
2231
|
+
'@babel/parser': 7.29.7
|
|
2232
|
+
'@babel/types': 7.29.7
|
|
2233
|
+
'@types/babel__generator': 7.27.0
|
|
2234
|
+
'@types/babel__template': 7.4.4
|
|
2235
|
+
'@types/babel__traverse': 7.28.0
|
|
2236
|
+
|
|
2237
|
+
'@types/babel__generator@7.27.0':
|
|
2238
|
+
dependencies:
|
|
2239
|
+
'@babel/types': 7.29.7
|
|
2240
|
+
|
|
2241
|
+
'@types/babel__template@7.4.4':
|
|
2242
|
+
dependencies:
|
|
2243
|
+
'@babel/parser': 7.29.7
|
|
2244
|
+
'@babel/types': 7.29.7
|
|
2245
|
+
|
|
2246
|
+
'@types/babel__traverse@7.28.0':
|
|
2247
|
+
dependencies:
|
|
2248
|
+
'@babel/types': 7.29.7
|
|
2249
|
+
|
|
2250
|
+
'@types/d3-array@3.2.2': {}
|
|
2251
|
+
|
|
2252
|
+
'@types/d3-color@3.1.3': {}
|
|
2253
|
+
|
|
2254
|
+
'@types/d3-drag@3.0.7':
|
|
2255
|
+
dependencies:
|
|
2256
|
+
'@types/d3-selection': 3.0.11
|
|
2257
|
+
|
|
2258
|
+
'@types/d3-ease@3.0.2': {}
|
|
2259
|
+
|
|
2260
|
+
'@types/d3-force@3.0.10': {}
|
|
2261
|
+
|
|
2262
|
+
'@types/d3-interpolate@3.0.4':
|
|
2263
|
+
dependencies:
|
|
2264
|
+
'@types/d3-color': 3.1.3
|
|
2265
|
+
|
|
2266
|
+
'@types/d3-path@3.1.1': {}
|
|
2267
|
+
|
|
2268
|
+
'@types/d3-scale@4.0.9':
|
|
2269
|
+
dependencies:
|
|
2270
|
+
'@types/d3-time': 3.0.4
|
|
2271
|
+
|
|
2272
|
+
'@types/d3-selection@3.0.11': {}
|
|
2273
|
+
|
|
2274
|
+
'@types/d3-shape@3.1.8':
|
|
2275
|
+
dependencies:
|
|
2276
|
+
'@types/d3-path': 3.1.1
|
|
2277
|
+
|
|
2278
|
+
'@types/d3-time@3.0.4': {}
|
|
2279
|
+
|
|
2280
|
+
'@types/d3-timer@3.0.2': {}
|
|
2281
|
+
|
|
2282
|
+
'@types/estree@1.0.8': {}
|
|
2283
|
+
|
|
2284
|
+
'@types/node@25.9.1':
|
|
2285
|
+
dependencies:
|
|
2286
|
+
undici-types: 7.24.6
|
|
2287
|
+
|
|
2288
|
+
'@types/qrcode@1.5.6':
|
|
2289
|
+
dependencies:
|
|
2290
|
+
'@types/node': 25.9.1
|
|
2291
|
+
|
|
2292
|
+
'@types/react-dom@19.2.3(@types/react@19.2.15)':
|
|
2293
|
+
dependencies:
|
|
2294
|
+
'@types/react': 19.2.15
|
|
2295
|
+
|
|
2296
|
+
'@types/react@19.2.15':
|
|
2297
|
+
dependencies:
|
|
2298
|
+
csstype: 3.2.3
|
|
2299
|
+
|
|
2300
|
+
'@types/use-sync-external-store@0.0.6': {}
|
|
2301
|
+
|
|
2302
|
+
'@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))':
|
|
2303
|
+
dependencies:
|
|
2304
|
+
'@babel/core': 7.29.7
|
|
2305
|
+
'@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7)
|
|
2306
|
+
'@babel/plugin-transform-react-jsx-source': 7.29.7(@babel/core@7.29.7)
|
|
2307
|
+
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
2308
|
+
'@types/babel__core': 7.20.5
|
|
2309
|
+
react-refresh: 0.17.0
|
|
2310
|
+
vite: 6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0)
|
|
2311
|
+
transitivePeerDependencies:
|
|
2312
|
+
- supports-color
|
|
2313
|
+
|
|
2314
|
+
ansi-regex@5.0.1: {}
|
|
2315
|
+
|
|
2316
|
+
ansi-styles@4.3.0:
|
|
2317
|
+
dependencies:
|
|
2318
|
+
color-convert: 2.0.1
|
|
2319
|
+
|
|
2320
|
+
aria-hidden@1.2.6:
|
|
2321
|
+
dependencies:
|
|
2322
|
+
tslib: 2.8.1
|
|
2323
|
+
|
|
2324
|
+
baseline-browser-mapping@2.10.32: {}
|
|
2325
|
+
|
|
2326
|
+
browserslist@4.28.2:
|
|
2327
|
+
dependencies:
|
|
2328
|
+
baseline-browser-mapping: 2.10.32
|
|
2329
|
+
caniuse-lite: 1.0.30001793
|
|
2330
|
+
electron-to-chromium: 1.5.363
|
|
2331
|
+
node-releases: 2.0.46
|
|
2332
|
+
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
2333
|
+
|
|
2334
|
+
camelcase@5.3.1: {}
|
|
2335
|
+
|
|
2336
|
+
caniuse-lite@1.0.30001793: {}
|
|
2337
|
+
|
|
2338
|
+
class-variance-authority@0.7.1:
|
|
2339
|
+
dependencies:
|
|
2340
|
+
clsx: 2.1.1
|
|
2341
|
+
|
|
2342
|
+
cliui@6.0.0:
|
|
2343
|
+
dependencies:
|
|
2344
|
+
string-width: 4.2.3
|
|
2345
|
+
strip-ansi: 6.0.1
|
|
2346
|
+
wrap-ansi: 6.2.0
|
|
2347
|
+
|
|
2348
|
+
clsx@2.1.1: {}
|
|
2349
|
+
|
|
2350
|
+
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2351
|
+
dependencies:
|
|
2352
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2353
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2354
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2355
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2356
|
+
react: 19.2.6
|
|
2357
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2358
|
+
transitivePeerDependencies:
|
|
2359
|
+
- '@types/react'
|
|
2360
|
+
- '@types/react-dom'
|
|
2361
|
+
|
|
2362
|
+
color-convert@2.0.1:
|
|
2363
|
+
dependencies:
|
|
2364
|
+
color-name: 1.1.4
|
|
2365
|
+
|
|
2366
|
+
color-name@1.1.4: {}
|
|
2367
|
+
|
|
2368
|
+
convert-source-map@2.0.0: {}
|
|
2369
|
+
|
|
2370
|
+
cookie@1.1.1: {}
|
|
2371
|
+
|
|
2372
|
+
csstype@3.2.3: {}
|
|
2373
|
+
|
|
2374
|
+
d3-array@3.2.4:
|
|
2375
|
+
dependencies:
|
|
2376
|
+
internmap: 2.0.3
|
|
2377
|
+
|
|
2378
|
+
d3-color@3.1.0: {}
|
|
2379
|
+
|
|
2380
|
+
d3-dispatch@3.0.1: {}
|
|
2381
|
+
|
|
2382
|
+
d3-drag@3.0.0:
|
|
2383
|
+
dependencies:
|
|
2384
|
+
d3-dispatch: 3.0.1
|
|
2385
|
+
d3-selection: 3.0.0
|
|
2386
|
+
|
|
2387
|
+
d3-ease@3.0.1: {}
|
|
2388
|
+
|
|
2389
|
+
d3-force@3.0.0:
|
|
2390
|
+
dependencies:
|
|
2391
|
+
d3-dispatch: 3.0.1
|
|
2392
|
+
d3-quadtree: 3.0.1
|
|
2393
|
+
d3-timer: 3.0.1
|
|
2394
|
+
|
|
2395
|
+
d3-format@3.1.2: {}
|
|
2396
|
+
|
|
2397
|
+
d3-interpolate@3.0.1:
|
|
2398
|
+
dependencies:
|
|
2399
|
+
d3-color: 3.1.0
|
|
2400
|
+
|
|
2401
|
+
d3-path@3.1.0: {}
|
|
2402
|
+
|
|
2403
|
+
d3-quadtree@3.0.1: {}
|
|
2404
|
+
|
|
2405
|
+
d3-scale@4.0.2:
|
|
2406
|
+
dependencies:
|
|
2407
|
+
d3-array: 3.2.4
|
|
2408
|
+
d3-format: 3.1.2
|
|
2409
|
+
d3-interpolate: 3.0.1
|
|
2410
|
+
d3-time: 3.1.0
|
|
2411
|
+
d3-time-format: 4.1.0
|
|
2412
|
+
|
|
2413
|
+
d3-selection@3.0.0: {}
|
|
2414
|
+
|
|
2415
|
+
d3-shape@3.2.0:
|
|
2416
|
+
dependencies:
|
|
2417
|
+
d3-path: 3.1.0
|
|
2418
|
+
|
|
2419
|
+
d3-time-format@4.1.0:
|
|
2420
|
+
dependencies:
|
|
2421
|
+
d3-time: 3.1.0
|
|
2422
|
+
|
|
2423
|
+
d3-time@3.1.0:
|
|
2424
|
+
dependencies:
|
|
2425
|
+
d3-array: 3.2.4
|
|
2426
|
+
|
|
2427
|
+
d3-timer@3.0.1: {}
|
|
2428
|
+
|
|
2429
|
+
date-fns@4.3.0: {}
|
|
2430
|
+
|
|
2431
|
+
debug@4.4.3:
|
|
2432
|
+
dependencies:
|
|
2433
|
+
ms: 2.1.3
|
|
2434
|
+
|
|
2435
|
+
decamelize@1.2.0: {}
|
|
2436
|
+
|
|
2437
|
+
decimal.js-light@2.5.1: {}
|
|
2438
|
+
|
|
2439
|
+
dequal@2.0.3: {}
|
|
2440
|
+
|
|
2441
|
+
detect-libc@2.1.2: {}
|
|
2442
|
+
|
|
2443
|
+
detect-node-es@1.1.0: {}
|
|
2444
|
+
|
|
2445
|
+
dijkstrajs@1.0.3: {}
|
|
2446
|
+
|
|
2447
|
+
electron-to-chromium@1.5.363: {}
|
|
2448
|
+
|
|
2449
|
+
embla-carousel-react@8.6.0(react@19.2.6):
|
|
2450
|
+
dependencies:
|
|
2451
|
+
embla-carousel: 8.6.0
|
|
2452
|
+
embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0)
|
|
2453
|
+
react: 19.2.6
|
|
2454
|
+
|
|
2455
|
+
embla-carousel-reactive-utils@8.6.0(embla-carousel@8.6.0):
|
|
2456
|
+
dependencies:
|
|
2457
|
+
embla-carousel: 8.6.0
|
|
2458
|
+
|
|
2459
|
+
embla-carousel@8.6.0: {}
|
|
2460
|
+
|
|
2461
|
+
emoji-regex@8.0.0: {}
|
|
2462
|
+
|
|
2463
|
+
enhanced-resolve@5.22.0:
|
|
2464
|
+
dependencies:
|
|
2465
|
+
graceful-fs: 4.2.11
|
|
2466
|
+
tapable: 2.3.3
|
|
2467
|
+
|
|
2468
|
+
es-toolkit@1.47.0: {}
|
|
2469
|
+
|
|
2470
|
+
esbuild@0.25.12:
|
|
2471
|
+
optionalDependencies:
|
|
2472
|
+
'@esbuild/aix-ppc64': 0.25.12
|
|
2473
|
+
'@esbuild/android-arm': 0.25.12
|
|
2474
|
+
'@esbuild/android-arm64': 0.25.12
|
|
2475
|
+
'@esbuild/android-x64': 0.25.12
|
|
2476
|
+
'@esbuild/darwin-arm64': 0.25.12
|
|
2477
|
+
'@esbuild/darwin-x64': 0.25.12
|
|
2478
|
+
'@esbuild/freebsd-arm64': 0.25.12
|
|
2479
|
+
'@esbuild/freebsd-x64': 0.25.12
|
|
2480
|
+
'@esbuild/linux-arm': 0.25.12
|
|
2481
|
+
'@esbuild/linux-arm64': 0.25.12
|
|
2482
|
+
'@esbuild/linux-ia32': 0.25.12
|
|
2483
|
+
'@esbuild/linux-loong64': 0.25.12
|
|
2484
|
+
'@esbuild/linux-mips64el': 0.25.12
|
|
2485
|
+
'@esbuild/linux-ppc64': 0.25.12
|
|
2486
|
+
'@esbuild/linux-riscv64': 0.25.12
|
|
2487
|
+
'@esbuild/linux-s390x': 0.25.12
|
|
2488
|
+
'@esbuild/linux-x64': 0.25.12
|
|
2489
|
+
'@esbuild/netbsd-arm64': 0.25.12
|
|
2490
|
+
'@esbuild/netbsd-x64': 0.25.12
|
|
2491
|
+
'@esbuild/openbsd-arm64': 0.25.12
|
|
2492
|
+
'@esbuild/openbsd-x64': 0.25.12
|
|
2493
|
+
'@esbuild/openharmony-arm64': 0.25.12
|
|
2494
|
+
'@esbuild/sunos-x64': 0.25.12
|
|
2495
|
+
'@esbuild/win32-arm64': 0.25.12
|
|
2496
|
+
'@esbuild/win32-ia32': 0.25.12
|
|
2497
|
+
'@esbuild/win32-x64': 0.25.12
|
|
2498
|
+
|
|
2499
|
+
escalade@3.2.0: {}
|
|
2500
|
+
|
|
2501
|
+
eventemitter3@5.0.4: {}
|
|
2502
|
+
|
|
2503
|
+
fdir@6.5.0(picomatch@4.0.4):
|
|
2504
|
+
optionalDependencies:
|
|
2505
|
+
picomatch: 4.0.4
|
|
2506
|
+
|
|
2507
|
+
find-up@4.1.0:
|
|
2508
|
+
dependencies:
|
|
2509
|
+
locate-path: 5.0.0
|
|
2510
|
+
path-exists: 4.0.0
|
|
2511
|
+
|
|
2512
|
+
fsevents@2.3.2:
|
|
2513
|
+
optional: true
|
|
2514
|
+
|
|
2515
|
+
fsevents@2.3.3:
|
|
2516
|
+
optional: true
|
|
2517
|
+
|
|
2518
|
+
gensync@1.0.0-beta.2: {}
|
|
2519
|
+
|
|
2520
|
+
get-caller-file@2.0.5: {}
|
|
2521
|
+
|
|
2522
|
+
get-nonce@1.0.1: {}
|
|
2523
|
+
|
|
2524
|
+
graceful-fs@4.2.11: {}
|
|
2525
|
+
|
|
2526
|
+
immer@10.2.0: {}
|
|
2527
|
+
|
|
2528
|
+
immer@11.1.8: {}
|
|
2529
|
+
|
|
2530
|
+
input-otp@1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2531
|
+
dependencies:
|
|
2532
|
+
react: 19.2.6
|
|
2533
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2534
|
+
|
|
2535
|
+
internmap@2.0.3: {}
|
|
2536
|
+
|
|
2537
|
+
is-fullwidth-code-point@3.0.0: {}
|
|
2538
|
+
|
|
2539
|
+
jiti@2.7.0: {}
|
|
2540
|
+
|
|
2541
|
+
js-tokens@4.0.0: {}
|
|
2542
|
+
|
|
2543
|
+
jsesc@3.1.0: {}
|
|
2544
|
+
|
|
2545
|
+
json5@2.2.3: {}
|
|
2546
|
+
|
|
2547
|
+
lightningcss-android-arm64@1.32.0:
|
|
2548
|
+
optional: true
|
|
2549
|
+
|
|
2550
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
2551
|
+
optional: true
|
|
2552
|
+
|
|
2553
|
+
lightningcss-darwin-x64@1.32.0:
|
|
2554
|
+
optional: true
|
|
2555
|
+
|
|
2556
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
2557
|
+
optional: true
|
|
2558
|
+
|
|
2559
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
2560
|
+
optional: true
|
|
2561
|
+
|
|
2562
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
2563
|
+
optional: true
|
|
2564
|
+
|
|
2565
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
2566
|
+
optional: true
|
|
2567
|
+
|
|
2568
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
2569
|
+
optional: true
|
|
2570
|
+
|
|
2571
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
2572
|
+
optional: true
|
|
2573
|
+
|
|
2574
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
2575
|
+
optional: true
|
|
2576
|
+
|
|
2577
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
2578
|
+
optional: true
|
|
2579
|
+
|
|
2580
|
+
lightningcss@1.32.0:
|
|
2581
|
+
dependencies:
|
|
2582
|
+
detect-libc: 2.1.2
|
|
2583
|
+
optionalDependencies:
|
|
2584
|
+
lightningcss-android-arm64: 1.32.0
|
|
2585
|
+
lightningcss-darwin-arm64: 1.32.0
|
|
2586
|
+
lightningcss-darwin-x64: 1.32.0
|
|
2587
|
+
lightningcss-freebsd-x64: 1.32.0
|
|
2588
|
+
lightningcss-linux-arm-gnueabihf: 1.32.0
|
|
2589
|
+
lightningcss-linux-arm64-gnu: 1.32.0
|
|
2590
|
+
lightningcss-linux-arm64-musl: 1.32.0
|
|
2591
|
+
lightningcss-linux-x64-gnu: 1.32.0
|
|
2592
|
+
lightningcss-linux-x64-musl: 1.32.0
|
|
2593
|
+
lightningcss-win32-arm64-msvc: 1.32.0
|
|
2594
|
+
lightningcss-win32-x64-msvc: 1.32.0
|
|
2595
|
+
|
|
2596
|
+
locate-path@5.0.0:
|
|
2597
|
+
dependencies:
|
|
2598
|
+
p-locate: 4.1.0
|
|
2599
|
+
|
|
2600
|
+
lru-cache@5.1.1:
|
|
2601
|
+
dependencies:
|
|
2602
|
+
yallist: 3.1.1
|
|
2603
|
+
|
|
2604
|
+
lucide-react@0.469.0(react@19.2.6):
|
|
2605
|
+
dependencies:
|
|
2606
|
+
react: 19.2.6
|
|
2607
|
+
|
|
2608
|
+
magic-string@0.30.21:
|
|
2609
|
+
dependencies:
|
|
2610
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2611
|
+
|
|
2612
|
+
ms@2.1.3: {}
|
|
2613
|
+
|
|
2614
|
+
nanoid@3.3.12: {}
|
|
2615
|
+
|
|
2616
|
+
next-themes@0.4.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2617
|
+
dependencies:
|
|
2618
|
+
react: 19.2.6
|
|
2619
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2620
|
+
|
|
2621
|
+
node-releases@2.0.46: {}
|
|
2622
|
+
|
|
2623
|
+
p-limit@2.3.0:
|
|
2624
|
+
dependencies:
|
|
2625
|
+
p-try: 2.2.0
|
|
2626
|
+
|
|
2627
|
+
p-locate@4.1.0:
|
|
2628
|
+
dependencies:
|
|
2629
|
+
p-limit: 2.3.0
|
|
2630
|
+
|
|
2631
|
+
p-try@2.2.0: {}
|
|
2632
|
+
|
|
2633
|
+
path-exists@4.0.0: {}
|
|
2634
|
+
|
|
2635
|
+
picocolors@1.1.1: {}
|
|
2636
|
+
|
|
2637
|
+
picomatch@4.0.4: {}
|
|
2638
|
+
|
|
2639
|
+
playwright-core@1.60.0: {}
|
|
2640
|
+
|
|
2641
|
+
playwright@1.60.0:
|
|
2642
|
+
dependencies:
|
|
2643
|
+
playwright-core: 1.60.0
|
|
2644
|
+
optionalDependencies:
|
|
2645
|
+
fsevents: 2.3.2
|
|
2646
|
+
|
|
2647
|
+
pngjs@5.0.0: {}
|
|
2648
|
+
|
|
2649
|
+
postcss@8.5.15:
|
|
2650
|
+
dependencies:
|
|
2651
|
+
nanoid: 3.3.12
|
|
2652
|
+
picocolors: 1.1.1
|
|
2653
|
+
source-map-js: 1.2.1
|
|
2654
|
+
|
|
2655
|
+
qrcode@1.5.4:
|
|
2656
|
+
dependencies:
|
|
2657
|
+
dijkstrajs: 1.0.3
|
|
2658
|
+
pngjs: 5.0.0
|
|
2659
|
+
yargs: 15.4.1
|
|
2660
|
+
|
|
2661
|
+
react-day-picker@10.0.1(@types/react@19.2.15)(react@19.2.6):
|
|
2662
|
+
dependencies:
|
|
2663
|
+
'@date-fns/tz': 1.5.0
|
|
2664
|
+
date-fns: 4.3.0
|
|
2665
|
+
react: 19.2.6
|
|
2666
|
+
optionalDependencies:
|
|
2667
|
+
'@types/react': 19.2.15
|
|
2668
|
+
|
|
2669
|
+
react-dom@19.2.6(react@19.2.6):
|
|
2670
|
+
dependencies:
|
|
2671
|
+
react: 19.2.6
|
|
2672
|
+
scheduler: 0.27.0
|
|
2673
|
+
|
|
2674
|
+
react-is@19.2.6: {}
|
|
2675
|
+
|
|
2676
|
+
react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1):
|
|
2677
|
+
dependencies:
|
|
2678
|
+
'@types/use-sync-external-store': 0.0.6
|
|
2679
|
+
react: 19.2.6
|
|
2680
|
+
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
2681
|
+
optionalDependencies:
|
|
2682
|
+
'@types/react': 19.2.15
|
|
2683
|
+
redux: 5.0.1
|
|
2684
|
+
|
|
2685
|
+
react-refresh@0.17.0: {}
|
|
2686
|
+
|
|
2687
|
+
react-remove-scroll-bar@2.3.8(@types/react@19.2.15)(react@19.2.6):
|
|
2688
|
+
dependencies:
|
|
2689
|
+
react: 19.2.6
|
|
2690
|
+
react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2691
|
+
tslib: 2.8.1
|
|
2692
|
+
optionalDependencies:
|
|
2693
|
+
'@types/react': 19.2.15
|
|
2694
|
+
|
|
2695
|
+
react-remove-scroll@2.7.2(@types/react@19.2.15)(react@19.2.6):
|
|
2696
|
+
dependencies:
|
|
2697
|
+
react: 19.2.6
|
|
2698
|
+
react-remove-scroll-bar: 2.3.8(@types/react@19.2.15)(react@19.2.6)
|
|
2699
|
+
react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2700
|
+
tslib: 2.8.1
|
|
2701
|
+
use-callback-ref: 1.3.3(@types/react@19.2.15)(react@19.2.6)
|
|
2702
|
+
use-sidecar: 1.1.3(@types/react@19.2.15)(react@19.2.6)
|
|
2703
|
+
optionalDependencies:
|
|
2704
|
+
'@types/react': 19.2.15
|
|
2705
|
+
|
|
2706
|
+
react-resizable-panels@4.11.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2707
|
+
dependencies:
|
|
2708
|
+
react: 19.2.6
|
|
2709
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2710
|
+
|
|
2711
|
+
react-router-dom@7.15.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2712
|
+
dependencies:
|
|
2713
|
+
react: 19.2.6
|
|
2714
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2715
|
+
react-router: 7.15.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2716
|
+
|
|
2717
|
+
react-router@7.15.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2718
|
+
dependencies:
|
|
2719
|
+
cookie: 1.1.1
|
|
2720
|
+
react: 19.2.6
|
|
2721
|
+
set-cookie-parser: 2.7.2
|
|
2722
|
+
optionalDependencies:
|
|
2723
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2724
|
+
|
|
2725
|
+
react-style-singleton@2.2.3(@types/react@19.2.15)(react@19.2.6):
|
|
2726
|
+
dependencies:
|
|
2727
|
+
get-nonce: 1.0.1
|
|
2728
|
+
react: 19.2.6
|
|
2729
|
+
tslib: 2.8.1
|
|
2730
|
+
optionalDependencies:
|
|
2731
|
+
'@types/react': 19.2.15
|
|
2732
|
+
|
|
2733
|
+
react@19.2.6: {}
|
|
2734
|
+
|
|
2735
|
+
recharts@3.8.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react-is@19.2.6)(react@19.2.6)(redux@5.0.1):
|
|
2736
|
+
dependencies:
|
|
2737
|
+
'@reduxjs/toolkit': 2.12.0(react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1))(react@19.2.6)
|
|
2738
|
+
clsx: 2.1.1
|
|
2739
|
+
decimal.js-light: 2.5.1
|
|
2740
|
+
es-toolkit: 1.47.0
|
|
2741
|
+
eventemitter3: 5.0.4
|
|
2742
|
+
immer: 10.2.0
|
|
2743
|
+
react: 19.2.6
|
|
2744
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2745
|
+
react-is: 19.2.6
|
|
2746
|
+
react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1)
|
|
2747
|
+
reselect: 5.1.1
|
|
2748
|
+
tiny-invariant: 1.3.3
|
|
2749
|
+
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
2750
|
+
victory-vendor: 37.3.6
|
|
2751
|
+
transitivePeerDependencies:
|
|
2752
|
+
- '@types/react'
|
|
2753
|
+
- redux
|
|
2754
|
+
|
|
2755
|
+
redux-thunk@3.1.0(redux@5.0.1):
|
|
2756
|
+
dependencies:
|
|
2757
|
+
redux: 5.0.1
|
|
2758
|
+
|
|
2759
|
+
redux@5.0.1: {}
|
|
2760
|
+
|
|
2761
|
+
require-directory@2.1.1: {}
|
|
2762
|
+
|
|
2763
|
+
require-main-filename@2.0.0: {}
|
|
2764
|
+
|
|
2765
|
+
reselect@5.1.1: {}
|
|
2766
|
+
|
|
2767
|
+
reselect@5.2.0: {}
|
|
2768
|
+
|
|
2769
|
+
rollup@4.60.4:
|
|
2770
|
+
dependencies:
|
|
2771
|
+
'@types/estree': 1.0.8
|
|
2772
|
+
optionalDependencies:
|
|
2773
|
+
'@rollup/rollup-android-arm-eabi': 4.60.4
|
|
2774
|
+
'@rollup/rollup-android-arm64': 4.60.4
|
|
2775
|
+
'@rollup/rollup-darwin-arm64': 4.60.4
|
|
2776
|
+
'@rollup/rollup-darwin-x64': 4.60.4
|
|
2777
|
+
'@rollup/rollup-freebsd-arm64': 4.60.4
|
|
2778
|
+
'@rollup/rollup-freebsd-x64': 4.60.4
|
|
2779
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.60.4
|
|
2780
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.60.4
|
|
2781
|
+
'@rollup/rollup-linux-arm64-gnu': 4.60.4
|
|
2782
|
+
'@rollup/rollup-linux-arm64-musl': 4.60.4
|
|
2783
|
+
'@rollup/rollup-linux-loong64-gnu': 4.60.4
|
|
2784
|
+
'@rollup/rollup-linux-loong64-musl': 4.60.4
|
|
2785
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.60.4
|
|
2786
|
+
'@rollup/rollup-linux-ppc64-musl': 4.60.4
|
|
2787
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.60.4
|
|
2788
|
+
'@rollup/rollup-linux-riscv64-musl': 4.60.4
|
|
2789
|
+
'@rollup/rollup-linux-s390x-gnu': 4.60.4
|
|
2790
|
+
'@rollup/rollup-linux-x64-gnu': 4.60.4
|
|
2791
|
+
'@rollup/rollup-linux-x64-musl': 4.60.4
|
|
2792
|
+
'@rollup/rollup-openbsd-x64': 4.60.4
|
|
2793
|
+
'@rollup/rollup-openharmony-arm64': 4.60.4
|
|
2794
|
+
'@rollup/rollup-win32-arm64-msvc': 4.60.4
|
|
2795
|
+
'@rollup/rollup-win32-ia32-msvc': 4.60.4
|
|
2796
|
+
'@rollup/rollup-win32-x64-gnu': 4.60.4
|
|
2797
|
+
'@rollup/rollup-win32-x64-msvc': 4.60.4
|
|
2798
|
+
fsevents: 2.3.3
|
|
2799
|
+
|
|
2800
|
+
scheduler@0.27.0: {}
|
|
2801
|
+
|
|
2802
|
+
semver@6.3.1: {}
|
|
2803
|
+
|
|
2804
|
+
set-blocking@2.0.0: {}
|
|
2805
|
+
|
|
2806
|
+
set-cookie-parser@2.7.2: {}
|
|
2807
|
+
|
|
2808
|
+
sonner@2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2809
|
+
dependencies:
|
|
2810
|
+
react: 19.2.6
|
|
2811
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2812
|
+
|
|
2813
|
+
source-map-js@1.2.1: {}
|
|
2814
|
+
|
|
2815
|
+
string-width@4.2.3:
|
|
2816
|
+
dependencies:
|
|
2817
|
+
emoji-regex: 8.0.0
|
|
2818
|
+
is-fullwidth-code-point: 3.0.0
|
|
2819
|
+
strip-ansi: 6.0.1
|
|
2820
|
+
|
|
2821
|
+
strip-ansi@6.0.1:
|
|
2822
|
+
dependencies:
|
|
2823
|
+
ansi-regex: 5.0.1
|
|
2824
|
+
|
|
2825
|
+
swr@2.4.1(react@19.2.6):
|
|
2826
|
+
dependencies:
|
|
2827
|
+
dequal: 2.0.3
|
|
2828
|
+
react: 19.2.6
|
|
2829
|
+
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
2830
|
+
|
|
2831
|
+
tailwind-merge@2.6.1: {}
|
|
2832
|
+
|
|
2833
|
+
tailwindcss@4.3.0: {}
|
|
2834
|
+
|
|
2835
|
+
tapable@2.3.3: {}
|
|
2836
|
+
|
|
2837
|
+
tiny-invariant@1.3.3: {}
|
|
2838
|
+
|
|
2839
|
+
tinyglobby@0.2.16:
|
|
2840
|
+
dependencies:
|
|
2841
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
2842
|
+
picomatch: 4.0.4
|
|
2843
|
+
|
|
2844
|
+
tslib@2.8.1: {}
|
|
2845
|
+
|
|
2846
|
+
tw-animate-css@1.4.0: {}
|
|
2847
|
+
|
|
2848
|
+
typescript@5.9.3: {}
|
|
2849
|
+
|
|
2850
|
+
undici-types@7.24.6: {}
|
|
2851
|
+
|
|
2852
|
+
update-browserslist-db@1.2.3(browserslist@4.28.2):
|
|
2853
|
+
dependencies:
|
|
2854
|
+
browserslist: 4.28.2
|
|
2855
|
+
escalade: 3.2.0
|
|
2856
|
+
picocolors: 1.1.1
|
|
2857
|
+
|
|
2858
|
+
use-callback-ref@1.3.3(@types/react@19.2.15)(react@19.2.6):
|
|
2859
|
+
dependencies:
|
|
2860
|
+
react: 19.2.6
|
|
2861
|
+
tslib: 2.8.1
|
|
2862
|
+
optionalDependencies:
|
|
2863
|
+
'@types/react': 19.2.15
|
|
2864
|
+
|
|
2865
|
+
use-sidecar@1.1.3(@types/react@19.2.15)(react@19.2.6):
|
|
2866
|
+
dependencies:
|
|
2867
|
+
detect-node-es: 1.1.0
|
|
2868
|
+
react: 19.2.6
|
|
2869
|
+
tslib: 2.8.1
|
|
2870
|
+
optionalDependencies:
|
|
2871
|
+
'@types/react': 19.2.15
|
|
2872
|
+
|
|
2873
|
+
use-sync-external-store@1.6.0(react@19.2.6):
|
|
2874
|
+
dependencies:
|
|
2875
|
+
react: 19.2.6
|
|
2876
|
+
|
|
2877
|
+
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2878
|
+
dependencies:
|
|
2879
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2880
|
+
react: 19.2.6
|
|
2881
|
+
react-dom: 19.2.6(react@19.2.6)
|
|
2882
|
+
transitivePeerDependencies:
|
|
2883
|
+
- '@types/react'
|
|
2884
|
+
- '@types/react-dom'
|
|
2885
|
+
|
|
2886
|
+
victory-vendor@37.3.6:
|
|
2887
|
+
dependencies:
|
|
2888
|
+
'@types/d3-array': 3.2.2
|
|
2889
|
+
'@types/d3-ease': 3.0.2
|
|
2890
|
+
'@types/d3-interpolate': 3.0.4
|
|
2891
|
+
'@types/d3-scale': 4.0.9
|
|
2892
|
+
'@types/d3-shape': 3.1.8
|
|
2893
|
+
'@types/d3-time': 3.0.4
|
|
2894
|
+
'@types/d3-timer': 3.0.2
|
|
2895
|
+
d3-array: 3.2.4
|
|
2896
|
+
d3-ease: 3.0.1
|
|
2897
|
+
d3-interpolate: 3.0.1
|
|
2898
|
+
d3-scale: 4.0.2
|
|
2899
|
+
d3-shape: 3.2.0
|
|
2900
|
+
d3-time: 3.1.0
|
|
2901
|
+
d3-timer: 3.0.1
|
|
2902
|
+
|
|
2903
|
+
vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0):
|
|
2904
|
+
dependencies:
|
|
2905
|
+
esbuild: 0.25.12
|
|
2906
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
2907
|
+
picomatch: 4.0.4
|
|
2908
|
+
postcss: 8.5.15
|
|
2909
|
+
rollup: 4.60.4
|
|
2910
|
+
tinyglobby: 0.2.16
|
|
2911
|
+
optionalDependencies:
|
|
2912
|
+
'@types/node': 25.9.1
|
|
2913
|
+
fsevents: 2.3.3
|
|
2914
|
+
jiti: 2.7.0
|
|
2915
|
+
lightningcss: 1.32.0
|
|
2916
|
+
|
|
2917
|
+
which-module@2.0.1: {}
|
|
2918
|
+
|
|
2919
|
+
wrap-ansi@6.2.0:
|
|
2920
|
+
dependencies:
|
|
2921
|
+
ansi-styles: 4.3.0
|
|
2922
|
+
string-width: 4.2.3
|
|
2923
|
+
strip-ansi: 6.0.1
|
|
2924
|
+
|
|
2925
|
+
y18n@4.0.3: {}
|
|
2926
|
+
|
|
2927
|
+
yallist@3.1.1: {}
|
|
2928
|
+
|
|
2929
|
+
yargs-parser@18.1.3:
|
|
2930
|
+
dependencies:
|
|
2931
|
+
camelcase: 5.3.1
|
|
2932
|
+
decamelize: 1.2.0
|
|
2933
|
+
|
|
2934
|
+
yargs@15.4.1:
|
|
2935
|
+
dependencies:
|
|
2936
|
+
cliui: 6.0.0
|
|
2937
|
+
decamelize: 1.2.0
|
|
2938
|
+
find-up: 4.1.0
|
|
2939
|
+
get-caller-file: 2.0.5
|
|
2940
|
+
require-directory: 2.1.1
|
|
2941
|
+
require-main-filename: 2.0.0
|
|
2942
|
+
set-blocking: 2.0.0
|
|
2943
|
+
string-width: 4.2.3
|
|
2944
|
+
which-module: 2.0.1
|
|
2945
|
+
y18n: 4.0.3
|
|
2946
|
+
yargs-parser: 18.1.3
|