@agentprojectcontext/apx 1.25.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,4253 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agentprojectcontext/apx-web",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@agentprojectcontext/apx-web",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@base-ui/react": "^1.5.0",
|
|
12
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
13
|
+
"class-variance-authority": "^0.7.1",
|
|
14
|
+
"clsx": "^2.1.1",
|
|
15
|
+
"cmdk": "^1.1.1",
|
|
16
|
+
"d3-drag": "^3.0.0",
|
|
17
|
+
"d3-force": "^3.0.0",
|
|
18
|
+
"d3-selection": "^3.0.0",
|
|
19
|
+
"date-fns": "^4.3.0",
|
|
20
|
+
"embla-carousel-react": "^8.6.0",
|
|
21
|
+
"input-otp": "^1.4.2",
|
|
22
|
+
"lucide-react": "^0.469.0",
|
|
23
|
+
"next-themes": "^0.4.6",
|
|
24
|
+
"qrcode": "^1.5.4",
|
|
25
|
+
"react": "^19.0.0",
|
|
26
|
+
"react-day-picker": "^10.0.1",
|
|
27
|
+
"react-dom": "^19.0.0",
|
|
28
|
+
"react-resizable-panels": "^4.11.2",
|
|
29
|
+
"react-router-dom": "^7.1.1",
|
|
30
|
+
"recharts": "3.8.0",
|
|
31
|
+
"sonner": "^2.0.7",
|
|
32
|
+
"swr": "^2.3.0",
|
|
33
|
+
"tailwind-merge": "^2.6.0",
|
|
34
|
+
"tw-animate-css": "^1.4.0",
|
|
35
|
+
"vaul": "^1.1.2"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@playwright/test": "^1.60.0",
|
|
39
|
+
"@types/d3-drag": "^3.0.7",
|
|
40
|
+
"@types/d3-force": "^3.0.10",
|
|
41
|
+
"@types/d3-selection": "^3.0.11",
|
|
42
|
+
"@types/qrcode": "^1.5.6",
|
|
43
|
+
"@types/react": "^19.0.0",
|
|
44
|
+
"@types/react-dom": "^19.0.0",
|
|
45
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
46
|
+
"tailwindcss": "^4.3.0",
|
|
47
|
+
"typescript": "^5.7.2",
|
|
48
|
+
"vite": "^6.0.7"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"node_modules/@babel/code-frame": {
|
|
52
|
+
"version": "7.29.7",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
|
|
54
|
+
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
|
|
55
|
+
"dev": true,
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
59
|
+
"js-tokens": "^4.0.0",
|
|
60
|
+
"picocolors": "^1.1.1"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=6.9.0"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"node_modules/@babel/compat-data": {
|
|
67
|
+
"version": "7.29.7",
|
|
68
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
|
|
69
|
+
"integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
|
|
70
|
+
"dev": true,
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=6.9.0"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"node_modules/@babel/core": {
|
|
77
|
+
"version": "7.29.7",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
|
|
79
|
+
"integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
|
|
80
|
+
"dev": true,
|
|
81
|
+
"license": "MIT",
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@babel/code-frame": "^7.29.7",
|
|
84
|
+
"@babel/generator": "^7.29.7",
|
|
85
|
+
"@babel/helper-compilation-targets": "^7.29.7",
|
|
86
|
+
"@babel/helper-module-transforms": "^7.29.7",
|
|
87
|
+
"@babel/helpers": "^7.29.7",
|
|
88
|
+
"@babel/parser": "^7.29.7",
|
|
89
|
+
"@babel/template": "^7.29.7",
|
|
90
|
+
"@babel/traverse": "^7.29.7",
|
|
91
|
+
"@babel/types": "^7.29.7",
|
|
92
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
93
|
+
"convert-source-map": "^2.0.0",
|
|
94
|
+
"debug": "^4.1.0",
|
|
95
|
+
"gensync": "^1.0.0-beta.2",
|
|
96
|
+
"json5": "^2.2.3",
|
|
97
|
+
"semver": "^6.3.1"
|
|
98
|
+
},
|
|
99
|
+
"engines": {
|
|
100
|
+
"node": ">=6.9.0"
|
|
101
|
+
},
|
|
102
|
+
"funding": {
|
|
103
|
+
"type": "opencollective",
|
|
104
|
+
"url": "https://opencollective.com/babel"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"node_modules/@babel/generator": {
|
|
108
|
+
"version": "7.29.7",
|
|
109
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
|
|
110
|
+
"integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
|
|
111
|
+
"dev": true,
|
|
112
|
+
"license": "MIT",
|
|
113
|
+
"dependencies": {
|
|
114
|
+
"@babel/parser": "^7.29.7",
|
|
115
|
+
"@babel/types": "^7.29.7",
|
|
116
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
117
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
118
|
+
"jsesc": "^3.0.2"
|
|
119
|
+
},
|
|
120
|
+
"engines": {
|
|
121
|
+
"node": ">=6.9.0"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"node_modules/@babel/helper-compilation-targets": {
|
|
125
|
+
"version": "7.29.7",
|
|
126
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
|
|
127
|
+
"integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
|
|
128
|
+
"dev": true,
|
|
129
|
+
"license": "MIT",
|
|
130
|
+
"dependencies": {
|
|
131
|
+
"@babel/compat-data": "^7.29.7",
|
|
132
|
+
"@babel/helper-validator-option": "^7.29.7",
|
|
133
|
+
"browserslist": "^4.24.0",
|
|
134
|
+
"lru-cache": "^5.1.1",
|
|
135
|
+
"semver": "^6.3.1"
|
|
136
|
+
},
|
|
137
|
+
"engines": {
|
|
138
|
+
"node": ">=6.9.0"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/@babel/helper-globals": {
|
|
142
|
+
"version": "7.29.7",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
|
|
144
|
+
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
|
|
145
|
+
"dev": true,
|
|
146
|
+
"license": "MIT",
|
|
147
|
+
"engines": {
|
|
148
|
+
"node": ">=6.9.0"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"node_modules/@babel/helper-module-imports": {
|
|
152
|
+
"version": "7.29.7",
|
|
153
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
|
|
154
|
+
"integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
|
|
155
|
+
"dev": true,
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"dependencies": {
|
|
158
|
+
"@babel/traverse": "^7.29.7",
|
|
159
|
+
"@babel/types": "^7.29.7"
|
|
160
|
+
},
|
|
161
|
+
"engines": {
|
|
162
|
+
"node": ">=6.9.0"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"node_modules/@babel/helper-module-transforms": {
|
|
166
|
+
"version": "7.29.7",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
|
|
168
|
+
"integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
|
|
169
|
+
"dev": true,
|
|
170
|
+
"license": "MIT",
|
|
171
|
+
"dependencies": {
|
|
172
|
+
"@babel/helper-module-imports": "^7.29.7",
|
|
173
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
174
|
+
"@babel/traverse": "^7.29.7"
|
|
175
|
+
},
|
|
176
|
+
"engines": {
|
|
177
|
+
"node": ">=6.9.0"
|
|
178
|
+
},
|
|
179
|
+
"peerDependencies": {
|
|
180
|
+
"@babel/core": "^7.0.0"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"node_modules/@babel/helper-plugin-utils": {
|
|
184
|
+
"version": "7.29.7",
|
|
185
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
|
|
186
|
+
"integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
|
|
187
|
+
"dev": true,
|
|
188
|
+
"license": "MIT",
|
|
189
|
+
"engines": {
|
|
190
|
+
"node": ">=6.9.0"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"node_modules/@babel/helper-string-parser": {
|
|
194
|
+
"version": "7.29.7",
|
|
195
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
|
|
196
|
+
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
197
|
+
"dev": true,
|
|
198
|
+
"license": "MIT",
|
|
199
|
+
"engines": {
|
|
200
|
+
"node": ">=6.9.0"
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
204
|
+
"version": "7.29.7",
|
|
205
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
|
|
206
|
+
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
207
|
+
"dev": true,
|
|
208
|
+
"license": "MIT",
|
|
209
|
+
"engines": {
|
|
210
|
+
"node": ">=6.9.0"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"node_modules/@babel/helper-validator-option": {
|
|
214
|
+
"version": "7.29.7",
|
|
215
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
|
|
216
|
+
"integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
|
|
217
|
+
"dev": true,
|
|
218
|
+
"license": "MIT",
|
|
219
|
+
"engines": {
|
|
220
|
+
"node": ">=6.9.0"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"node_modules/@babel/helpers": {
|
|
224
|
+
"version": "7.29.7",
|
|
225
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
|
|
226
|
+
"integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
|
|
227
|
+
"dev": true,
|
|
228
|
+
"license": "MIT",
|
|
229
|
+
"dependencies": {
|
|
230
|
+
"@babel/template": "^7.29.7",
|
|
231
|
+
"@babel/types": "^7.29.7"
|
|
232
|
+
},
|
|
233
|
+
"engines": {
|
|
234
|
+
"node": ">=6.9.0"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
"node_modules/@babel/parser": {
|
|
238
|
+
"version": "7.29.7",
|
|
239
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
|
|
240
|
+
"integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
|
|
241
|
+
"dev": true,
|
|
242
|
+
"license": "MIT",
|
|
243
|
+
"dependencies": {
|
|
244
|
+
"@babel/types": "^7.29.7"
|
|
245
|
+
},
|
|
246
|
+
"bin": {
|
|
247
|
+
"parser": "bin/babel-parser.js"
|
|
248
|
+
},
|
|
249
|
+
"engines": {
|
|
250
|
+
"node": ">=6.0.0"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
254
|
+
"version": "7.29.7",
|
|
255
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz",
|
|
256
|
+
"integrity": "sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==",
|
|
257
|
+
"dev": true,
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
261
|
+
},
|
|
262
|
+
"engines": {
|
|
263
|
+
"node": ">=6.9.0"
|
|
264
|
+
},
|
|
265
|
+
"peerDependencies": {
|
|
266
|
+
"@babel/core": "^7.0.0-0"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
|
270
|
+
"version": "7.29.7",
|
|
271
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.29.7.tgz",
|
|
272
|
+
"integrity": "sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==",
|
|
273
|
+
"dev": true,
|
|
274
|
+
"license": "MIT",
|
|
275
|
+
"dependencies": {
|
|
276
|
+
"@babel/helper-plugin-utils": "^7.29.7"
|
|
277
|
+
},
|
|
278
|
+
"engines": {
|
|
279
|
+
"node": ">=6.9.0"
|
|
280
|
+
},
|
|
281
|
+
"peerDependencies": {
|
|
282
|
+
"@babel/core": "^7.0.0-0"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"node_modules/@babel/runtime": {
|
|
286
|
+
"version": "7.29.7",
|
|
287
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
288
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
289
|
+
"license": "MIT",
|
|
290
|
+
"engines": {
|
|
291
|
+
"node": ">=6.9.0"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"node_modules/@babel/template": {
|
|
295
|
+
"version": "7.29.7",
|
|
296
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
|
|
297
|
+
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
|
|
298
|
+
"dev": true,
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"dependencies": {
|
|
301
|
+
"@babel/code-frame": "^7.29.7",
|
|
302
|
+
"@babel/parser": "^7.29.7",
|
|
303
|
+
"@babel/types": "^7.29.7"
|
|
304
|
+
},
|
|
305
|
+
"engines": {
|
|
306
|
+
"node": ">=6.9.0"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"node_modules/@babel/traverse": {
|
|
310
|
+
"version": "7.29.7",
|
|
311
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
|
|
312
|
+
"integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
|
|
313
|
+
"dev": true,
|
|
314
|
+
"license": "MIT",
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"@babel/code-frame": "^7.29.7",
|
|
317
|
+
"@babel/generator": "^7.29.7",
|
|
318
|
+
"@babel/helper-globals": "^7.29.7",
|
|
319
|
+
"@babel/parser": "^7.29.7",
|
|
320
|
+
"@babel/template": "^7.29.7",
|
|
321
|
+
"@babel/types": "^7.29.7",
|
|
322
|
+
"debug": "^4.3.1"
|
|
323
|
+
},
|
|
324
|
+
"engines": {
|
|
325
|
+
"node": ">=6.9.0"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"node_modules/@babel/types": {
|
|
329
|
+
"version": "7.29.7",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
|
|
331
|
+
"integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
|
|
332
|
+
"dev": true,
|
|
333
|
+
"license": "MIT",
|
|
334
|
+
"dependencies": {
|
|
335
|
+
"@babel/helper-string-parser": "^7.29.7",
|
|
336
|
+
"@babel/helper-validator-identifier": "^7.29.7"
|
|
337
|
+
},
|
|
338
|
+
"engines": {
|
|
339
|
+
"node": ">=6.9.0"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"node_modules/@base-ui/react": {
|
|
343
|
+
"version": "1.5.0",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.5.0.tgz",
|
|
345
|
+
"integrity": "sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A==",
|
|
346
|
+
"license": "MIT",
|
|
347
|
+
"dependencies": {
|
|
348
|
+
"@babel/runtime": "^7.29.2",
|
|
349
|
+
"@base-ui/utils": "0.2.9",
|
|
350
|
+
"@floating-ui/react-dom": "^2.1.8",
|
|
351
|
+
"@floating-ui/utils": "^0.2.11",
|
|
352
|
+
"use-sync-external-store": "^1.6.0"
|
|
353
|
+
},
|
|
354
|
+
"engines": {
|
|
355
|
+
"node": ">=14.0.0"
|
|
356
|
+
},
|
|
357
|
+
"funding": {
|
|
358
|
+
"type": "opencollective",
|
|
359
|
+
"url": "https://opencollective.com/mui-org"
|
|
360
|
+
},
|
|
361
|
+
"peerDependencies": {
|
|
362
|
+
"@date-fns/tz": "^1.2.0",
|
|
363
|
+
"@types/react": "^17 || ^18 || ^19",
|
|
364
|
+
"date-fns": "^4.0.0",
|
|
365
|
+
"react": "^17 || ^18 || ^19",
|
|
366
|
+
"react-dom": "^17 || ^18 || ^19"
|
|
367
|
+
},
|
|
368
|
+
"peerDependenciesMeta": {
|
|
369
|
+
"@date-fns/tz": {
|
|
370
|
+
"optional": true
|
|
371
|
+
},
|
|
372
|
+
"@types/react": {
|
|
373
|
+
"optional": true
|
|
374
|
+
},
|
|
375
|
+
"date-fns": {
|
|
376
|
+
"optional": true
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"node_modules/@base-ui/utils": {
|
|
381
|
+
"version": "0.2.9",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.2.9.tgz",
|
|
383
|
+
"integrity": "sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw==",
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"dependencies": {
|
|
386
|
+
"@babel/runtime": "^7.29.2",
|
|
387
|
+
"@floating-ui/utils": "^0.2.11",
|
|
388
|
+
"reselect": "^5.1.1",
|
|
389
|
+
"use-sync-external-store": "^1.6.0"
|
|
390
|
+
},
|
|
391
|
+
"peerDependencies": {
|
|
392
|
+
"@types/react": "^17 || ^18 || ^19",
|
|
393
|
+
"react": "^17 || ^18 || ^19",
|
|
394
|
+
"react-dom": "^17 || ^18 || ^19"
|
|
395
|
+
},
|
|
396
|
+
"peerDependenciesMeta": {
|
|
397
|
+
"@types/react": {
|
|
398
|
+
"optional": true
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"node_modules/@date-fns/tz": {
|
|
403
|
+
"version": "1.5.0",
|
|
404
|
+
"resolved": "https://registry.npmjs.org/@date-fns/tz/-/tz-1.5.0.tgz",
|
|
405
|
+
"integrity": "sha512-lwYN/vDPeNRULcepoE/LO2Pgx+7/RV+S9ARfbc9lr2DtGkOD7pAiruHvbR1RX3Qyf6ja47EWJDMsNK5vK08DJg==",
|
|
406
|
+
"license": "MIT"
|
|
407
|
+
},
|
|
408
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
409
|
+
"version": "0.25.12",
|
|
410
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
411
|
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
|
412
|
+
"cpu": [
|
|
413
|
+
"ppc64"
|
|
414
|
+
],
|
|
415
|
+
"license": "MIT",
|
|
416
|
+
"optional": true,
|
|
417
|
+
"os": [
|
|
418
|
+
"aix"
|
|
419
|
+
],
|
|
420
|
+
"engines": {
|
|
421
|
+
"node": ">=18"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"node_modules/@esbuild/android-arm": {
|
|
425
|
+
"version": "0.25.12",
|
|
426
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
|
427
|
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
|
428
|
+
"cpu": [
|
|
429
|
+
"arm"
|
|
430
|
+
],
|
|
431
|
+
"license": "MIT",
|
|
432
|
+
"optional": true,
|
|
433
|
+
"os": [
|
|
434
|
+
"android"
|
|
435
|
+
],
|
|
436
|
+
"engines": {
|
|
437
|
+
"node": ">=18"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"node_modules/@esbuild/android-arm64": {
|
|
441
|
+
"version": "0.25.12",
|
|
442
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
|
443
|
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
|
444
|
+
"cpu": [
|
|
445
|
+
"arm64"
|
|
446
|
+
],
|
|
447
|
+
"license": "MIT",
|
|
448
|
+
"optional": true,
|
|
449
|
+
"os": [
|
|
450
|
+
"android"
|
|
451
|
+
],
|
|
452
|
+
"engines": {
|
|
453
|
+
"node": ">=18"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"node_modules/@esbuild/android-x64": {
|
|
457
|
+
"version": "0.25.12",
|
|
458
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
|
459
|
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
|
460
|
+
"cpu": [
|
|
461
|
+
"x64"
|
|
462
|
+
],
|
|
463
|
+
"license": "MIT",
|
|
464
|
+
"optional": true,
|
|
465
|
+
"os": [
|
|
466
|
+
"android"
|
|
467
|
+
],
|
|
468
|
+
"engines": {
|
|
469
|
+
"node": ">=18"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
473
|
+
"version": "0.25.12",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
|
475
|
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
|
476
|
+
"cpu": [
|
|
477
|
+
"arm64"
|
|
478
|
+
],
|
|
479
|
+
"license": "MIT",
|
|
480
|
+
"optional": true,
|
|
481
|
+
"os": [
|
|
482
|
+
"darwin"
|
|
483
|
+
],
|
|
484
|
+
"engines": {
|
|
485
|
+
"node": ">=18"
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
489
|
+
"version": "0.25.12",
|
|
490
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
|
491
|
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
|
492
|
+
"cpu": [
|
|
493
|
+
"x64"
|
|
494
|
+
],
|
|
495
|
+
"license": "MIT",
|
|
496
|
+
"optional": true,
|
|
497
|
+
"os": [
|
|
498
|
+
"darwin"
|
|
499
|
+
],
|
|
500
|
+
"engines": {
|
|
501
|
+
"node": ">=18"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
505
|
+
"version": "0.25.12",
|
|
506
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
|
507
|
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
|
508
|
+
"cpu": [
|
|
509
|
+
"arm64"
|
|
510
|
+
],
|
|
511
|
+
"license": "MIT",
|
|
512
|
+
"optional": true,
|
|
513
|
+
"os": [
|
|
514
|
+
"freebsd"
|
|
515
|
+
],
|
|
516
|
+
"engines": {
|
|
517
|
+
"node": ">=18"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
521
|
+
"version": "0.25.12",
|
|
522
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
|
523
|
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
|
524
|
+
"cpu": [
|
|
525
|
+
"x64"
|
|
526
|
+
],
|
|
527
|
+
"license": "MIT",
|
|
528
|
+
"optional": true,
|
|
529
|
+
"os": [
|
|
530
|
+
"freebsd"
|
|
531
|
+
],
|
|
532
|
+
"engines": {
|
|
533
|
+
"node": ">=18"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"node_modules/@esbuild/linux-arm": {
|
|
537
|
+
"version": "0.25.12",
|
|
538
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
|
539
|
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
|
540
|
+
"cpu": [
|
|
541
|
+
"arm"
|
|
542
|
+
],
|
|
543
|
+
"license": "MIT",
|
|
544
|
+
"optional": true,
|
|
545
|
+
"os": [
|
|
546
|
+
"linux"
|
|
547
|
+
],
|
|
548
|
+
"engines": {
|
|
549
|
+
"node": ">=18"
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
553
|
+
"version": "0.25.12",
|
|
554
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
|
555
|
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
|
556
|
+
"cpu": [
|
|
557
|
+
"arm64"
|
|
558
|
+
],
|
|
559
|
+
"license": "MIT",
|
|
560
|
+
"optional": true,
|
|
561
|
+
"os": [
|
|
562
|
+
"linux"
|
|
563
|
+
],
|
|
564
|
+
"engines": {
|
|
565
|
+
"node": ">=18"
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
569
|
+
"version": "0.25.12",
|
|
570
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
|
571
|
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
|
572
|
+
"cpu": [
|
|
573
|
+
"ia32"
|
|
574
|
+
],
|
|
575
|
+
"license": "MIT",
|
|
576
|
+
"optional": true,
|
|
577
|
+
"os": [
|
|
578
|
+
"linux"
|
|
579
|
+
],
|
|
580
|
+
"engines": {
|
|
581
|
+
"node": ">=18"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
585
|
+
"version": "0.25.12",
|
|
586
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
|
587
|
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
|
588
|
+
"cpu": [
|
|
589
|
+
"loong64"
|
|
590
|
+
],
|
|
591
|
+
"license": "MIT",
|
|
592
|
+
"optional": true,
|
|
593
|
+
"os": [
|
|
594
|
+
"linux"
|
|
595
|
+
],
|
|
596
|
+
"engines": {
|
|
597
|
+
"node": ">=18"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
601
|
+
"version": "0.25.12",
|
|
602
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
|
603
|
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
|
604
|
+
"cpu": [
|
|
605
|
+
"mips64el"
|
|
606
|
+
],
|
|
607
|
+
"license": "MIT",
|
|
608
|
+
"optional": true,
|
|
609
|
+
"os": [
|
|
610
|
+
"linux"
|
|
611
|
+
],
|
|
612
|
+
"engines": {
|
|
613
|
+
"node": ">=18"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
617
|
+
"version": "0.25.12",
|
|
618
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
|
619
|
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
|
620
|
+
"cpu": [
|
|
621
|
+
"ppc64"
|
|
622
|
+
],
|
|
623
|
+
"license": "MIT",
|
|
624
|
+
"optional": true,
|
|
625
|
+
"os": [
|
|
626
|
+
"linux"
|
|
627
|
+
],
|
|
628
|
+
"engines": {
|
|
629
|
+
"node": ">=18"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
633
|
+
"version": "0.25.12",
|
|
634
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
|
635
|
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
|
636
|
+
"cpu": [
|
|
637
|
+
"riscv64"
|
|
638
|
+
],
|
|
639
|
+
"license": "MIT",
|
|
640
|
+
"optional": true,
|
|
641
|
+
"os": [
|
|
642
|
+
"linux"
|
|
643
|
+
],
|
|
644
|
+
"engines": {
|
|
645
|
+
"node": ">=18"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
649
|
+
"version": "0.25.12",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
|
651
|
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
|
652
|
+
"cpu": [
|
|
653
|
+
"s390x"
|
|
654
|
+
],
|
|
655
|
+
"license": "MIT",
|
|
656
|
+
"optional": true,
|
|
657
|
+
"os": [
|
|
658
|
+
"linux"
|
|
659
|
+
],
|
|
660
|
+
"engines": {
|
|
661
|
+
"node": ">=18"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"node_modules/@esbuild/linux-x64": {
|
|
665
|
+
"version": "0.25.12",
|
|
666
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
|
667
|
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
|
668
|
+
"cpu": [
|
|
669
|
+
"x64"
|
|
670
|
+
],
|
|
671
|
+
"license": "MIT",
|
|
672
|
+
"optional": true,
|
|
673
|
+
"os": [
|
|
674
|
+
"linux"
|
|
675
|
+
],
|
|
676
|
+
"engines": {
|
|
677
|
+
"node": ">=18"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
681
|
+
"version": "0.25.12",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
|
683
|
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
|
684
|
+
"cpu": [
|
|
685
|
+
"arm64"
|
|
686
|
+
],
|
|
687
|
+
"license": "MIT",
|
|
688
|
+
"optional": true,
|
|
689
|
+
"os": [
|
|
690
|
+
"netbsd"
|
|
691
|
+
],
|
|
692
|
+
"engines": {
|
|
693
|
+
"node": ">=18"
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
697
|
+
"version": "0.25.12",
|
|
698
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
|
699
|
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
|
700
|
+
"cpu": [
|
|
701
|
+
"x64"
|
|
702
|
+
],
|
|
703
|
+
"license": "MIT",
|
|
704
|
+
"optional": true,
|
|
705
|
+
"os": [
|
|
706
|
+
"netbsd"
|
|
707
|
+
],
|
|
708
|
+
"engines": {
|
|
709
|
+
"node": ">=18"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
713
|
+
"version": "0.25.12",
|
|
714
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
|
715
|
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
|
716
|
+
"cpu": [
|
|
717
|
+
"arm64"
|
|
718
|
+
],
|
|
719
|
+
"license": "MIT",
|
|
720
|
+
"optional": true,
|
|
721
|
+
"os": [
|
|
722
|
+
"openbsd"
|
|
723
|
+
],
|
|
724
|
+
"engines": {
|
|
725
|
+
"node": ">=18"
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
729
|
+
"version": "0.25.12",
|
|
730
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
|
731
|
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
|
732
|
+
"cpu": [
|
|
733
|
+
"x64"
|
|
734
|
+
],
|
|
735
|
+
"license": "MIT",
|
|
736
|
+
"optional": true,
|
|
737
|
+
"os": [
|
|
738
|
+
"openbsd"
|
|
739
|
+
],
|
|
740
|
+
"engines": {
|
|
741
|
+
"node": ">=18"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
745
|
+
"version": "0.25.12",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
|
747
|
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
|
748
|
+
"cpu": [
|
|
749
|
+
"arm64"
|
|
750
|
+
],
|
|
751
|
+
"license": "MIT",
|
|
752
|
+
"optional": true,
|
|
753
|
+
"os": [
|
|
754
|
+
"openharmony"
|
|
755
|
+
],
|
|
756
|
+
"engines": {
|
|
757
|
+
"node": ">=18"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
761
|
+
"version": "0.25.12",
|
|
762
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
|
763
|
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
|
764
|
+
"cpu": [
|
|
765
|
+
"x64"
|
|
766
|
+
],
|
|
767
|
+
"license": "MIT",
|
|
768
|
+
"optional": true,
|
|
769
|
+
"os": [
|
|
770
|
+
"sunos"
|
|
771
|
+
],
|
|
772
|
+
"engines": {
|
|
773
|
+
"node": ">=18"
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
777
|
+
"version": "0.25.12",
|
|
778
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
|
779
|
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
|
780
|
+
"cpu": [
|
|
781
|
+
"arm64"
|
|
782
|
+
],
|
|
783
|
+
"license": "MIT",
|
|
784
|
+
"optional": true,
|
|
785
|
+
"os": [
|
|
786
|
+
"win32"
|
|
787
|
+
],
|
|
788
|
+
"engines": {
|
|
789
|
+
"node": ">=18"
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
793
|
+
"version": "0.25.12",
|
|
794
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
|
795
|
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
|
796
|
+
"cpu": [
|
|
797
|
+
"ia32"
|
|
798
|
+
],
|
|
799
|
+
"license": "MIT",
|
|
800
|
+
"optional": true,
|
|
801
|
+
"os": [
|
|
802
|
+
"win32"
|
|
803
|
+
],
|
|
804
|
+
"engines": {
|
|
805
|
+
"node": ">=18"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"node_modules/@esbuild/win32-x64": {
|
|
809
|
+
"version": "0.25.12",
|
|
810
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
|
811
|
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
|
812
|
+
"cpu": [
|
|
813
|
+
"x64"
|
|
814
|
+
],
|
|
815
|
+
"license": "MIT",
|
|
816
|
+
"optional": true,
|
|
817
|
+
"os": [
|
|
818
|
+
"win32"
|
|
819
|
+
],
|
|
820
|
+
"engines": {
|
|
821
|
+
"node": ">=18"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"node_modules/@floating-ui/core": {
|
|
825
|
+
"version": "1.7.5",
|
|
826
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz",
|
|
827
|
+
"integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
|
|
828
|
+
"license": "MIT",
|
|
829
|
+
"dependencies": {
|
|
830
|
+
"@floating-ui/utils": "^0.2.11"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"node_modules/@floating-ui/dom": {
|
|
834
|
+
"version": "1.7.6",
|
|
835
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz",
|
|
836
|
+
"integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
|
|
837
|
+
"license": "MIT",
|
|
838
|
+
"dependencies": {
|
|
839
|
+
"@floating-ui/core": "^1.7.5",
|
|
840
|
+
"@floating-ui/utils": "^0.2.11"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"node_modules/@floating-ui/react-dom": {
|
|
844
|
+
"version": "2.1.8",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.8.tgz",
|
|
846
|
+
"integrity": "sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==",
|
|
847
|
+
"license": "MIT",
|
|
848
|
+
"dependencies": {
|
|
849
|
+
"@floating-ui/dom": "^1.7.6"
|
|
850
|
+
},
|
|
851
|
+
"peerDependencies": {
|
|
852
|
+
"react": ">=16.8.0",
|
|
853
|
+
"react-dom": ">=16.8.0"
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
"node_modules/@floating-ui/utils": {
|
|
857
|
+
"version": "0.2.11",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz",
|
|
859
|
+
"integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
|
|
860
|
+
"license": "MIT"
|
|
861
|
+
},
|
|
862
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
863
|
+
"version": "0.3.13",
|
|
864
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
865
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
866
|
+
"license": "MIT",
|
|
867
|
+
"dependencies": {
|
|
868
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
869
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"node_modules/@jridgewell/remapping": {
|
|
873
|
+
"version": "2.3.5",
|
|
874
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
875
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
876
|
+
"license": "MIT",
|
|
877
|
+
"dependencies": {
|
|
878
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
879
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
883
|
+
"version": "3.1.2",
|
|
884
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
885
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
886
|
+
"license": "MIT",
|
|
887
|
+
"engines": {
|
|
888
|
+
"node": ">=6.0.0"
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
892
|
+
"version": "1.5.5",
|
|
893
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
894
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
895
|
+
"license": "MIT"
|
|
896
|
+
},
|
|
897
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
898
|
+
"version": "0.3.31",
|
|
899
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
900
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
901
|
+
"license": "MIT",
|
|
902
|
+
"dependencies": {
|
|
903
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
904
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
"node_modules/@playwright/test": {
|
|
908
|
+
"version": "1.60.0",
|
|
909
|
+
"resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.60.0.tgz",
|
|
910
|
+
"integrity": "sha512-O71yZIbAh/PxDMNGns37GHBIfrVkEVyn+AXyIa5dOTfb4/xNvRWV+Vv/NMbNCtODB/pO7vLlF2OTmMVLhmr7Ag==",
|
|
911
|
+
"dev": true,
|
|
912
|
+
"license": "Apache-2.0",
|
|
913
|
+
"dependencies": {
|
|
914
|
+
"playwright": "1.60.0"
|
|
915
|
+
},
|
|
916
|
+
"bin": {
|
|
917
|
+
"playwright": "cli.js"
|
|
918
|
+
},
|
|
919
|
+
"engines": {
|
|
920
|
+
"node": ">=18"
|
|
921
|
+
}
|
|
922
|
+
},
|
|
923
|
+
"node_modules/@radix-ui/primitive": {
|
|
924
|
+
"version": "1.1.3",
|
|
925
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz",
|
|
926
|
+
"integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==",
|
|
927
|
+
"license": "MIT"
|
|
928
|
+
},
|
|
929
|
+
"node_modules/@radix-ui/react-compose-refs": {
|
|
930
|
+
"version": "1.1.2",
|
|
931
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
|
|
932
|
+
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
|
|
933
|
+
"license": "MIT",
|
|
934
|
+
"peerDependencies": {
|
|
935
|
+
"@types/react": "*",
|
|
936
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
937
|
+
},
|
|
938
|
+
"peerDependenciesMeta": {
|
|
939
|
+
"@types/react": {
|
|
940
|
+
"optional": true
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
"node_modules/@radix-ui/react-context": {
|
|
945
|
+
"version": "1.1.2",
|
|
946
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
|
|
947
|
+
"integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
|
|
948
|
+
"license": "MIT",
|
|
949
|
+
"peerDependencies": {
|
|
950
|
+
"@types/react": "*",
|
|
951
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
952
|
+
},
|
|
953
|
+
"peerDependenciesMeta": {
|
|
954
|
+
"@types/react": {
|
|
955
|
+
"optional": true
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"node_modules/@radix-ui/react-dialog": {
|
|
960
|
+
"version": "1.1.15",
|
|
961
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz",
|
|
962
|
+
"integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
|
|
963
|
+
"license": "MIT",
|
|
964
|
+
"dependencies": {
|
|
965
|
+
"@radix-ui/primitive": "1.1.3",
|
|
966
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
967
|
+
"@radix-ui/react-context": "1.1.2",
|
|
968
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
969
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
970
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
971
|
+
"@radix-ui/react-id": "1.1.1",
|
|
972
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
973
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
974
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
975
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
976
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
977
|
+
"aria-hidden": "^1.2.4",
|
|
978
|
+
"react-remove-scroll": "^2.6.3"
|
|
979
|
+
},
|
|
980
|
+
"peerDependencies": {
|
|
981
|
+
"@types/react": "*",
|
|
982
|
+
"@types/react-dom": "*",
|
|
983
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
984
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
985
|
+
},
|
|
986
|
+
"peerDependenciesMeta": {
|
|
987
|
+
"@types/react": {
|
|
988
|
+
"optional": true
|
|
989
|
+
},
|
|
990
|
+
"@types/react-dom": {
|
|
991
|
+
"optional": true
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive": {
|
|
996
|
+
"version": "2.1.3",
|
|
997
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
|
|
998
|
+
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
|
|
999
|
+
"license": "MIT",
|
|
1000
|
+
"dependencies": {
|
|
1001
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
1002
|
+
},
|
|
1003
|
+
"peerDependencies": {
|
|
1004
|
+
"@types/react": "*",
|
|
1005
|
+
"@types/react-dom": "*",
|
|
1006
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1007
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1008
|
+
},
|
|
1009
|
+
"peerDependenciesMeta": {
|
|
1010
|
+
"@types/react": {
|
|
1011
|
+
"optional": true
|
|
1012
|
+
},
|
|
1013
|
+
"@types/react-dom": {
|
|
1014
|
+
"optional": true
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
"node_modules/@radix-ui/react-dismissable-layer": {
|
|
1019
|
+
"version": "1.1.11",
|
|
1020
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz",
|
|
1021
|
+
"integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
|
|
1022
|
+
"license": "MIT",
|
|
1023
|
+
"dependencies": {
|
|
1024
|
+
"@radix-ui/primitive": "1.1.3",
|
|
1025
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
1026
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
1027
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
1028
|
+
"@radix-ui/react-use-escape-keydown": "1.1.1"
|
|
1029
|
+
},
|
|
1030
|
+
"peerDependencies": {
|
|
1031
|
+
"@types/react": "*",
|
|
1032
|
+
"@types/react-dom": "*",
|
|
1033
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1034
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1035
|
+
},
|
|
1036
|
+
"peerDependenciesMeta": {
|
|
1037
|
+
"@types/react": {
|
|
1038
|
+
"optional": true
|
|
1039
|
+
},
|
|
1040
|
+
"@types/react-dom": {
|
|
1041
|
+
"optional": true
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
1045
|
+
"node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive": {
|
|
1046
|
+
"version": "2.1.3",
|
|
1047
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
|
|
1048
|
+
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
|
|
1049
|
+
"license": "MIT",
|
|
1050
|
+
"dependencies": {
|
|
1051
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
1052
|
+
},
|
|
1053
|
+
"peerDependencies": {
|
|
1054
|
+
"@types/react": "*",
|
|
1055
|
+
"@types/react-dom": "*",
|
|
1056
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1057
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1058
|
+
},
|
|
1059
|
+
"peerDependenciesMeta": {
|
|
1060
|
+
"@types/react": {
|
|
1061
|
+
"optional": true
|
|
1062
|
+
},
|
|
1063
|
+
"@types/react-dom": {
|
|
1064
|
+
"optional": true
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
"node_modules/@radix-ui/react-focus-guards": {
|
|
1069
|
+
"version": "1.1.3",
|
|
1070
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz",
|
|
1071
|
+
"integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
|
|
1072
|
+
"license": "MIT",
|
|
1073
|
+
"peerDependencies": {
|
|
1074
|
+
"@types/react": "*",
|
|
1075
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1076
|
+
},
|
|
1077
|
+
"peerDependenciesMeta": {
|
|
1078
|
+
"@types/react": {
|
|
1079
|
+
"optional": true
|
|
1080
|
+
}
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
"node_modules/@radix-ui/react-focus-scope": {
|
|
1084
|
+
"version": "1.1.7",
|
|
1085
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
|
|
1086
|
+
"integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
|
|
1087
|
+
"license": "MIT",
|
|
1088
|
+
"dependencies": {
|
|
1089
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
1090
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
1091
|
+
"@radix-ui/react-use-callback-ref": "1.1.1"
|
|
1092
|
+
},
|
|
1093
|
+
"peerDependencies": {
|
|
1094
|
+
"@types/react": "*",
|
|
1095
|
+
"@types/react-dom": "*",
|
|
1096
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1097
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1098
|
+
},
|
|
1099
|
+
"peerDependenciesMeta": {
|
|
1100
|
+
"@types/react": {
|
|
1101
|
+
"optional": true
|
|
1102
|
+
},
|
|
1103
|
+
"@types/react-dom": {
|
|
1104
|
+
"optional": true
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
},
|
|
1108
|
+
"node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive": {
|
|
1109
|
+
"version": "2.1.3",
|
|
1110
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
|
|
1111
|
+
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
|
|
1112
|
+
"license": "MIT",
|
|
1113
|
+
"dependencies": {
|
|
1114
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
1115
|
+
},
|
|
1116
|
+
"peerDependencies": {
|
|
1117
|
+
"@types/react": "*",
|
|
1118
|
+
"@types/react-dom": "*",
|
|
1119
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1120
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1121
|
+
},
|
|
1122
|
+
"peerDependenciesMeta": {
|
|
1123
|
+
"@types/react": {
|
|
1124
|
+
"optional": true
|
|
1125
|
+
},
|
|
1126
|
+
"@types/react-dom": {
|
|
1127
|
+
"optional": true
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"node_modules/@radix-ui/react-id": {
|
|
1132
|
+
"version": "1.1.1",
|
|
1133
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
|
|
1134
|
+
"integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
|
|
1135
|
+
"license": "MIT",
|
|
1136
|
+
"dependencies": {
|
|
1137
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
1138
|
+
},
|
|
1139
|
+
"peerDependencies": {
|
|
1140
|
+
"@types/react": "*",
|
|
1141
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1142
|
+
},
|
|
1143
|
+
"peerDependenciesMeta": {
|
|
1144
|
+
"@types/react": {
|
|
1145
|
+
"optional": true
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"node_modules/@radix-ui/react-portal": {
|
|
1150
|
+
"version": "1.1.9",
|
|
1151
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
|
|
1152
|
+
"integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
|
|
1153
|
+
"license": "MIT",
|
|
1154
|
+
"dependencies": {
|
|
1155
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
1156
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
1157
|
+
},
|
|
1158
|
+
"peerDependencies": {
|
|
1159
|
+
"@types/react": "*",
|
|
1160
|
+
"@types/react-dom": "*",
|
|
1161
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1162
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1163
|
+
},
|
|
1164
|
+
"peerDependenciesMeta": {
|
|
1165
|
+
"@types/react": {
|
|
1166
|
+
"optional": true
|
|
1167
|
+
},
|
|
1168
|
+
"@types/react-dom": {
|
|
1169
|
+
"optional": true
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
"node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive": {
|
|
1174
|
+
"version": "2.1.3",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
|
|
1176
|
+
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
|
|
1177
|
+
"license": "MIT",
|
|
1178
|
+
"dependencies": {
|
|
1179
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
1180
|
+
},
|
|
1181
|
+
"peerDependencies": {
|
|
1182
|
+
"@types/react": "*",
|
|
1183
|
+
"@types/react-dom": "*",
|
|
1184
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1185
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1186
|
+
},
|
|
1187
|
+
"peerDependenciesMeta": {
|
|
1188
|
+
"@types/react": {
|
|
1189
|
+
"optional": true
|
|
1190
|
+
},
|
|
1191
|
+
"@types/react-dom": {
|
|
1192
|
+
"optional": true
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
},
|
|
1196
|
+
"node_modules/@radix-ui/react-presence": {
|
|
1197
|
+
"version": "1.1.5",
|
|
1198
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz",
|
|
1199
|
+
"integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
|
|
1200
|
+
"license": "MIT",
|
|
1201
|
+
"dependencies": {
|
|
1202
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
1203
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
1204
|
+
},
|
|
1205
|
+
"peerDependencies": {
|
|
1206
|
+
"@types/react": "*",
|
|
1207
|
+
"@types/react-dom": "*",
|
|
1208
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1209
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1210
|
+
},
|
|
1211
|
+
"peerDependenciesMeta": {
|
|
1212
|
+
"@types/react": {
|
|
1213
|
+
"optional": true
|
|
1214
|
+
},
|
|
1215
|
+
"@types/react-dom": {
|
|
1216
|
+
"optional": true
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"node_modules/@radix-ui/react-primitive": {
|
|
1221
|
+
"version": "2.1.4",
|
|
1222
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.4.tgz",
|
|
1223
|
+
"integrity": "sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==",
|
|
1224
|
+
"license": "MIT",
|
|
1225
|
+
"dependencies": {
|
|
1226
|
+
"@radix-ui/react-slot": "1.2.4"
|
|
1227
|
+
},
|
|
1228
|
+
"peerDependencies": {
|
|
1229
|
+
"@types/react": "*",
|
|
1230
|
+
"@types/react-dom": "*",
|
|
1231
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1232
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1233
|
+
},
|
|
1234
|
+
"peerDependenciesMeta": {
|
|
1235
|
+
"@types/react": {
|
|
1236
|
+
"optional": true
|
|
1237
|
+
},
|
|
1238
|
+
"@types/react-dom": {
|
|
1239
|
+
"optional": true
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot": {
|
|
1244
|
+
"version": "1.2.4",
|
|
1245
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz",
|
|
1246
|
+
"integrity": "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==",
|
|
1247
|
+
"license": "MIT",
|
|
1248
|
+
"dependencies": {
|
|
1249
|
+
"@radix-ui/react-compose-refs": "1.1.2"
|
|
1250
|
+
},
|
|
1251
|
+
"peerDependencies": {
|
|
1252
|
+
"@types/react": "*",
|
|
1253
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1254
|
+
},
|
|
1255
|
+
"peerDependenciesMeta": {
|
|
1256
|
+
"@types/react": {
|
|
1257
|
+
"optional": true
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
"node_modules/@radix-ui/react-slot": {
|
|
1262
|
+
"version": "1.2.3",
|
|
1263
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
|
|
1264
|
+
"integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
|
|
1265
|
+
"license": "MIT",
|
|
1266
|
+
"dependencies": {
|
|
1267
|
+
"@radix-ui/react-compose-refs": "1.1.2"
|
|
1268
|
+
},
|
|
1269
|
+
"peerDependencies": {
|
|
1270
|
+
"@types/react": "*",
|
|
1271
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1272
|
+
},
|
|
1273
|
+
"peerDependenciesMeta": {
|
|
1274
|
+
"@types/react": {
|
|
1275
|
+
"optional": true
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/@radix-ui/react-use-callback-ref": {
|
|
1280
|
+
"version": "1.1.1",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
|
|
1282
|
+
"integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"peerDependencies": {
|
|
1285
|
+
"@types/react": "*",
|
|
1286
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1287
|
+
},
|
|
1288
|
+
"peerDependenciesMeta": {
|
|
1289
|
+
"@types/react": {
|
|
1290
|
+
"optional": true
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1294
|
+
"node_modules/@radix-ui/react-use-controllable-state": {
|
|
1295
|
+
"version": "1.2.2",
|
|
1296
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz",
|
|
1297
|
+
"integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==",
|
|
1298
|
+
"license": "MIT",
|
|
1299
|
+
"dependencies": {
|
|
1300
|
+
"@radix-ui/react-use-effect-event": "0.0.2",
|
|
1301
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
1302
|
+
},
|
|
1303
|
+
"peerDependencies": {
|
|
1304
|
+
"@types/react": "*",
|
|
1305
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1306
|
+
},
|
|
1307
|
+
"peerDependenciesMeta": {
|
|
1308
|
+
"@types/react": {
|
|
1309
|
+
"optional": true
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"node_modules/@radix-ui/react-use-effect-event": {
|
|
1314
|
+
"version": "0.0.2",
|
|
1315
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz",
|
|
1316
|
+
"integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==",
|
|
1317
|
+
"license": "MIT",
|
|
1318
|
+
"dependencies": {
|
|
1319
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
1320
|
+
},
|
|
1321
|
+
"peerDependencies": {
|
|
1322
|
+
"@types/react": "*",
|
|
1323
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1324
|
+
},
|
|
1325
|
+
"peerDependenciesMeta": {
|
|
1326
|
+
"@types/react": {
|
|
1327
|
+
"optional": true
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"node_modules/@radix-ui/react-use-escape-keydown": {
|
|
1332
|
+
"version": "1.1.1",
|
|
1333
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz",
|
|
1334
|
+
"integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==",
|
|
1335
|
+
"license": "MIT",
|
|
1336
|
+
"dependencies": {
|
|
1337
|
+
"@radix-ui/react-use-callback-ref": "1.1.1"
|
|
1338
|
+
},
|
|
1339
|
+
"peerDependencies": {
|
|
1340
|
+
"@types/react": "*",
|
|
1341
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1342
|
+
},
|
|
1343
|
+
"peerDependenciesMeta": {
|
|
1344
|
+
"@types/react": {
|
|
1345
|
+
"optional": true
|
|
1346
|
+
}
|
|
1347
|
+
}
|
|
1348
|
+
},
|
|
1349
|
+
"node_modules/@radix-ui/react-use-layout-effect": {
|
|
1350
|
+
"version": "1.1.1",
|
|
1351
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
|
|
1352
|
+
"integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
|
|
1353
|
+
"license": "MIT",
|
|
1354
|
+
"peerDependencies": {
|
|
1355
|
+
"@types/react": "*",
|
|
1356
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1357
|
+
},
|
|
1358
|
+
"peerDependenciesMeta": {
|
|
1359
|
+
"@types/react": {
|
|
1360
|
+
"optional": true
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
"node_modules/@reduxjs/toolkit": {
|
|
1365
|
+
"version": "2.12.0",
|
|
1366
|
+
"resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.12.0.tgz",
|
|
1367
|
+
"integrity": "sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==",
|
|
1368
|
+
"license": "MIT",
|
|
1369
|
+
"dependencies": {
|
|
1370
|
+
"@standard-schema/spec": "^1.0.0",
|
|
1371
|
+
"@standard-schema/utils": "^0.3.0",
|
|
1372
|
+
"immer": "^11.0.0",
|
|
1373
|
+
"redux": "^5.0.1",
|
|
1374
|
+
"redux-thunk": "^3.1.0",
|
|
1375
|
+
"reselect": "^5.1.0"
|
|
1376
|
+
},
|
|
1377
|
+
"peerDependencies": {
|
|
1378
|
+
"react": "^16.9.0 || ^17.0.0 || ^18 || ^19",
|
|
1379
|
+
"react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0"
|
|
1380
|
+
},
|
|
1381
|
+
"peerDependenciesMeta": {
|
|
1382
|
+
"react": {
|
|
1383
|
+
"optional": true
|
|
1384
|
+
},
|
|
1385
|
+
"react-redux": {
|
|
1386
|
+
"optional": true
|
|
1387
|
+
}
|
|
1388
|
+
}
|
|
1389
|
+
},
|
|
1390
|
+
"node_modules/@reduxjs/toolkit/node_modules/immer": {
|
|
1391
|
+
"version": "11.1.8",
|
|
1392
|
+
"resolved": "https://registry.npmjs.org/immer/-/immer-11.1.8.tgz",
|
|
1393
|
+
"integrity": "sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==",
|
|
1394
|
+
"license": "MIT",
|
|
1395
|
+
"funding": {
|
|
1396
|
+
"type": "opencollective",
|
|
1397
|
+
"url": "https://opencollective.com/immer"
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
"node_modules/@rolldown/pluginutils": {
|
|
1401
|
+
"version": "1.0.0-beta.27",
|
|
1402
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
|
|
1403
|
+
"integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
|
|
1404
|
+
"dev": true,
|
|
1405
|
+
"license": "MIT"
|
|
1406
|
+
},
|
|
1407
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
1408
|
+
"version": "4.61.1",
|
|
1409
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.61.1.tgz",
|
|
1410
|
+
"integrity": "sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==",
|
|
1411
|
+
"cpu": [
|
|
1412
|
+
"arm"
|
|
1413
|
+
],
|
|
1414
|
+
"license": "MIT",
|
|
1415
|
+
"optional": true,
|
|
1416
|
+
"os": [
|
|
1417
|
+
"android"
|
|
1418
|
+
]
|
|
1419
|
+
},
|
|
1420
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
1421
|
+
"version": "4.61.1",
|
|
1422
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.61.1.tgz",
|
|
1423
|
+
"integrity": "sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==",
|
|
1424
|
+
"cpu": [
|
|
1425
|
+
"arm64"
|
|
1426
|
+
],
|
|
1427
|
+
"license": "MIT",
|
|
1428
|
+
"optional": true,
|
|
1429
|
+
"os": [
|
|
1430
|
+
"android"
|
|
1431
|
+
]
|
|
1432
|
+
},
|
|
1433
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
1434
|
+
"version": "4.61.1",
|
|
1435
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.61.1.tgz",
|
|
1436
|
+
"integrity": "sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==",
|
|
1437
|
+
"cpu": [
|
|
1438
|
+
"arm64"
|
|
1439
|
+
],
|
|
1440
|
+
"license": "MIT",
|
|
1441
|
+
"optional": true,
|
|
1442
|
+
"os": [
|
|
1443
|
+
"darwin"
|
|
1444
|
+
]
|
|
1445
|
+
},
|
|
1446
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1447
|
+
"version": "4.61.1",
|
|
1448
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.61.1.tgz",
|
|
1449
|
+
"integrity": "sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==",
|
|
1450
|
+
"cpu": [
|
|
1451
|
+
"x64"
|
|
1452
|
+
],
|
|
1453
|
+
"license": "MIT",
|
|
1454
|
+
"optional": true,
|
|
1455
|
+
"os": [
|
|
1456
|
+
"darwin"
|
|
1457
|
+
]
|
|
1458
|
+
},
|
|
1459
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1460
|
+
"version": "4.61.1",
|
|
1461
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.61.1.tgz",
|
|
1462
|
+
"integrity": "sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==",
|
|
1463
|
+
"cpu": [
|
|
1464
|
+
"arm64"
|
|
1465
|
+
],
|
|
1466
|
+
"license": "MIT",
|
|
1467
|
+
"optional": true,
|
|
1468
|
+
"os": [
|
|
1469
|
+
"freebsd"
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
1472
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1473
|
+
"version": "4.61.1",
|
|
1474
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.61.1.tgz",
|
|
1475
|
+
"integrity": "sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==",
|
|
1476
|
+
"cpu": [
|
|
1477
|
+
"x64"
|
|
1478
|
+
],
|
|
1479
|
+
"license": "MIT",
|
|
1480
|
+
"optional": true,
|
|
1481
|
+
"os": [
|
|
1482
|
+
"freebsd"
|
|
1483
|
+
]
|
|
1484
|
+
},
|
|
1485
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1486
|
+
"version": "4.61.1",
|
|
1487
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.61.1.tgz",
|
|
1488
|
+
"integrity": "sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==",
|
|
1489
|
+
"cpu": [
|
|
1490
|
+
"arm"
|
|
1491
|
+
],
|
|
1492
|
+
"libc": [
|
|
1493
|
+
"glibc"
|
|
1494
|
+
],
|
|
1495
|
+
"license": "MIT",
|
|
1496
|
+
"optional": true,
|
|
1497
|
+
"os": [
|
|
1498
|
+
"linux"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1502
|
+
"version": "4.61.1",
|
|
1503
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.61.1.tgz",
|
|
1504
|
+
"integrity": "sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==",
|
|
1505
|
+
"cpu": [
|
|
1506
|
+
"arm"
|
|
1507
|
+
],
|
|
1508
|
+
"libc": [
|
|
1509
|
+
"musl"
|
|
1510
|
+
],
|
|
1511
|
+
"license": "MIT",
|
|
1512
|
+
"optional": true,
|
|
1513
|
+
"os": [
|
|
1514
|
+
"linux"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1518
|
+
"version": "4.61.1",
|
|
1519
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.61.1.tgz",
|
|
1520
|
+
"integrity": "sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==",
|
|
1521
|
+
"cpu": [
|
|
1522
|
+
"arm64"
|
|
1523
|
+
],
|
|
1524
|
+
"libc": [
|
|
1525
|
+
"glibc"
|
|
1526
|
+
],
|
|
1527
|
+
"license": "MIT",
|
|
1528
|
+
"optional": true,
|
|
1529
|
+
"os": [
|
|
1530
|
+
"linux"
|
|
1531
|
+
]
|
|
1532
|
+
},
|
|
1533
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1534
|
+
"version": "4.61.1",
|
|
1535
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.61.1.tgz",
|
|
1536
|
+
"integrity": "sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==",
|
|
1537
|
+
"cpu": [
|
|
1538
|
+
"arm64"
|
|
1539
|
+
],
|
|
1540
|
+
"libc": [
|
|
1541
|
+
"musl"
|
|
1542
|
+
],
|
|
1543
|
+
"license": "MIT",
|
|
1544
|
+
"optional": true,
|
|
1545
|
+
"os": [
|
|
1546
|
+
"linux"
|
|
1547
|
+
]
|
|
1548
|
+
},
|
|
1549
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1550
|
+
"version": "4.61.1",
|
|
1551
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.61.1.tgz",
|
|
1552
|
+
"integrity": "sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==",
|
|
1553
|
+
"cpu": [
|
|
1554
|
+
"loong64"
|
|
1555
|
+
],
|
|
1556
|
+
"libc": [
|
|
1557
|
+
"glibc"
|
|
1558
|
+
],
|
|
1559
|
+
"license": "MIT",
|
|
1560
|
+
"optional": true,
|
|
1561
|
+
"os": [
|
|
1562
|
+
"linux"
|
|
1563
|
+
]
|
|
1564
|
+
},
|
|
1565
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1566
|
+
"version": "4.61.1",
|
|
1567
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.61.1.tgz",
|
|
1568
|
+
"integrity": "sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==",
|
|
1569
|
+
"cpu": [
|
|
1570
|
+
"loong64"
|
|
1571
|
+
],
|
|
1572
|
+
"libc": [
|
|
1573
|
+
"musl"
|
|
1574
|
+
],
|
|
1575
|
+
"license": "MIT",
|
|
1576
|
+
"optional": true,
|
|
1577
|
+
"os": [
|
|
1578
|
+
"linux"
|
|
1579
|
+
]
|
|
1580
|
+
},
|
|
1581
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1582
|
+
"version": "4.61.1",
|
|
1583
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.61.1.tgz",
|
|
1584
|
+
"integrity": "sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==",
|
|
1585
|
+
"cpu": [
|
|
1586
|
+
"ppc64"
|
|
1587
|
+
],
|
|
1588
|
+
"libc": [
|
|
1589
|
+
"glibc"
|
|
1590
|
+
],
|
|
1591
|
+
"license": "MIT",
|
|
1592
|
+
"optional": true,
|
|
1593
|
+
"os": [
|
|
1594
|
+
"linux"
|
|
1595
|
+
]
|
|
1596
|
+
},
|
|
1597
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1598
|
+
"version": "4.61.1",
|
|
1599
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.61.1.tgz",
|
|
1600
|
+
"integrity": "sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==",
|
|
1601
|
+
"cpu": [
|
|
1602
|
+
"ppc64"
|
|
1603
|
+
],
|
|
1604
|
+
"libc": [
|
|
1605
|
+
"musl"
|
|
1606
|
+
],
|
|
1607
|
+
"license": "MIT",
|
|
1608
|
+
"optional": true,
|
|
1609
|
+
"os": [
|
|
1610
|
+
"linux"
|
|
1611
|
+
]
|
|
1612
|
+
},
|
|
1613
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1614
|
+
"version": "4.61.1",
|
|
1615
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.61.1.tgz",
|
|
1616
|
+
"integrity": "sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==",
|
|
1617
|
+
"cpu": [
|
|
1618
|
+
"riscv64"
|
|
1619
|
+
],
|
|
1620
|
+
"libc": [
|
|
1621
|
+
"glibc"
|
|
1622
|
+
],
|
|
1623
|
+
"license": "MIT",
|
|
1624
|
+
"optional": true,
|
|
1625
|
+
"os": [
|
|
1626
|
+
"linux"
|
|
1627
|
+
]
|
|
1628
|
+
},
|
|
1629
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1630
|
+
"version": "4.61.1",
|
|
1631
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.61.1.tgz",
|
|
1632
|
+
"integrity": "sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==",
|
|
1633
|
+
"cpu": [
|
|
1634
|
+
"riscv64"
|
|
1635
|
+
],
|
|
1636
|
+
"libc": [
|
|
1637
|
+
"musl"
|
|
1638
|
+
],
|
|
1639
|
+
"license": "MIT",
|
|
1640
|
+
"optional": true,
|
|
1641
|
+
"os": [
|
|
1642
|
+
"linux"
|
|
1643
|
+
]
|
|
1644
|
+
},
|
|
1645
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1646
|
+
"version": "4.61.1",
|
|
1647
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.61.1.tgz",
|
|
1648
|
+
"integrity": "sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==",
|
|
1649
|
+
"cpu": [
|
|
1650
|
+
"s390x"
|
|
1651
|
+
],
|
|
1652
|
+
"libc": [
|
|
1653
|
+
"glibc"
|
|
1654
|
+
],
|
|
1655
|
+
"license": "MIT",
|
|
1656
|
+
"optional": true,
|
|
1657
|
+
"os": [
|
|
1658
|
+
"linux"
|
|
1659
|
+
]
|
|
1660
|
+
},
|
|
1661
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1662
|
+
"version": "4.61.1",
|
|
1663
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.61.1.tgz",
|
|
1664
|
+
"integrity": "sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==",
|
|
1665
|
+
"cpu": [
|
|
1666
|
+
"x64"
|
|
1667
|
+
],
|
|
1668
|
+
"libc": [
|
|
1669
|
+
"glibc"
|
|
1670
|
+
],
|
|
1671
|
+
"license": "MIT",
|
|
1672
|
+
"optional": true,
|
|
1673
|
+
"os": [
|
|
1674
|
+
"linux"
|
|
1675
|
+
]
|
|
1676
|
+
},
|
|
1677
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1678
|
+
"version": "4.61.1",
|
|
1679
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.61.1.tgz",
|
|
1680
|
+
"integrity": "sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==",
|
|
1681
|
+
"cpu": [
|
|
1682
|
+
"x64"
|
|
1683
|
+
],
|
|
1684
|
+
"libc": [
|
|
1685
|
+
"musl"
|
|
1686
|
+
],
|
|
1687
|
+
"license": "MIT",
|
|
1688
|
+
"optional": true,
|
|
1689
|
+
"os": [
|
|
1690
|
+
"linux"
|
|
1691
|
+
]
|
|
1692
|
+
},
|
|
1693
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1694
|
+
"version": "4.61.1",
|
|
1695
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.61.1.tgz",
|
|
1696
|
+
"integrity": "sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==",
|
|
1697
|
+
"cpu": [
|
|
1698
|
+
"x64"
|
|
1699
|
+
],
|
|
1700
|
+
"license": "MIT",
|
|
1701
|
+
"optional": true,
|
|
1702
|
+
"os": [
|
|
1703
|
+
"openbsd"
|
|
1704
|
+
]
|
|
1705
|
+
},
|
|
1706
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1707
|
+
"version": "4.61.1",
|
|
1708
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.61.1.tgz",
|
|
1709
|
+
"integrity": "sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==",
|
|
1710
|
+
"cpu": [
|
|
1711
|
+
"arm64"
|
|
1712
|
+
],
|
|
1713
|
+
"license": "MIT",
|
|
1714
|
+
"optional": true,
|
|
1715
|
+
"os": [
|
|
1716
|
+
"openharmony"
|
|
1717
|
+
]
|
|
1718
|
+
},
|
|
1719
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1720
|
+
"version": "4.61.1",
|
|
1721
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.61.1.tgz",
|
|
1722
|
+
"integrity": "sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==",
|
|
1723
|
+
"cpu": [
|
|
1724
|
+
"arm64"
|
|
1725
|
+
],
|
|
1726
|
+
"license": "MIT",
|
|
1727
|
+
"optional": true,
|
|
1728
|
+
"os": [
|
|
1729
|
+
"win32"
|
|
1730
|
+
]
|
|
1731
|
+
},
|
|
1732
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1733
|
+
"version": "4.61.1",
|
|
1734
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.61.1.tgz",
|
|
1735
|
+
"integrity": "sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==",
|
|
1736
|
+
"cpu": [
|
|
1737
|
+
"ia32"
|
|
1738
|
+
],
|
|
1739
|
+
"license": "MIT",
|
|
1740
|
+
"optional": true,
|
|
1741
|
+
"os": [
|
|
1742
|
+
"win32"
|
|
1743
|
+
]
|
|
1744
|
+
},
|
|
1745
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1746
|
+
"version": "4.61.1",
|
|
1747
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.61.1.tgz",
|
|
1748
|
+
"integrity": "sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==",
|
|
1749
|
+
"cpu": [
|
|
1750
|
+
"x64"
|
|
1751
|
+
],
|
|
1752
|
+
"license": "MIT",
|
|
1753
|
+
"optional": true,
|
|
1754
|
+
"os": [
|
|
1755
|
+
"win32"
|
|
1756
|
+
]
|
|
1757
|
+
},
|
|
1758
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1759
|
+
"version": "4.61.1",
|
|
1760
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.61.1.tgz",
|
|
1761
|
+
"integrity": "sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==",
|
|
1762
|
+
"cpu": [
|
|
1763
|
+
"x64"
|
|
1764
|
+
],
|
|
1765
|
+
"license": "MIT",
|
|
1766
|
+
"optional": true,
|
|
1767
|
+
"os": [
|
|
1768
|
+
"win32"
|
|
1769
|
+
]
|
|
1770
|
+
},
|
|
1771
|
+
"node_modules/@standard-schema/spec": {
|
|
1772
|
+
"version": "1.1.0",
|
|
1773
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
1774
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
1775
|
+
"license": "MIT"
|
|
1776
|
+
},
|
|
1777
|
+
"node_modules/@standard-schema/utils": {
|
|
1778
|
+
"version": "0.3.0",
|
|
1779
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
|
|
1780
|
+
"integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
|
|
1781
|
+
"license": "MIT"
|
|
1782
|
+
},
|
|
1783
|
+
"node_modules/@tailwindcss/node": {
|
|
1784
|
+
"version": "4.3.0",
|
|
1785
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz",
|
|
1786
|
+
"integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==",
|
|
1787
|
+
"license": "MIT",
|
|
1788
|
+
"dependencies": {
|
|
1789
|
+
"@jridgewell/remapping": "^2.3.5",
|
|
1790
|
+
"enhanced-resolve": "^5.21.0",
|
|
1791
|
+
"jiti": "^2.6.1",
|
|
1792
|
+
"lightningcss": "1.32.0",
|
|
1793
|
+
"magic-string": "^0.30.21",
|
|
1794
|
+
"source-map-js": "^1.2.1",
|
|
1795
|
+
"tailwindcss": "4.3.0"
|
|
1796
|
+
}
|
|
1797
|
+
},
|
|
1798
|
+
"node_modules/@tailwindcss/oxide": {
|
|
1799
|
+
"version": "4.3.0",
|
|
1800
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz",
|
|
1801
|
+
"integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==",
|
|
1802
|
+
"license": "MIT",
|
|
1803
|
+
"engines": {
|
|
1804
|
+
"node": ">= 20"
|
|
1805
|
+
},
|
|
1806
|
+
"optionalDependencies": {
|
|
1807
|
+
"@tailwindcss/oxide-android-arm64": "4.3.0",
|
|
1808
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.0",
|
|
1809
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.0",
|
|
1810
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.0",
|
|
1811
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0",
|
|
1812
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.0",
|
|
1813
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.0",
|
|
1814
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.0",
|
|
1815
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.0",
|
|
1816
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.0",
|
|
1817
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.0",
|
|
1818
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.0"
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
1822
|
+
"version": "4.3.0",
|
|
1823
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz",
|
|
1824
|
+
"integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==",
|
|
1825
|
+
"cpu": [
|
|
1826
|
+
"arm64"
|
|
1827
|
+
],
|
|
1828
|
+
"license": "MIT",
|
|
1829
|
+
"optional": true,
|
|
1830
|
+
"os": [
|
|
1831
|
+
"android"
|
|
1832
|
+
],
|
|
1833
|
+
"engines": {
|
|
1834
|
+
"node": ">= 20"
|
|
1835
|
+
}
|
|
1836
|
+
},
|
|
1837
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
1838
|
+
"version": "4.3.0",
|
|
1839
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz",
|
|
1840
|
+
"integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==",
|
|
1841
|
+
"cpu": [
|
|
1842
|
+
"arm64"
|
|
1843
|
+
],
|
|
1844
|
+
"license": "MIT",
|
|
1845
|
+
"optional": true,
|
|
1846
|
+
"os": [
|
|
1847
|
+
"darwin"
|
|
1848
|
+
],
|
|
1849
|
+
"engines": {
|
|
1850
|
+
"node": ">= 20"
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
1854
|
+
"version": "4.3.0",
|
|
1855
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz",
|
|
1856
|
+
"integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==",
|
|
1857
|
+
"cpu": [
|
|
1858
|
+
"x64"
|
|
1859
|
+
],
|
|
1860
|
+
"license": "MIT",
|
|
1861
|
+
"optional": true,
|
|
1862
|
+
"os": [
|
|
1863
|
+
"darwin"
|
|
1864
|
+
],
|
|
1865
|
+
"engines": {
|
|
1866
|
+
"node": ">= 20"
|
|
1867
|
+
}
|
|
1868
|
+
},
|
|
1869
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
1870
|
+
"version": "4.3.0",
|
|
1871
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz",
|
|
1872
|
+
"integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==",
|
|
1873
|
+
"cpu": [
|
|
1874
|
+
"x64"
|
|
1875
|
+
],
|
|
1876
|
+
"license": "MIT",
|
|
1877
|
+
"optional": true,
|
|
1878
|
+
"os": [
|
|
1879
|
+
"freebsd"
|
|
1880
|
+
],
|
|
1881
|
+
"engines": {
|
|
1882
|
+
"node": ">= 20"
|
|
1883
|
+
}
|
|
1884
|
+
},
|
|
1885
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
1886
|
+
"version": "4.3.0",
|
|
1887
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz",
|
|
1888
|
+
"integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==",
|
|
1889
|
+
"cpu": [
|
|
1890
|
+
"arm"
|
|
1891
|
+
],
|
|
1892
|
+
"license": "MIT",
|
|
1893
|
+
"optional": true,
|
|
1894
|
+
"os": [
|
|
1895
|
+
"linux"
|
|
1896
|
+
],
|
|
1897
|
+
"engines": {
|
|
1898
|
+
"node": ">= 20"
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
1902
|
+
"version": "4.3.0",
|
|
1903
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz",
|
|
1904
|
+
"integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==",
|
|
1905
|
+
"cpu": [
|
|
1906
|
+
"arm64"
|
|
1907
|
+
],
|
|
1908
|
+
"libc": [
|
|
1909
|
+
"glibc"
|
|
1910
|
+
],
|
|
1911
|
+
"license": "MIT",
|
|
1912
|
+
"optional": true,
|
|
1913
|
+
"os": [
|
|
1914
|
+
"linux"
|
|
1915
|
+
],
|
|
1916
|
+
"engines": {
|
|
1917
|
+
"node": ">= 20"
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
1921
|
+
"version": "4.3.0",
|
|
1922
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz",
|
|
1923
|
+
"integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==",
|
|
1924
|
+
"cpu": [
|
|
1925
|
+
"arm64"
|
|
1926
|
+
],
|
|
1927
|
+
"libc": [
|
|
1928
|
+
"musl"
|
|
1929
|
+
],
|
|
1930
|
+
"license": "MIT",
|
|
1931
|
+
"optional": true,
|
|
1932
|
+
"os": [
|
|
1933
|
+
"linux"
|
|
1934
|
+
],
|
|
1935
|
+
"engines": {
|
|
1936
|
+
"node": ">= 20"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
1940
|
+
"version": "4.3.0",
|
|
1941
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz",
|
|
1942
|
+
"integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==",
|
|
1943
|
+
"cpu": [
|
|
1944
|
+
"x64"
|
|
1945
|
+
],
|
|
1946
|
+
"libc": [
|
|
1947
|
+
"glibc"
|
|
1948
|
+
],
|
|
1949
|
+
"license": "MIT",
|
|
1950
|
+
"optional": true,
|
|
1951
|
+
"os": [
|
|
1952
|
+
"linux"
|
|
1953
|
+
],
|
|
1954
|
+
"engines": {
|
|
1955
|
+
"node": ">= 20"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
1959
|
+
"version": "4.3.0",
|
|
1960
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz",
|
|
1961
|
+
"integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==",
|
|
1962
|
+
"cpu": [
|
|
1963
|
+
"x64"
|
|
1964
|
+
],
|
|
1965
|
+
"libc": [
|
|
1966
|
+
"musl"
|
|
1967
|
+
],
|
|
1968
|
+
"license": "MIT",
|
|
1969
|
+
"optional": true,
|
|
1970
|
+
"os": [
|
|
1971
|
+
"linux"
|
|
1972
|
+
],
|
|
1973
|
+
"engines": {
|
|
1974
|
+
"node": ">= 20"
|
|
1975
|
+
}
|
|
1976
|
+
},
|
|
1977
|
+
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
1978
|
+
"version": "4.3.0",
|
|
1979
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz",
|
|
1980
|
+
"integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==",
|
|
1981
|
+
"bundleDependencies": [
|
|
1982
|
+
"@napi-rs/wasm-runtime",
|
|
1983
|
+
"@emnapi/core",
|
|
1984
|
+
"@emnapi/runtime",
|
|
1985
|
+
"@tybys/wasm-util",
|
|
1986
|
+
"@emnapi/wasi-threads",
|
|
1987
|
+
"tslib"
|
|
1988
|
+
],
|
|
1989
|
+
"cpu": [
|
|
1990
|
+
"wasm32"
|
|
1991
|
+
],
|
|
1992
|
+
"license": "MIT",
|
|
1993
|
+
"optional": true,
|
|
1994
|
+
"dependencies": {
|
|
1995
|
+
"@emnapi/core": "^1.10.0",
|
|
1996
|
+
"@emnapi/runtime": "^1.10.0",
|
|
1997
|
+
"@emnapi/wasi-threads": "^1.2.1",
|
|
1998
|
+
"@napi-rs/wasm-runtime": "^1.1.4",
|
|
1999
|
+
"@tybys/wasm-util": "^0.10.1",
|
|
2000
|
+
"tslib": "^2.8.1"
|
|
2001
|
+
},
|
|
2002
|
+
"engines": {
|
|
2003
|
+
"node": ">=14.0.0"
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
2007
|
+
"version": "4.3.0",
|
|
2008
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz",
|
|
2009
|
+
"integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==",
|
|
2010
|
+
"cpu": [
|
|
2011
|
+
"arm64"
|
|
2012
|
+
],
|
|
2013
|
+
"license": "MIT",
|
|
2014
|
+
"optional": true,
|
|
2015
|
+
"os": [
|
|
2016
|
+
"win32"
|
|
2017
|
+
],
|
|
2018
|
+
"engines": {
|
|
2019
|
+
"node": ">= 20"
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
2023
|
+
"version": "4.3.0",
|
|
2024
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz",
|
|
2025
|
+
"integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==",
|
|
2026
|
+
"cpu": [
|
|
2027
|
+
"x64"
|
|
2028
|
+
],
|
|
2029
|
+
"license": "MIT",
|
|
2030
|
+
"optional": true,
|
|
2031
|
+
"os": [
|
|
2032
|
+
"win32"
|
|
2033
|
+
],
|
|
2034
|
+
"engines": {
|
|
2035
|
+
"node": ">= 20"
|
|
2036
|
+
}
|
|
2037
|
+
},
|
|
2038
|
+
"node_modules/@tailwindcss/vite": {
|
|
2039
|
+
"version": "4.3.0",
|
|
2040
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz",
|
|
2041
|
+
"integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==",
|
|
2042
|
+
"license": "MIT",
|
|
2043
|
+
"dependencies": {
|
|
2044
|
+
"@tailwindcss/node": "4.3.0",
|
|
2045
|
+
"@tailwindcss/oxide": "4.3.0",
|
|
2046
|
+
"tailwindcss": "4.3.0"
|
|
2047
|
+
},
|
|
2048
|
+
"peerDependencies": {
|
|
2049
|
+
"vite": "^5.2.0 || ^6 || ^7 || ^8"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
2052
|
+
"node_modules/@types/babel__core": {
|
|
2053
|
+
"version": "7.20.5",
|
|
2054
|
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
|
2055
|
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
|
2056
|
+
"dev": true,
|
|
2057
|
+
"license": "MIT",
|
|
2058
|
+
"dependencies": {
|
|
2059
|
+
"@babel/parser": "^7.20.7",
|
|
2060
|
+
"@babel/types": "^7.20.7",
|
|
2061
|
+
"@types/babel__generator": "*",
|
|
2062
|
+
"@types/babel__template": "*",
|
|
2063
|
+
"@types/babel__traverse": "*"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
"node_modules/@types/babel__generator": {
|
|
2067
|
+
"version": "7.27.0",
|
|
2068
|
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
|
2069
|
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
|
2070
|
+
"dev": true,
|
|
2071
|
+
"license": "MIT",
|
|
2072
|
+
"dependencies": {
|
|
2073
|
+
"@babel/types": "^7.0.0"
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"node_modules/@types/babel__template": {
|
|
2077
|
+
"version": "7.4.4",
|
|
2078
|
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
|
2079
|
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
|
2080
|
+
"dev": true,
|
|
2081
|
+
"license": "MIT",
|
|
2082
|
+
"dependencies": {
|
|
2083
|
+
"@babel/parser": "^7.1.0",
|
|
2084
|
+
"@babel/types": "^7.0.0"
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"node_modules/@types/babel__traverse": {
|
|
2088
|
+
"version": "7.28.0",
|
|
2089
|
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
|
2090
|
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
|
2091
|
+
"dev": true,
|
|
2092
|
+
"license": "MIT",
|
|
2093
|
+
"dependencies": {
|
|
2094
|
+
"@babel/types": "^7.28.2"
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
"node_modules/@types/d3-array": {
|
|
2098
|
+
"version": "3.2.2",
|
|
2099
|
+
"resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
|
|
2100
|
+
"integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
|
|
2101
|
+
"license": "MIT"
|
|
2102
|
+
},
|
|
2103
|
+
"node_modules/@types/d3-color": {
|
|
2104
|
+
"version": "3.1.3",
|
|
2105
|
+
"resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
|
|
2106
|
+
"integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
|
|
2107
|
+
"license": "MIT"
|
|
2108
|
+
},
|
|
2109
|
+
"node_modules/@types/d3-drag": {
|
|
2110
|
+
"version": "3.0.7",
|
|
2111
|
+
"resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
|
|
2112
|
+
"integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
|
|
2113
|
+
"dev": true,
|
|
2114
|
+
"license": "MIT",
|
|
2115
|
+
"dependencies": {
|
|
2116
|
+
"@types/d3-selection": "*"
|
|
2117
|
+
}
|
|
2118
|
+
},
|
|
2119
|
+
"node_modules/@types/d3-ease": {
|
|
2120
|
+
"version": "3.0.2",
|
|
2121
|
+
"resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
|
|
2122
|
+
"integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
|
|
2123
|
+
"license": "MIT"
|
|
2124
|
+
},
|
|
2125
|
+
"node_modules/@types/d3-force": {
|
|
2126
|
+
"version": "3.0.10",
|
|
2127
|
+
"resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
|
|
2128
|
+
"integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
|
|
2129
|
+
"dev": true,
|
|
2130
|
+
"license": "MIT"
|
|
2131
|
+
},
|
|
2132
|
+
"node_modules/@types/d3-interpolate": {
|
|
2133
|
+
"version": "3.0.4",
|
|
2134
|
+
"resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
|
|
2135
|
+
"integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
|
|
2136
|
+
"license": "MIT",
|
|
2137
|
+
"dependencies": {
|
|
2138
|
+
"@types/d3-color": "*"
|
|
2139
|
+
}
|
|
2140
|
+
},
|
|
2141
|
+
"node_modules/@types/d3-path": {
|
|
2142
|
+
"version": "3.1.1",
|
|
2143
|
+
"resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
|
|
2144
|
+
"integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
|
|
2145
|
+
"license": "MIT"
|
|
2146
|
+
},
|
|
2147
|
+
"node_modules/@types/d3-scale": {
|
|
2148
|
+
"version": "4.0.9",
|
|
2149
|
+
"resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
|
|
2150
|
+
"integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
|
|
2151
|
+
"license": "MIT",
|
|
2152
|
+
"dependencies": {
|
|
2153
|
+
"@types/d3-time": "*"
|
|
2154
|
+
}
|
|
2155
|
+
},
|
|
2156
|
+
"node_modules/@types/d3-selection": {
|
|
2157
|
+
"version": "3.0.11",
|
|
2158
|
+
"resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
|
|
2159
|
+
"integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
|
|
2160
|
+
"dev": true,
|
|
2161
|
+
"license": "MIT"
|
|
2162
|
+
},
|
|
2163
|
+
"node_modules/@types/d3-shape": {
|
|
2164
|
+
"version": "3.1.8",
|
|
2165
|
+
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
|
|
2166
|
+
"integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
|
|
2167
|
+
"license": "MIT",
|
|
2168
|
+
"dependencies": {
|
|
2169
|
+
"@types/d3-path": "*"
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
"node_modules/@types/d3-time": {
|
|
2173
|
+
"version": "3.0.4",
|
|
2174
|
+
"resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
|
|
2175
|
+
"integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
|
|
2176
|
+
"license": "MIT"
|
|
2177
|
+
},
|
|
2178
|
+
"node_modules/@types/d3-timer": {
|
|
2179
|
+
"version": "3.0.2",
|
|
2180
|
+
"resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
|
|
2181
|
+
"integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
|
|
2182
|
+
"license": "MIT"
|
|
2183
|
+
},
|
|
2184
|
+
"node_modules/@types/estree": {
|
|
2185
|
+
"version": "1.0.9",
|
|
2186
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
2187
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
2188
|
+
"license": "MIT"
|
|
2189
|
+
},
|
|
2190
|
+
"node_modules/@types/node": {
|
|
2191
|
+
"version": "25.9.1",
|
|
2192
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz",
|
|
2193
|
+
"integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
|
|
2194
|
+
"devOptional": true,
|
|
2195
|
+
"license": "MIT",
|
|
2196
|
+
"dependencies": {
|
|
2197
|
+
"undici-types": ">=7.24.0 <7.24.7"
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"node_modules/@types/qrcode": {
|
|
2201
|
+
"version": "1.5.6",
|
|
2202
|
+
"resolved": "https://registry.npmjs.org/@types/qrcode/-/qrcode-1.5.6.tgz",
|
|
2203
|
+
"integrity": "sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==",
|
|
2204
|
+
"dev": true,
|
|
2205
|
+
"license": "MIT",
|
|
2206
|
+
"dependencies": {
|
|
2207
|
+
"@types/node": "*"
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/@types/react": {
|
|
2211
|
+
"version": "19.2.16",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
|
|
2213
|
+
"integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
|
|
2214
|
+
"devOptional": true,
|
|
2215
|
+
"license": "MIT",
|
|
2216
|
+
"dependencies": {
|
|
2217
|
+
"csstype": "^3.2.2"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
"node_modules/@types/react-dom": {
|
|
2221
|
+
"version": "19.2.3",
|
|
2222
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
2223
|
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
2224
|
+
"devOptional": true,
|
|
2225
|
+
"license": "MIT",
|
|
2226
|
+
"peerDependencies": {
|
|
2227
|
+
"@types/react": "^19.2.0"
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"node_modules/@types/use-sync-external-store": {
|
|
2231
|
+
"version": "0.0.6",
|
|
2232
|
+
"resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz",
|
|
2233
|
+
"integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==",
|
|
2234
|
+
"license": "MIT"
|
|
2235
|
+
},
|
|
2236
|
+
"node_modules/@vitejs/plugin-react": {
|
|
2237
|
+
"version": "4.7.0",
|
|
2238
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
|
|
2239
|
+
"integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
|
|
2240
|
+
"dev": true,
|
|
2241
|
+
"license": "MIT",
|
|
2242
|
+
"dependencies": {
|
|
2243
|
+
"@babel/core": "^7.28.0",
|
|
2244
|
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
|
2245
|
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
|
2246
|
+
"@rolldown/pluginutils": "1.0.0-beta.27",
|
|
2247
|
+
"@types/babel__core": "^7.20.5",
|
|
2248
|
+
"react-refresh": "^0.17.0"
|
|
2249
|
+
},
|
|
2250
|
+
"engines": {
|
|
2251
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
2252
|
+
},
|
|
2253
|
+
"peerDependencies": {
|
|
2254
|
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
2255
|
+
}
|
|
2256
|
+
},
|
|
2257
|
+
"node_modules/ansi-regex": {
|
|
2258
|
+
"version": "5.0.1",
|
|
2259
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
2260
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
2261
|
+
"license": "MIT",
|
|
2262
|
+
"engines": {
|
|
2263
|
+
"node": ">=8"
|
|
2264
|
+
}
|
|
2265
|
+
},
|
|
2266
|
+
"node_modules/ansi-styles": {
|
|
2267
|
+
"version": "4.3.0",
|
|
2268
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
2269
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2270
|
+
"license": "MIT",
|
|
2271
|
+
"dependencies": {
|
|
2272
|
+
"color-convert": "^2.0.1"
|
|
2273
|
+
},
|
|
2274
|
+
"engines": {
|
|
2275
|
+
"node": ">=8"
|
|
2276
|
+
},
|
|
2277
|
+
"funding": {
|
|
2278
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
2279
|
+
}
|
|
2280
|
+
},
|
|
2281
|
+
"node_modules/aria-hidden": {
|
|
2282
|
+
"version": "1.2.6",
|
|
2283
|
+
"resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
|
|
2284
|
+
"integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
|
|
2285
|
+
"license": "MIT",
|
|
2286
|
+
"dependencies": {
|
|
2287
|
+
"tslib": "^2.0.0"
|
|
2288
|
+
},
|
|
2289
|
+
"engines": {
|
|
2290
|
+
"node": ">=10"
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
"node_modules/baseline-browser-mapping": {
|
|
2294
|
+
"version": "2.10.33",
|
|
2295
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.33.tgz",
|
|
2296
|
+
"integrity": "sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==",
|
|
2297
|
+
"dev": true,
|
|
2298
|
+
"license": "Apache-2.0",
|
|
2299
|
+
"bin": {
|
|
2300
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
2301
|
+
},
|
|
2302
|
+
"engines": {
|
|
2303
|
+
"node": ">=6.0.0"
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
"node_modules/browserslist": {
|
|
2307
|
+
"version": "4.28.2",
|
|
2308
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
|
|
2309
|
+
"integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
|
|
2310
|
+
"dev": true,
|
|
2311
|
+
"funding": [
|
|
2312
|
+
{
|
|
2313
|
+
"type": "opencollective",
|
|
2314
|
+
"url": "https://opencollective.com/browserslist"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"type": "tidelift",
|
|
2318
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
"type": "github",
|
|
2322
|
+
"url": "https://github.com/sponsors/ai"
|
|
2323
|
+
}
|
|
2324
|
+
],
|
|
2325
|
+
"license": "MIT",
|
|
2326
|
+
"dependencies": {
|
|
2327
|
+
"baseline-browser-mapping": "^2.10.12",
|
|
2328
|
+
"caniuse-lite": "^1.0.30001782",
|
|
2329
|
+
"electron-to-chromium": "^1.5.328",
|
|
2330
|
+
"node-releases": "^2.0.36",
|
|
2331
|
+
"update-browserslist-db": "^1.2.3"
|
|
2332
|
+
},
|
|
2333
|
+
"bin": {
|
|
2334
|
+
"browserslist": "cli.js"
|
|
2335
|
+
},
|
|
2336
|
+
"engines": {
|
|
2337
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
"node_modules/camelcase": {
|
|
2341
|
+
"version": "5.3.1",
|
|
2342
|
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
|
2343
|
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
|
2344
|
+
"license": "MIT",
|
|
2345
|
+
"engines": {
|
|
2346
|
+
"node": ">=6"
|
|
2347
|
+
}
|
|
2348
|
+
},
|
|
2349
|
+
"node_modules/caniuse-lite": {
|
|
2350
|
+
"version": "1.0.30001793",
|
|
2351
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz",
|
|
2352
|
+
"integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
|
|
2353
|
+
"dev": true,
|
|
2354
|
+
"funding": [
|
|
2355
|
+
{
|
|
2356
|
+
"type": "opencollective",
|
|
2357
|
+
"url": "https://opencollective.com/browserslist"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"type": "tidelift",
|
|
2361
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"type": "github",
|
|
2365
|
+
"url": "https://github.com/sponsors/ai"
|
|
2366
|
+
}
|
|
2367
|
+
],
|
|
2368
|
+
"license": "CC-BY-4.0"
|
|
2369
|
+
},
|
|
2370
|
+
"node_modules/class-variance-authority": {
|
|
2371
|
+
"version": "0.7.1",
|
|
2372
|
+
"resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
|
|
2373
|
+
"integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
|
|
2374
|
+
"license": "Apache-2.0",
|
|
2375
|
+
"dependencies": {
|
|
2376
|
+
"clsx": "^2.1.1"
|
|
2377
|
+
},
|
|
2378
|
+
"funding": {
|
|
2379
|
+
"url": "https://polar.sh/cva"
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2382
|
+
"node_modules/cliui": {
|
|
2383
|
+
"version": "6.0.0",
|
|
2384
|
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
|
|
2385
|
+
"integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
|
|
2386
|
+
"license": "ISC",
|
|
2387
|
+
"dependencies": {
|
|
2388
|
+
"string-width": "^4.2.0",
|
|
2389
|
+
"strip-ansi": "^6.0.0",
|
|
2390
|
+
"wrap-ansi": "^6.2.0"
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
"node_modules/clsx": {
|
|
2394
|
+
"version": "2.1.1",
|
|
2395
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
2396
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
2397
|
+
"license": "MIT",
|
|
2398
|
+
"engines": {
|
|
2399
|
+
"node": ">=6"
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
"node_modules/cmdk": {
|
|
2403
|
+
"version": "1.1.1",
|
|
2404
|
+
"resolved": "https://registry.npmjs.org/cmdk/-/cmdk-1.1.1.tgz",
|
|
2405
|
+
"integrity": "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==",
|
|
2406
|
+
"license": "MIT",
|
|
2407
|
+
"dependencies": {
|
|
2408
|
+
"@radix-ui/react-compose-refs": "^1.1.1",
|
|
2409
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
2410
|
+
"@radix-ui/react-id": "^1.1.0",
|
|
2411
|
+
"@radix-ui/react-primitive": "^2.0.2"
|
|
2412
|
+
},
|
|
2413
|
+
"peerDependencies": {
|
|
2414
|
+
"react": "^18 || ^19 || ^19.0.0-rc",
|
|
2415
|
+
"react-dom": "^18 || ^19 || ^19.0.0-rc"
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
"node_modules/color-convert": {
|
|
2419
|
+
"version": "2.0.1",
|
|
2420
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
2421
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
2422
|
+
"license": "MIT",
|
|
2423
|
+
"dependencies": {
|
|
2424
|
+
"color-name": "~1.1.4"
|
|
2425
|
+
},
|
|
2426
|
+
"engines": {
|
|
2427
|
+
"node": ">=7.0.0"
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
"node_modules/color-name": {
|
|
2431
|
+
"version": "1.1.4",
|
|
2432
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
2433
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
2434
|
+
"license": "MIT"
|
|
2435
|
+
},
|
|
2436
|
+
"node_modules/convert-source-map": {
|
|
2437
|
+
"version": "2.0.0",
|
|
2438
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
|
2439
|
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
|
2440
|
+
"dev": true,
|
|
2441
|
+
"license": "MIT"
|
|
2442
|
+
},
|
|
2443
|
+
"node_modules/cookie": {
|
|
2444
|
+
"version": "1.1.1",
|
|
2445
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
2446
|
+
"integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
|
|
2447
|
+
"license": "MIT",
|
|
2448
|
+
"engines": {
|
|
2449
|
+
"node": ">=18"
|
|
2450
|
+
},
|
|
2451
|
+
"funding": {
|
|
2452
|
+
"type": "opencollective",
|
|
2453
|
+
"url": "https://opencollective.com/express"
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
"node_modules/csstype": {
|
|
2457
|
+
"version": "3.2.3",
|
|
2458
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
2459
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
2460
|
+
"devOptional": true,
|
|
2461
|
+
"license": "MIT"
|
|
2462
|
+
},
|
|
2463
|
+
"node_modules/d3-array": {
|
|
2464
|
+
"version": "3.2.4",
|
|
2465
|
+
"resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
|
|
2466
|
+
"integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
|
|
2467
|
+
"license": "ISC",
|
|
2468
|
+
"dependencies": {
|
|
2469
|
+
"internmap": "1 - 2"
|
|
2470
|
+
},
|
|
2471
|
+
"engines": {
|
|
2472
|
+
"node": ">=12"
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"node_modules/d3-color": {
|
|
2476
|
+
"version": "3.1.0",
|
|
2477
|
+
"resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
|
|
2478
|
+
"integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
|
|
2479
|
+
"license": "ISC",
|
|
2480
|
+
"engines": {
|
|
2481
|
+
"node": ">=12"
|
|
2482
|
+
}
|
|
2483
|
+
},
|
|
2484
|
+
"node_modules/d3-dispatch": {
|
|
2485
|
+
"version": "3.0.1",
|
|
2486
|
+
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
|
|
2487
|
+
"integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
|
|
2488
|
+
"license": "ISC",
|
|
2489
|
+
"engines": {
|
|
2490
|
+
"node": ">=12"
|
|
2491
|
+
}
|
|
2492
|
+
},
|
|
2493
|
+
"node_modules/d3-drag": {
|
|
2494
|
+
"version": "3.0.0",
|
|
2495
|
+
"resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
|
|
2496
|
+
"integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
|
|
2497
|
+
"license": "ISC",
|
|
2498
|
+
"dependencies": {
|
|
2499
|
+
"d3-dispatch": "1 - 3",
|
|
2500
|
+
"d3-selection": "3"
|
|
2501
|
+
},
|
|
2502
|
+
"engines": {
|
|
2503
|
+
"node": ">=12"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
"node_modules/d3-ease": {
|
|
2507
|
+
"version": "3.0.1",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
|
|
2509
|
+
"integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
|
|
2510
|
+
"license": "BSD-3-Clause",
|
|
2511
|
+
"engines": {
|
|
2512
|
+
"node": ">=12"
|
|
2513
|
+
}
|
|
2514
|
+
},
|
|
2515
|
+
"node_modules/d3-force": {
|
|
2516
|
+
"version": "3.0.0",
|
|
2517
|
+
"resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
|
|
2518
|
+
"integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
|
|
2519
|
+
"license": "ISC",
|
|
2520
|
+
"dependencies": {
|
|
2521
|
+
"d3-dispatch": "1 - 3",
|
|
2522
|
+
"d3-quadtree": "1 - 3",
|
|
2523
|
+
"d3-timer": "1 - 3"
|
|
2524
|
+
},
|
|
2525
|
+
"engines": {
|
|
2526
|
+
"node": ">=12"
|
|
2527
|
+
}
|
|
2528
|
+
},
|
|
2529
|
+
"node_modules/d3-format": {
|
|
2530
|
+
"version": "3.1.2",
|
|
2531
|
+
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
|
|
2532
|
+
"integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
|
|
2533
|
+
"license": "ISC",
|
|
2534
|
+
"engines": {
|
|
2535
|
+
"node": ">=12"
|
|
2536
|
+
}
|
|
2537
|
+
},
|
|
2538
|
+
"node_modules/d3-interpolate": {
|
|
2539
|
+
"version": "3.0.1",
|
|
2540
|
+
"resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
|
|
2541
|
+
"integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
|
|
2542
|
+
"license": "ISC",
|
|
2543
|
+
"dependencies": {
|
|
2544
|
+
"d3-color": "1 - 3"
|
|
2545
|
+
},
|
|
2546
|
+
"engines": {
|
|
2547
|
+
"node": ">=12"
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"node_modules/d3-path": {
|
|
2551
|
+
"version": "3.1.0",
|
|
2552
|
+
"resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
|
|
2553
|
+
"integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
|
|
2554
|
+
"license": "ISC",
|
|
2555
|
+
"engines": {
|
|
2556
|
+
"node": ">=12"
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2559
|
+
"node_modules/d3-quadtree": {
|
|
2560
|
+
"version": "3.0.1",
|
|
2561
|
+
"resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
|
|
2562
|
+
"integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
|
|
2563
|
+
"license": "ISC",
|
|
2564
|
+
"engines": {
|
|
2565
|
+
"node": ">=12"
|
|
2566
|
+
}
|
|
2567
|
+
},
|
|
2568
|
+
"node_modules/d3-scale": {
|
|
2569
|
+
"version": "4.0.2",
|
|
2570
|
+
"resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
|
|
2571
|
+
"integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
|
|
2572
|
+
"license": "ISC",
|
|
2573
|
+
"dependencies": {
|
|
2574
|
+
"d3-array": "2.10.0 - 3",
|
|
2575
|
+
"d3-format": "1 - 3",
|
|
2576
|
+
"d3-interpolate": "1.2.0 - 3",
|
|
2577
|
+
"d3-time": "2.1.1 - 3",
|
|
2578
|
+
"d3-time-format": "2 - 4"
|
|
2579
|
+
},
|
|
2580
|
+
"engines": {
|
|
2581
|
+
"node": ">=12"
|
|
2582
|
+
}
|
|
2583
|
+
},
|
|
2584
|
+
"node_modules/d3-selection": {
|
|
2585
|
+
"version": "3.0.0",
|
|
2586
|
+
"resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
|
|
2587
|
+
"integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
|
|
2588
|
+
"license": "ISC",
|
|
2589
|
+
"engines": {
|
|
2590
|
+
"node": ">=12"
|
|
2591
|
+
}
|
|
2592
|
+
},
|
|
2593
|
+
"node_modules/d3-shape": {
|
|
2594
|
+
"version": "3.2.0",
|
|
2595
|
+
"resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
|
|
2596
|
+
"integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
|
|
2597
|
+
"license": "ISC",
|
|
2598
|
+
"dependencies": {
|
|
2599
|
+
"d3-path": "^3.1.0"
|
|
2600
|
+
},
|
|
2601
|
+
"engines": {
|
|
2602
|
+
"node": ">=12"
|
|
2603
|
+
}
|
|
2604
|
+
},
|
|
2605
|
+
"node_modules/d3-time": {
|
|
2606
|
+
"version": "3.1.0",
|
|
2607
|
+
"resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
|
|
2608
|
+
"integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
|
|
2609
|
+
"license": "ISC",
|
|
2610
|
+
"dependencies": {
|
|
2611
|
+
"d3-array": "2 - 3"
|
|
2612
|
+
},
|
|
2613
|
+
"engines": {
|
|
2614
|
+
"node": ">=12"
|
|
2615
|
+
}
|
|
2616
|
+
},
|
|
2617
|
+
"node_modules/d3-time-format": {
|
|
2618
|
+
"version": "4.1.0",
|
|
2619
|
+
"resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
|
|
2620
|
+
"integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
|
|
2621
|
+
"license": "ISC",
|
|
2622
|
+
"dependencies": {
|
|
2623
|
+
"d3-time": "1 - 3"
|
|
2624
|
+
},
|
|
2625
|
+
"engines": {
|
|
2626
|
+
"node": ">=12"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
"node_modules/d3-timer": {
|
|
2630
|
+
"version": "3.0.1",
|
|
2631
|
+
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
|
|
2632
|
+
"integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
|
|
2633
|
+
"license": "ISC",
|
|
2634
|
+
"engines": {
|
|
2635
|
+
"node": ">=12"
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"node_modules/date-fns": {
|
|
2639
|
+
"version": "4.4.0",
|
|
2640
|
+
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.4.0.tgz",
|
|
2641
|
+
"integrity": "sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==",
|
|
2642
|
+
"license": "MIT",
|
|
2643
|
+
"funding": {
|
|
2644
|
+
"type": "github",
|
|
2645
|
+
"url": "https://github.com/sponsors/kossnocorp"
|
|
2646
|
+
}
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/debug": {
|
|
2649
|
+
"version": "4.4.3",
|
|
2650
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
2651
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
2652
|
+
"dev": true,
|
|
2653
|
+
"license": "MIT",
|
|
2654
|
+
"dependencies": {
|
|
2655
|
+
"ms": "^2.1.3"
|
|
2656
|
+
},
|
|
2657
|
+
"engines": {
|
|
2658
|
+
"node": ">=6.0"
|
|
2659
|
+
},
|
|
2660
|
+
"peerDependenciesMeta": {
|
|
2661
|
+
"supports-color": {
|
|
2662
|
+
"optional": true
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/decamelize": {
|
|
2667
|
+
"version": "1.2.0",
|
|
2668
|
+
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
|
2669
|
+
"integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
|
|
2670
|
+
"license": "MIT",
|
|
2671
|
+
"engines": {
|
|
2672
|
+
"node": ">=0.10.0"
|
|
2673
|
+
}
|
|
2674
|
+
},
|
|
2675
|
+
"node_modules/decimal.js-light": {
|
|
2676
|
+
"version": "2.5.1",
|
|
2677
|
+
"resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
|
|
2678
|
+
"integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==",
|
|
2679
|
+
"license": "MIT"
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/dequal": {
|
|
2682
|
+
"version": "2.0.3",
|
|
2683
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
2684
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
2685
|
+
"license": "MIT",
|
|
2686
|
+
"engines": {
|
|
2687
|
+
"node": ">=6"
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"node_modules/detect-libc": {
|
|
2691
|
+
"version": "2.1.2",
|
|
2692
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
2693
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
2694
|
+
"license": "Apache-2.0",
|
|
2695
|
+
"engines": {
|
|
2696
|
+
"node": ">=8"
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2699
|
+
"node_modules/detect-node-es": {
|
|
2700
|
+
"version": "1.1.0",
|
|
2701
|
+
"resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
|
|
2702
|
+
"integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
|
|
2703
|
+
"license": "MIT"
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/dijkstrajs": {
|
|
2706
|
+
"version": "1.0.3",
|
|
2707
|
+
"resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz",
|
|
2708
|
+
"integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==",
|
|
2709
|
+
"license": "MIT"
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/electron-to-chromium": {
|
|
2712
|
+
"version": "1.5.367",
|
|
2713
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.367.tgz",
|
|
2714
|
+
"integrity": "sha512-4Mk/mrynCNQ+atY40D3UpmhLWB6AHMbYMlIrPhHcMF6x0L7O0b052FCAsxw1LlaR++UFuNg3D/A6XCuGDa0guQ==",
|
|
2715
|
+
"dev": true,
|
|
2716
|
+
"license": "ISC"
|
|
2717
|
+
},
|
|
2718
|
+
"node_modules/embla-carousel": {
|
|
2719
|
+
"version": "8.6.0",
|
|
2720
|
+
"resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.6.0.tgz",
|
|
2721
|
+
"integrity": "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==",
|
|
2722
|
+
"license": "MIT"
|
|
2723
|
+
},
|
|
2724
|
+
"node_modules/embla-carousel-react": {
|
|
2725
|
+
"version": "8.6.0",
|
|
2726
|
+
"resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-8.6.0.tgz",
|
|
2727
|
+
"integrity": "sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==",
|
|
2728
|
+
"license": "MIT",
|
|
2729
|
+
"dependencies": {
|
|
2730
|
+
"embla-carousel": "8.6.0",
|
|
2731
|
+
"embla-carousel-reactive-utils": "8.6.0"
|
|
2732
|
+
},
|
|
2733
|
+
"peerDependencies": {
|
|
2734
|
+
"react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
2735
|
+
}
|
|
2736
|
+
},
|
|
2737
|
+
"node_modules/embla-carousel-reactive-utils": {
|
|
2738
|
+
"version": "8.6.0",
|
|
2739
|
+
"resolved": "https://registry.npmjs.org/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.6.0.tgz",
|
|
2740
|
+
"integrity": "sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==",
|
|
2741
|
+
"license": "MIT",
|
|
2742
|
+
"peerDependencies": {
|
|
2743
|
+
"embla-carousel": "8.6.0"
|
|
2744
|
+
}
|
|
2745
|
+
},
|
|
2746
|
+
"node_modules/emoji-regex": {
|
|
2747
|
+
"version": "8.0.0",
|
|
2748
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
2749
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
2750
|
+
"license": "MIT"
|
|
2751
|
+
},
|
|
2752
|
+
"node_modules/enhanced-resolve": {
|
|
2753
|
+
"version": "5.22.2",
|
|
2754
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.22.2.tgz",
|
|
2755
|
+
"integrity": "sha512-0rxICaFZ7NQho/sHely2bvOPRP0Eu2B0NZ9zM54YvRvWMn7jfz3DmnOZDR9LlXDdDcqntAVc6Hfy4gr/tdH/Ag==",
|
|
2756
|
+
"license": "MIT",
|
|
2757
|
+
"dependencies": {
|
|
2758
|
+
"graceful-fs": "^4.2.4",
|
|
2759
|
+
"tapable": "^2.3.3"
|
|
2760
|
+
},
|
|
2761
|
+
"engines": {
|
|
2762
|
+
"node": ">=10.13.0"
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/es-toolkit": {
|
|
2766
|
+
"version": "1.47.0",
|
|
2767
|
+
"resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.47.0.tgz",
|
|
2768
|
+
"integrity": "sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==",
|
|
2769
|
+
"license": "MIT",
|
|
2770
|
+
"workspaces": [
|
|
2771
|
+
"docs",
|
|
2772
|
+
"benchmarks"
|
|
2773
|
+
]
|
|
2774
|
+
},
|
|
2775
|
+
"node_modules/esbuild": {
|
|
2776
|
+
"version": "0.25.12",
|
|
2777
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
|
2778
|
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
|
2779
|
+
"hasInstallScript": true,
|
|
2780
|
+
"license": "MIT",
|
|
2781
|
+
"bin": {
|
|
2782
|
+
"esbuild": "bin/esbuild"
|
|
2783
|
+
},
|
|
2784
|
+
"engines": {
|
|
2785
|
+
"node": ">=18"
|
|
2786
|
+
},
|
|
2787
|
+
"optionalDependencies": {
|
|
2788
|
+
"@esbuild/aix-ppc64": "0.25.12",
|
|
2789
|
+
"@esbuild/android-arm": "0.25.12",
|
|
2790
|
+
"@esbuild/android-arm64": "0.25.12",
|
|
2791
|
+
"@esbuild/android-x64": "0.25.12",
|
|
2792
|
+
"@esbuild/darwin-arm64": "0.25.12",
|
|
2793
|
+
"@esbuild/darwin-x64": "0.25.12",
|
|
2794
|
+
"@esbuild/freebsd-arm64": "0.25.12",
|
|
2795
|
+
"@esbuild/freebsd-x64": "0.25.12",
|
|
2796
|
+
"@esbuild/linux-arm": "0.25.12",
|
|
2797
|
+
"@esbuild/linux-arm64": "0.25.12",
|
|
2798
|
+
"@esbuild/linux-ia32": "0.25.12",
|
|
2799
|
+
"@esbuild/linux-loong64": "0.25.12",
|
|
2800
|
+
"@esbuild/linux-mips64el": "0.25.12",
|
|
2801
|
+
"@esbuild/linux-ppc64": "0.25.12",
|
|
2802
|
+
"@esbuild/linux-riscv64": "0.25.12",
|
|
2803
|
+
"@esbuild/linux-s390x": "0.25.12",
|
|
2804
|
+
"@esbuild/linux-x64": "0.25.12",
|
|
2805
|
+
"@esbuild/netbsd-arm64": "0.25.12",
|
|
2806
|
+
"@esbuild/netbsd-x64": "0.25.12",
|
|
2807
|
+
"@esbuild/openbsd-arm64": "0.25.12",
|
|
2808
|
+
"@esbuild/openbsd-x64": "0.25.12",
|
|
2809
|
+
"@esbuild/openharmony-arm64": "0.25.12",
|
|
2810
|
+
"@esbuild/sunos-x64": "0.25.12",
|
|
2811
|
+
"@esbuild/win32-arm64": "0.25.12",
|
|
2812
|
+
"@esbuild/win32-ia32": "0.25.12",
|
|
2813
|
+
"@esbuild/win32-x64": "0.25.12"
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"node_modules/escalade": {
|
|
2817
|
+
"version": "3.2.0",
|
|
2818
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
2819
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
2820
|
+
"dev": true,
|
|
2821
|
+
"license": "MIT",
|
|
2822
|
+
"engines": {
|
|
2823
|
+
"node": ">=6"
|
|
2824
|
+
}
|
|
2825
|
+
},
|
|
2826
|
+
"node_modules/eventemitter3": {
|
|
2827
|
+
"version": "5.0.4",
|
|
2828
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
|
|
2829
|
+
"integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
|
|
2830
|
+
"license": "MIT"
|
|
2831
|
+
},
|
|
2832
|
+
"node_modules/fdir": {
|
|
2833
|
+
"version": "6.5.0",
|
|
2834
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
2835
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
2836
|
+
"license": "MIT",
|
|
2837
|
+
"engines": {
|
|
2838
|
+
"node": ">=12.0.0"
|
|
2839
|
+
},
|
|
2840
|
+
"peerDependencies": {
|
|
2841
|
+
"picomatch": "^3 || ^4"
|
|
2842
|
+
},
|
|
2843
|
+
"peerDependenciesMeta": {
|
|
2844
|
+
"picomatch": {
|
|
2845
|
+
"optional": true
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
"node_modules/find-up": {
|
|
2850
|
+
"version": "4.1.0",
|
|
2851
|
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
|
|
2852
|
+
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
|
|
2853
|
+
"license": "MIT",
|
|
2854
|
+
"dependencies": {
|
|
2855
|
+
"locate-path": "^5.0.0",
|
|
2856
|
+
"path-exists": "^4.0.0"
|
|
2857
|
+
},
|
|
2858
|
+
"engines": {
|
|
2859
|
+
"node": ">=8"
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
"node_modules/fsevents": {
|
|
2863
|
+
"version": "2.3.2",
|
|
2864
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
|
2865
|
+
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
|
2866
|
+
"hasInstallScript": true,
|
|
2867
|
+
"license": "MIT",
|
|
2868
|
+
"optional": true,
|
|
2869
|
+
"os": [
|
|
2870
|
+
"darwin"
|
|
2871
|
+
],
|
|
2872
|
+
"engines": {
|
|
2873
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2874
|
+
}
|
|
2875
|
+
},
|
|
2876
|
+
"node_modules/gensync": {
|
|
2877
|
+
"version": "1.0.0-beta.2",
|
|
2878
|
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
2879
|
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
|
2880
|
+
"dev": true,
|
|
2881
|
+
"license": "MIT",
|
|
2882
|
+
"engines": {
|
|
2883
|
+
"node": ">=6.9.0"
|
|
2884
|
+
}
|
|
2885
|
+
},
|
|
2886
|
+
"node_modules/get-caller-file": {
|
|
2887
|
+
"version": "2.0.5",
|
|
2888
|
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
2889
|
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
2890
|
+
"license": "ISC",
|
|
2891
|
+
"engines": {
|
|
2892
|
+
"node": "6.* || 8.* || >= 10.*"
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
"node_modules/get-nonce": {
|
|
2896
|
+
"version": "1.0.1",
|
|
2897
|
+
"resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
|
|
2898
|
+
"integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
|
|
2899
|
+
"license": "MIT",
|
|
2900
|
+
"engines": {
|
|
2901
|
+
"node": ">=6"
|
|
2902
|
+
}
|
|
2903
|
+
},
|
|
2904
|
+
"node_modules/graceful-fs": {
|
|
2905
|
+
"version": "4.2.11",
|
|
2906
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
2907
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
2908
|
+
"license": "ISC"
|
|
2909
|
+
},
|
|
2910
|
+
"node_modules/immer": {
|
|
2911
|
+
"version": "10.2.0",
|
|
2912
|
+
"resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz",
|
|
2913
|
+
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
2914
|
+
"license": "MIT",
|
|
2915
|
+
"funding": {
|
|
2916
|
+
"type": "opencollective",
|
|
2917
|
+
"url": "https://opencollective.com/immer"
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
"node_modules/input-otp": {
|
|
2921
|
+
"version": "1.4.2",
|
|
2922
|
+
"resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.2.tgz",
|
|
2923
|
+
"integrity": "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==",
|
|
2924
|
+
"license": "MIT",
|
|
2925
|
+
"peerDependencies": {
|
|
2926
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
|
|
2927
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2930
|
+
"node_modules/internmap": {
|
|
2931
|
+
"version": "2.0.3",
|
|
2932
|
+
"resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
|
|
2933
|
+
"integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
|
|
2934
|
+
"license": "ISC",
|
|
2935
|
+
"engines": {
|
|
2936
|
+
"node": ">=12"
|
|
2937
|
+
}
|
|
2938
|
+
},
|
|
2939
|
+
"node_modules/is-fullwidth-code-point": {
|
|
2940
|
+
"version": "3.0.0",
|
|
2941
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
2942
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
2943
|
+
"license": "MIT",
|
|
2944
|
+
"engines": {
|
|
2945
|
+
"node": ">=8"
|
|
2946
|
+
}
|
|
2947
|
+
},
|
|
2948
|
+
"node_modules/jiti": {
|
|
2949
|
+
"version": "2.7.0",
|
|
2950
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
|
|
2951
|
+
"integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
|
|
2952
|
+
"license": "MIT",
|
|
2953
|
+
"bin": {
|
|
2954
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
2955
|
+
}
|
|
2956
|
+
},
|
|
2957
|
+
"node_modules/js-tokens": {
|
|
2958
|
+
"version": "4.0.0",
|
|
2959
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
2960
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2961
|
+
"dev": true,
|
|
2962
|
+
"license": "MIT"
|
|
2963
|
+
},
|
|
2964
|
+
"node_modules/jsesc": {
|
|
2965
|
+
"version": "3.1.0",
|
|
2966
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
2967
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
2968
|
+
"dev": true,
|
|
2969
|
+
"license": "MIT",
|
|
2970
|
+
"bin": {
|
|
2971
|
+
"jsesc": "bin/jsesc"
|
|
2972
|
+
},
|
|
2973
|
+
"engines": {
|
|
2974
|
+
"node": ">=6"
|
|
2975
|
+
}
|
|
2976
|
+
},
|
|
2977
|
+
"node_modules/json5": {
|
|
2978
|
+
"version": "2.2.3",
|
|
2979
|
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
|
2980
|
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
|
2981
|
+
"dev": true,
|
|
2982
|
+
"license": "MIT",
|
|
2983
|
+
"bin": {
|
|
2984
|
+
"json5": "lib/cli.js"
|
|
2985
|
+
},
|
|
2986
|
+
"engines": {
|
|
2987
|
+
"node": ">=6"
|
|
2988
|
+
}
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/lightningcss": {
|
|
2991
|
+
"version": "1.32.0",
|
|
2992
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
2993
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
2994
|
+
"license": "MPL-2.0",
|
|
2995
|
+
"dependencies": {
|
|
2996
|
+
"detect-libc": "^2.0.3"
|
|
2997
|
+
},
|
|
2998
|
+
"engines": {
|
|
2999
|
+
"node": ">= 12.0.0"
|
|
3000
|
+
},
|
|
3001
|
+
"funding": {
|
|
3002
|
+
"type": "opencollective",
|
|
3003
|
+
"url": "https://opencollective.com/parcel"
|
|
3004
|
+
},
|
|
3005
|
+
"optionalDependencies": {
|
|
3006
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
3007
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
3008
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
3009
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
3010
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
3011
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
3012
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
3013
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
3014
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
3015
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
3016
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
3017
|
+
}
|
|
3018
|
+
},
|
|
3019
|
+
"node_modules/lightningcss-android-arm64": {
|
|
3020
|
+
"version": "1.32.0",
|
|
3021
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
3022
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
3023
|
+
"cpu": [
|
|
3024
|
+
"arm64"
|
|
3025
|
+
],
|
|
3026
|
+
"license": "MPL-2.0",
|
|
3027
|
+
"optional": true,
|
|
3028
|
+
"os": [
|
|
3029
|
+
"android"
|
|
3030
|
+
],
|
|
3031
|
+
"engines": {
|
|
3032
|
+
"node": ">= 12.0.0"
|
|
3033
|
+
},
|
|
3034
|
+
"funding": {
|
|
3035
|
+
"type": "opencollective",
|
|
3036
|
+
"url": "https://opencollective.com/parcel"
|
|
3037
|
+
}
|
|
3038
|
+
},
|
|
3039
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
3040
|
+
"version": "1.32.0",
|
|
3041
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
3042
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
3043
|
+
"cpu": [
|
|
3044
|
+
"arm64"
|
|
3045
|
+
],
|
|
3046
|
+
"license": "MPL-2.0",
|
|
3047
|
+
"optional": true,
|
|
3048
|
+
"os": [
|
|
3049
|
+
"darwin"
|
|
3050
|
+
],
|
|
3051
|
+
"engines": {
|
|
3052
|
+
"node": ">= 12.0.0"
|
|
3053
|
+
},
|
|
3054
|
+
"funding": {
|
|
3055
|
+
"type": "opencollective",
|
|
3056
|
+
"url": "https://opencollective.com/parcel"
|
|
3057
|
+
}
|
|
3058
|
+
},
|
|
3059
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
3060
|
+
"version": "1.32.0",
|
|
3061
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
3062
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
3063
|
+
"cpu": [
|
|
3064
|
+
"x64"
|
|
3065
|
+
],
|
|
3066
|
+
"license": "MPL-2.0",
|
|
3067
|
+
"optional": true,
|
|
3068
|
+
"os": [
|
|
3069
|
+
"darwin"
|
|
3070
|
+
],
|
|
3071
|
+
"engines": {
|
|
3072
|
+
"node": ">= 12.0.0"
|
|
3073
|
+
},
|
|
3074
|
+
"funding": {
|
|
3075
|
+
"type": "opencollective",
|
|
3076
|
+
"url": "https://opencollective.com/parcel"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
3080
|
+
"version": "1.32.0",
|
|
3081
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
3082
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
3083
|
+
"cpu": [
|
|
3084
|
+
"x64"
|
|
3085
|
+
],
|
|
3086
|
+
"license": "MPL-2.0",
|
|
3087
|
+
"optional": true,
|
|
3088
|
+
"os": [
|
|
3089
|
+
"freebsd"
|
|
3090
|
+
],
|
|
3091
|
+
"engines": {
|
|
3092
|
+
"node": ">= 12.0.0"
|
|
3093
|
+
},
|
|
3094
|
+
"funding": {
|
|
3095
|
+
"type": "opencollective",
|
|
3096
|
+
"url": "https://opencollective.com/parcel"
|
|
3097
|
+
}
|
|
3098
|
+
},
|
|
3099
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
3100
|
+
"version": "1.32.0",
|
|
3101
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
3102
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
3103
|
+
"cpu": [
|
|
3104
|
+
"arm"
|
|
3105
|
+
],
|
|
3106
|
+
"license": "MPL-2.0",
|
|
3107
|
+
"optional": true,
|
|
3108
|
+
"os": [
|
|
3109
|
+
"linux"
|
|
3110
|
+
],
|
|
3111
|
+
"engines": {
|
|
3112
|
+
"node": ">= 12.0.0"
|
|
3113
|
+
},
|
|
3114
|
+
"funding": {
|
|
3115
|
+
"type": "opencollective",
|
|
3116
|
+
"url": "https://opencollective.com/parcel"
|
|
3117
|
+
}
|
|
3118
|
+
},
|
|
3119
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
3120
|
+
"version": "1.32.0",
|
|
3121
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
3122
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
3123
|
+
"cpu": [
|
|
3124
|
+
"arm64"
|
|
3125
|
+
],
|
|
3126
|
+
"libc": [
|
|
3127
|
+
"glibc"
|
|
3128
|
+
],
|
|
3129
|
+
"license": "MPL-2.0",
|
|
3130
|
+
"optional": true,
|
|
3131
|
+
"os": [
|
|
3132
|
+
"linux"
|
|
3133
|
+
],
|
|
3134
|
+
"engines": {
|
|
3135
|
+
"node": ">= 12.0.0"
|
|
3136
|
+
},
|
|
3137
|
+
"funding": {
|
|
3138
|
+
"type": "opencollective",
|
|
3139
|
+
"url": "https://opencollective.com/parcel"
|
|
3140
|
+
}
|
|
3141
|
+
},
|
|
3142
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
3143
|
+
"version": "1.32.0",
|
|
3144
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
3145
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
3146
|
+
"cpu": [
|
|
3147
|
+
"arm64"
|
|
3148
|
+
],
|
|
3149
|
+
"libc": [
|
|
3150
|
+
"musl"
|
|
3151
|
+
],
|
|
3152
|
+
"license": "MPL-2.0",
|
|
3153
|
+
"optional": true,
|
|
3154
|
+
"os": [
|
|
3155
|
+
"linux"
|
|
3156
|
+
],
|
|
3157
|
+
"engines": {
|
|
3158
|
+
"node": ">= 12.0.0"
|
|
3159
|
+
},
|
|
3160
|
+
"funding": {
|
|
3161
|
+
"type": "opencollective",
|
|
3162
|
+
"url": "https://opencollective.com/parcel"
|
|
3163
|
+
}
|
|
3164
|
+
},
|
|
3165
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
3166
|
+
"version": "1.32.0",
|
|
3167
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
3168
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
3169
|
+
"cpu": [
|
|
3170
|
+
"x64"
|
|
3171
|
+
],
|
|
3172
|
+
"libc": [
|
|
3173
|
+
"glibc"
|
|
3174
|
+
],
|
|
3175
|
+
"license": "MPL-2.0",
|
|
3176
|
+
"optional": true,
|
|
3177
|
+
"os": [
|
|
3178
|
+
"linux"
|
|
3179
|
+
],
|
|
3180
|
+
"engines": {
|
|
3181
|
+
"node": ">= 12.0.0"
|
|
3182
|
+
},
|
|
3183
|
+
"funding": {
|
|
3184
|
+
"type": "opencollective",
|
|
3185
|
+
"url": "https://opencollective.com/parcel"
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3188
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
3189
|
+
"version": "1.32.0",
|
|
3190
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
3191
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
3192
|
+
"cpu": [
|
|
3193
|
+
"x64"
|
|
3194
|
+
],
|
|
3195
|
+
"libc": [
|
|
3196
|
+
"musl"
|
|
3197
|
+
],
|
|
3198
|
+
"license": "MPL-2.0",
|
|
3199
|
+
"optional": true,
|
|
3200
|
+
"os": [
|
|
3201
|
+
"linux"
|
|
3202
|
+
],
|
|
3203
|
+
"engines": {
|
|
3204
|
+
"node": ">= 12.0.0"
|
|
3205
|
+
},
|
|
3206
|
+
"funding": {
|
|
3207
|
+
"type": "opencollective",
|
|
3208
|
+
"url": "https://opencollective.com/parcel"
|
|
3209
|
+
}
|
|
3210
|
+
},
|
|
3211
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
3212
|
+
"version": "1.32.0",
|
|
3213
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
3214
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
3215
|
+
"cpu": [
|
|
3216
|
+
"arm64"
|
|
3217
|
+
],
|
|
3218
|
+
"license": "MPL-2.0",
|
|
3219
|
+
"optional": true,
|
|
3220
|
+
"os": [
|
|
3221
|
+
"win32"
|
|
3222
|
+
],
|
|
3223
|
+
"engines": {
|
|
3224
|
+
"node": ">= 12.0.0"
|
|
3225
|
+
},
|
|
3226
|
+
"funding": {
|
|
3227
|
+
"type": "opencollective",
|
|
3228
|
+
"url": "https://opencollective.com/parcel"
|
|
3229
|
+
}
|
|
3230
|
+
},
|
|
3231
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
3232
|
+
"version": "1.32.0",
|
|
3233
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
3234
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
3235
|
+
"cpu": [
|
|
3236
|
+
"x64"
|
|
3237
|
+
],
|
|
3238
|
+
"license": "MPL-2.0",
|
|
3239
|
+
"optional": true,
|
|
3240
|
+
"os": [
|
|
3241
|
+
"win32"
|
|
3242
|
+
],
|
|
3243
|
+
"engines": {
|
|
3244
|
+
"node": ">= 12.0.0"
|
|
3245
|
+
},
|
|
3246
|
+
"funding": {
|
|
3247
|
+
"type": "opencollective",
|
|
3248
|
+
"url": "https://opencollective.com/parcel"
|
|
3249
|
+
}
|
|
3250
|
+
},
|
|
3251
|
+
"node_modules/locate-path": {
|
|
3252
|
+
"version": "5.0.0",
|
|
3253
|
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
|
3254
|
+
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
|
|
3255
|
+
"license": "MIT",
|
|
3256
|
+
"dependencies": {
|
|
3257
|
+
"p-locate": "^4.1.0"
|
|
3258
|
+
},
|
|
3259
|
+
"engines": {
|
|
3260
|
+
"node": ">=8"
|
|
3261
|
+
}
|
|
3262
|
+
},
|
|
3263
|
+
"node_modules/lru-cache": {
|
|
3264
|
+
"version": "5.1.1",
|
|
3265
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
|
3266
|
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
|
3267
|
+
"dev": true,
|
|
3268
|
+
"license": "ISC",
|
|
3269
|
+
"dependencies": {
|
|
3270
|
+
"yallist": "^3.0.2"
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3273
|
+
"node_modules/lucide-react": {
|
|
3274
|
+
"version": "0.469.0",
|
|
3275
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.469.0.tgz",
|
|
3276
|
+
"integrity": "sha512-28vvUnnKQ/dBwiCQtwJw7QauYnE7yd2Cyp4tTTJpvglX4EMpbflcdBgrgToX2j71B3YvugK/NH3BGUk+E/p/Fw==",
|
|
3277
|
+
"license": "ISC",
|
|
3278
|
+
"peerDependencies": {
|
|
3279
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
3282
|
+
"node_modules/magic-string": {
|
|
3283
|
+
"version": "0.30.21",
|
|
3284
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
3285
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
3286
|
+
"license": "MIT",
|
|
3287
|
+
"dependencies": {
|
|
3288
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
3291
|
+
"node_modules/ms": {
|
|
3292
|
+
"version": "2.1.3",
|
|
3293
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
3294
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
3295
|
+
"dev": true,
|
|
3296
|
+
"license": "MIT"
|
|
3297
|
+
},
|
|
3298
|
+
"node_modules/nanoid": {
|
|
3299
|
+
"version": "3.3.12",
|
|
3300
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
|
|
3301
|
+
"integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
|
|
3302
|
+
"funding": [
|
|
3303
|
+
{
|
|
3304
|
+
"type": "github",
|
|
3305
|
+
"url": "https://github.com/sponsors/ai"
|
|
3306
|
+
}
|
|
3307
|
+
],
|
|
3308
|
+
"license": "MIT",
|
|
3309
|
+
"bin": {
|
|
3310
|
+
"nanoid": "bin/nanoid.cjs"
|
|
3311
|
+
},
|
|
3312
|
+
"engines": {
|
|
3313
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
3314
|
+
}
|
|
3315
|
+
},
|
|
3316
|
+
"node_modules/next-themes": {
|
|
3317
|
+
"version": "0.4.6",
|
|
3318
|
+
"resolved": "https://registry.npmjs.org/next-themes/-/next-themes-0.4.6.tgz",
|
|
3319
|
+
"integrity": "sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==",
|
|
3320
|
+
"license": "MIT",
|
|
3321
|
+
"peerDependencies": {
|
|
3322
|
+
"react": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc",
|
|
3323
|
+
"react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc"
|
|
3324
|
+
}
|
|
3325
|
+
},
|
|
3326
|
+
"node_modules/node-releases": {
|
|
3327
|
+
"version": "2.0.47",
|
|
3328
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.47.tgz",
|
|
3329
|
+
"integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
|
|
3330
|
+
"dev": true,
|
|
3331
|
+
"license": "MIT",
|
|
3332
|
+
"engines": {
|
|
3333
|
+
"node": ">=18"
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"node_modules/p-limit": {
|
|
3337
|
+
"version": "2.3.0",
|
|
3338
|
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
|
|
3339
|
+
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
|
|
3340
|
+
"license": "MIT",
|
|
3341
|
+
"dependencies": {
|
|
3342
|
+
"p-try": "^2.0.0"
|
|
3343
|
+
},
|
|
3344
|
+
"engines": {
|
|
3345
|
+
"node": ">=6"
|
|
3346
|
+
},
|
|
3347
|
+
"funding": {
|
|
3348
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3349
|
+
}
|
|
3350
|
+
},
|
|
3351
|
+
"node_modules/p-locate": {
|
|
3352
|
+
"version": "4.1.0",
|
|
3353
|
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
|
|
3354
|
+
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
|
|
3355
|
+
"license": "MIT",
|
|
3356
|
+
"dependencies": {
|
|
3357
|
+
"p-limit": "^2.2.0"
|
|
3358
|
+
},
|
|
3359
|
+
"engines": {
|
|
3360
|
+
"node": ">=8"
|
|
3361
|
+
}
|
|
3362
|
+
},
|
|
3363
|
+
"node_modules/p-try": {
|
|
3364
|
+
"version": "2.2.0",
|
|
3365
|
+
"resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
|
|
3366
|
+
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
|
|
3367
|
+
"license": "MIT",
|
|
3368
|
+
"engines": {
|
|
3369
|
+
"node": ">=6"
|
|
3370
|
+
}
|
|
3371
|
+
},
|
|
3372
|
+
"node_modules/path-exists": {
|
|
3373
|
+
"version": "4.0.0",
|
|
3374
|
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
3375
|
+
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
3376
|
+
"license": "MIT",
|
|
3377
|
+
"engines": {
|
|
3378
|
+
"node": ">=8"
|
|
3379
|
+
}
|
|
3380
|
+
},
|
|
3381
|
+
"node_modules/picocolors": {
|
|
3382
|
+
"version": "1.1.1",
|
|
3383
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
3384
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
3385
|
+
"license": "ISC"
|
|
3386
|
+
},
|
|
3387
|
+
"node_modules/picomatch": {
|
|
3388
|
+
"version": "4.0.4",
|
|
3389
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
3390
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
3391
|
+
"license": "MIT",
|
|
3392
|
+
"engines": {
|
|
3393
|
+
"node": ">=12"
|
|
3394
|
+
},
|
|
3395
|
+
"funding": {
|
|
3396
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3397
|
+
}
|
|
3398
|
+
},
|
|
3399
|
+
"node_modules/playwright": {
|
|
3400
|
+
"version": "1.60.0",
|
|
3401
|
+
"resolved": "https://registry.npmjs.org/playwright/-/playwright-1.60.0.tgz",
|
|
3402
|
+
"integrity": "sha512-hheHdokM8cdqCb0lcE3s+zT4t4W+vvjpGxsZlDnikarzx8tSzMebh3UiFtgqwFwnTnjYQcsyMF8ei2mCO/tpeA==",
|
|
3403
|
+
"dev": true,
|
|
3404
|
+
"license": "Apache-2.0",
|
|
3405
|
+
"dependencies": {
|
|
3406
|
+
"playwright-core": "1.60.0"
|
|
3407
|
+
},
|
|
3408
|
+
"bin": {
|
|
3409
|
+
"playwright": "cli.js"
|
|
3410
|
+
},
|
|
3411
|
+
"engines": {
|
|
3412
|
+
"node": ">=18"
|
|
3413
|
+
},
|
|
3414
|
+
"optionalDependencies": {
|
|
3415
|
+
"fsevents": "2.3.2"
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
"node_modules/playwright-core": {
|
|
3419
|
+
"version": "1.60.0",
|
|
3420
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.60.0.tgz",
|
|
3421
|
+
"integrity": "sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==",
|
|
3422
|
+
"dev": true,
|
|
3423
|
+
"license": "Apache-2.0",
|
|
3424
|
+
"bin": {
|
|
3425
|
+
"playwright-core": "cli.js"
|
|
3426
|
+
},
|
|
3427
|
+
"engines": {
|
|
3428
|
+
"node": ">=18"
|
|
3429
|
+
}
|
|
3430
|
+
},
|
|
3431
|
+
"node_modules/pngjs": {
|
|
3432
|
+
"version": "5.0.0",
|
|
3433
|
+
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz",
|
|
3434
|
+
"integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==",
|
|
3435
|
+
"license": "MIT",
|
|
3436
|
+
"engines": {
|
|
3437
|
+
"node": ">=10.13.0"
|
|
3438
|
+
}
|
|
3439
|
+
},
|
|
3440
|
+
"node_modules/postcss": {
|
|
3441
|
+
"version": "8.5.15",
|
|
3442
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
|
|
3443
|
+
"integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
|
|
3444
|
+
"funding": [
|
|
3445
|
+
{
|
|
3446
|
+
"type": "opencollective",
|
|
3447
|
+
"url": "https://opencollective.com/postcss/"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"type": "tidelift",
|
|
3451
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
3452
|
+
},
|
|
3453
|
+
{
|
|
3454
|
+
"type": "github",
|
|
3455
|
+
"url": "https://github.com/sponsors/ai"
|
|
3456
|
+
}
|
|
3457
|
+
],
|
|
3458
|
+
"license": "MIT",
|
|
3459
|
+
"dependencies": {
|
|
3460
|
+
"nanoid": "^3.3.12",
|
|
3461
|
+
"picocolors": "^1.1.1",
|
|
3462
|
+
"source-map-js": "^1.2.1"
|
|
3463
|
+
},
|
|
3464
|
+
"engines": {
|
|
3465
|
+
"node": "^10 || ^12 || >=14"
|
|
3466
|
+
}
|
|
3467
|
+
},
|
|
3468
|
+
"node_modules/qrcode": {
|
|
3469
|
+
"version": "1.5.4",
|
|
3470
|
+
"resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz",
|
|
3471
|
+
"integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==",
|
|
3472
|
+
"license": "MIT",
|
|
3473
|
+
"dependencies": {
|
|
3474
|
+
"dijkstrajs": "^1.0.1",
|
|
3475
|
+
"pngjs": "^5.0.0",
|
|
3476
|
+
"yargs": "^15.3.1"
|
|
3477
|
+
},
|
|
3478
|
+
"bin": {
|
|
3479
|
+
"qrcode": "bin/qrcode"
|
|
3480
|
+
},
|
|
3481
|
+
"engines": {
|
|
3482
|
+
"node": ">=10.13.0"
|
|
3483
|
+
}
|
|
3484
|
+
},
|
|
3485
|
+
"node_modules/react": {
|
|
3486
|
+
"version": "19.2.7",
|
|
3487
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
|
|
3488
|
+
"integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
|
|
3489
|
+
"license": "MIT",
|
|
3490
|
+
"engines": {
|
|
3491
|
+
"node": ">=0.10.0"
|
|
3492
|
+
}
|
|
3493
|
+
},
|
|
3494
|
+
"node_modules/react-day-picker": {
|
|
3495
|
+
"version": "10.0.1",
|
|
3496
|
+
"resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-10.0.1.tgz",
|
|
3497
|
+
"integrity": "sha512-eNh6BlwcYInWaJtRv18mXQ06Ys/H6rdTZAnTaSdOYJuTpwP1JMCHNd1FDRadA+gbeinq+psdULN5Xnowy9mV8w==",
|
|
3498
|
+
"license": "MIT",
|
|
3499
|
+
"dependencies": {
|
|
3500
|
+
"@date-fns/tz": "^1.4.1",
|
|
3501
|
+
"date-fns": "^4.1.0"
|
|
3502
|
+
},
|
|
3503
|
+
"engines": {
|
|
3504
|
+
"node": ">=18"
|
|
3505
|
+
},
|
|
3506
|
+
"funding": {
|
|
3507
|
+
"type": "individual",
|
|
3508
|
+
"url": "https://github.com/sponsors/gpbl"
|
|
3509
|
+
},
|
|
3510
|
+
"peerDependencies": {
|
|
3511
|
+
"@types/react": ">=16.8.0",
|
|
3512
|
+
"react": ">=16.8.0"
|
|
3513
|
+
},
|
|
3514
|
+
"peerDependenciesMeta": {
|
|
3515
|
+
"@types/react": {
|
|
3516
|
+
"optional": true
|
|
3517
|
+
}
|
|
3518
|
+
}
|
|
3519
|
+
},
|
|
3520
|
+
"node_modules/react-dom": {
|
|
3521
|
+
"version": "19.2.7",
|
|
3522
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
|
|
3523
|
+
"integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
|
|
3524
|
+
"license": "MIT",
|
|
3525
|
+
"dependencies": {
|
|
3526
|
+
"scheduler": "^0.27.0"
|
|
3527
|
+
},
|
|
3528
|
+
"peerDependencies": {
|
|
3529
|
+
"react": "^19.2.7"
|
|
3530
|
+
}
|
|
3531
|
+
},
|
|
3532
|
+
"node_modules/react-is": {
|
|
3533
|
+
"version": "19.2.7",
|
|
3534
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.7.tgz",
|
|
3535
|
+
"integrity": "sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==",
|
|
3536
|
+
"license": "MIT",
|
|
3537
|
+
"peer": true
|
|
3538
|
+
},
|
|
3539
|
+
"node_modules/react-redux": {
|
|
3540
|
+
"version": "9.3.0",
|
|
3541
|
+
"resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.3.0.tgz",
|
|
3542
|
+
"integrity": "sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==",
|
|
3543
|
+
"license": "MIT",
|
|
3544
|
+
"dependencies": {
|
|
3545
|
+
"@types/use-sync-external-store": "^0.0.6",
|
|
3546
|
+
"use-sync-external-store": "^1.4.0"
|
|
3547
|
+
},
|
|
3548
|
+
"peerDependencies": {
|
|
3549
|
+
"@types/react": "^18.2.25 || ^19",
|
|
3550
|
+
"react": "^18.0 || ^19",
|
|
3551
|
+
"redux": "^5.0.0"
|
|
3552
|
+
},
|
|
3553
|
+
"peerDependenciesMeta": {
|
|
3554
|
+
"@types/react": {
|
|
3555
|
+
"optional": true
|
|
3556
|
+
},
|
|
3557
|
+
"redux": {
|
|
3558
|
+
"optional": true
|
|
3559
|
+
}
|
|
3560
|
+
}
|
|
3561
|
+
},
|
|
3562
|
+
"node_modules/react-refresh": {
|
|
3563
|
+
"version": "0.17.0",
|
|
3564
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
3565
|
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
|
3566
|
+
"dev": true,
|
|
3567
|
+
"license": "MIT",
|
|
3568
|
+
"engines": {
|
|
3569
|
+
"node": ">=0.10.0"
|
|
3570
|
+
}
|
|
3571
|
+
},
|
|
3572
|
+
"node_modules/react-remove-scroll": {
|
|
3573
|
+
"version": "2.7.2",
|
|
3574
|
+
"resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.2.tgz",
|
|
3575
|
+
"integrity": "sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==",
|
|
3576
|
+
"license": "MIT",
|
|
3577
|
+
"dependencies": {
|
|
3578
|
+
"react-remove-scroll-bar": "^2.3.7",
|
|
3579
|
+
"react-style-singleton": "^2.2.3",
|
|
3580
|
+
"tslib": "^2.1.0",
|
|
3581
|
+
"use-callback-ref": "^1.3.3",
|
|
3582
|
+
"use-sidecar": "^1.1.3"
|
|
3583
|
+
},
|
|
3584
|
+
"engines": {
|
|
3585
|
+
"node": ">=10"
|
|
3586
|
+
},
|
|
3587
|
+
"peerDependencies": {
|
|
3588
|
+
"@types/react": "*",
|
|
3589
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
3590
|
+
},
|
|
3591
|
+
"peerDependenciesMeta": {
|
|
3592
|
+
"@types/react": {
|
|
3593
|
+
"optional": true
|
|
3594
|
+
}
|
|
3595
|
+
}
|
|
3596
|
+
},
|
|
3597
|
+
"node_modules/react-remove-scroll-bar": {
|
|
3598
|
+
"version": "2.3.8",
|
|
3599
|
+
"resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
|
|
3600
|
+
"integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
|
|
3601
|
+
"license": "MIT",
|
|
3602
|
+
"dependencies": {
|
|
3603
|
+
"react-style-singleton": "^2.2.2",
|
|
3604
|
+
"tslib": "^2.0.0"
|
|
3605
|
+
},
|
|
3606
|
+
"engines": {
|
|
3607
|
+
"node": ">=10"
|
|
3608
|
+
},
|
|
3609
|
+
"peerDependencies": {
|
|
3610
|
+
"@types/react": "*",
|
|
3611
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3612
|
+
},
|
|
3613
|
+
"peerDependenciesMeta": {
|
|
3614
|
+
"@types/react": {
|
|
3615
|
+
"optional": true
|
|
3616
|
+
}
|
|
3617
|
+
}
|
|
3618
|
+
},
|
|
3619
|
+
"node_modules/react-resizable-panels": {
|
|
3620
|
+
"version": "4.11.2",
|
|
3621
|
+
"resolved": "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-4.11.2.tgz",
|
|
3622
|
+
"integrity": "sha512-+kfFbDZ8mygc7g0vxOcDzCVGuwiIUOnILqPoUHo6/uP+Mmyx6HzZU+kj1aOPDlktXuobYbr6BtQekvJwHRX4Eg==",
|
|
3623
|
+
"license": "MIT",
|
|
3624
|
+
"peerDependencies": {
|
|
3625
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
3626
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
3627
|
+
}
|
|
3628
|
+
},
|
|
3629
|
+
"node_modules/react-router": {
|
|
3630
|
+
"version": "7.17.0",
|
|
3631
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-7.17.0.tgz",
|
|
3632
|
+
"integrity": "sha512-FDELK7rTMlCHO5+reyXsPlmfr7N1F91lPHsWYfMEGQm/KQ+F4JFM8jGoeQDmDvdTs93Fw9aSilH+uKRb4/jXvQ==",
|
|
3633
|
+
"license": "MIT",
|
|
3634
|
+
"dependencies": {
|
|
3635
|
+
"cookie": "^1.0.1",
|
|
3636
|
+
"set-cookie-parser": "^2.6.0"
|
|
3637
|
+
},
|
|
3638
|
+
"engines": {
|
|
3639
|
+
"node": ">=20.0.0"
|
|
3640
|
+
},
|
|
3641
|
+
"peerDependencies": {
|
|
3642
|
+
"react": ">=18",
|
|
3643
|
+
"react-dom": ">=18"
|
|
3644
|
+
},
|
|
3645
|
+
"peerDependenciesMeta": {
|
|
3646
|
+
"react-dom": {
|
|
3647
|
+
"optional": true
|
|
3648
|
+
}
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3651
|
+
"node_modules/react-router-dom": {
|
|
3652
|
+
"version": "7.17.0",
|
|
3653
|
+
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.17.0.tgz",
|
|
3654
|
+
"integrity": "sha512-fyU2yjGups/hE6Xz0I5ZYbVL8Gx29eCjgpHaRaTaVU+OOAdfRX05KsvyRm0GO8YQwOkhpU3MurW1jyMUJn+zSw==",
|
|
3655
|
+
"license": "MIT",
|
|
3656
|
+
"dependencies": {
|
|
3657
|
+
"react-router": "7.17.0"
|
|
3658
|
+
},
|
|
3659
|
+
"engines": {
|
|
3660
|
+
"node": ">=20.0.0"
|
|
3661
|
+
},
|
|
3662
|
+
"peerDependencies": {
|
|
3663
|
+
"react": ">=18",
|
|
3664
|
+
"react-dom": ">=18"
|
|
3665
|
+
}
|
|
3666
|
+
},
|
|
3667
|
+
"node_modules/react-style-singleton": {
|
|
3668
|
+
"version": "2.2.3",
|
|
3669
|
+
"resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
|
|
3670
|
+
"integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
|
|
3671
|
+
"license": "MIT",
|
|
3672
|
+
"dependencies": {
|
|
3673
|
+
"get-nonce": "^1.0.0",
|
|
3674
|
+
"tslib": "^2.0.0"
|
|
3675
|
+
},
|
|
3676
|
+
"engines": {
|
|
3677
|
+
"node": ">=10"
|
|
3678
|
+
},
|
|
3679
|
+
"peerDependencies": {
|
|
3680
|
+
"@types/react": "*",
|
|
3681
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
3682
|
+
},
|
|
3683
|
+
"peerDependenciesMeta": {
|
|
3684
|
+
"@types/react": {
|
|
3685
|
+
"optional": true
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
},
|
|
3689
|
+
"node_modules/recharts": {
|
|
3690
|
+
"version": "3.8.0",
|
|
3691
|
+
"resolved": "https://registry.npmjs.org/recharts/-/recharts-3.8.0.tgz",
|
|
3692
|
+
"integrity": "sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==",
|
|
3693
|
+
"license": "MIT",
|
|
3694
|
+
"workspaces": [
|
|
3695
|
+
"www"
|
|
3696
|
+
],
|
|
3697
|
+
"dependencies": {
|
|
3698
|
+
"@reduxjs/toolkit": "^1.9.0 || 2.x.x",
|
|
3699
|
+
"clsx": "^2.1.1",
|
|
3700
|
+
"decimal.js-light": "^2.5.1",
|
|
3701
|
+
"es-toolkit": "^1.39.3",
|
|
3702
|
+
"eventemitter3": "^5.0.1",
|
|
3703
|
+
"immer": "^10.1.1",
|
|
3704
|
+
"react-redux": "8.x.x || 9.x.x",
|
|
3705
|
+
"reselect": "5.1.1",
|
|
3706
|
+
"tiny-invariant": "^1.3.3",
|
|
3707
|
+
"use-sync-external-store": "^1.2.2",
|
|
3708
|
+
"victory-vendor": "^37.0.2"
|
|
3709
|
+
},
|
|
3710
|
+
"engines": {
|
|
3711
|
+
"node": ">=18"
|
|
3712
|
+
},
|
|
3713
|
+
"peerDependencies": {
|
|
3714
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
3715
|
+
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
3716
|
+
"react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3717
|
+
}
|
|
3718
|
+
},
|
|
3719
|
+
"node_modules/recharts/node_modules/reselect": {
|
|
3720
|
+
"version": "5.1.1",
|
|
3721
|
+
"resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz",
|
|
3722
|
+
"integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==",
|
|
3723
|
+
"license": "MIT"
|
|
3724
|
+
},
|
|
3725
|
+
"node_modules/redux": {
|
|
3726
|
+
"version": "5.0.1",
|
|
3727
|
+
"resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
|
|
3728
|
+
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
|
|
3729
|
+
"license": "MIT"
|
|
3730
|
+
},
|
|
3731
|
+
"node_modules/redux-thunk": {
|
|
3732
|
+
"version": "3.1.0",
|
|
3733
|
+
"resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz",
|
|
3734
|
+
"integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==",
|
|
3735
|
+
"license": "MIT",
|
|
3736
|
+
"peerDependencies": {
|
|
3737
|
+
"redux": "^5.0.0"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
"node_modules/require-directory": {
|
|
3741
|
+
"version": "2.1.1",
|
|
3742
|
+
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
3743
|
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
3744
|
+
"license": "MIT",
|
|
3745
|
+
"engines": {
|
|
3746
|
+
"node": ">=0.10.0"
|
|
3747
|
+
}
|
|
3748
|
+
},
|
|
3749
|
+
"node_modules/require-main-filename": {
|
|
3750
|
+
"version": "2.0.0",
|
|
3751
|
+
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
|
|
3752
|
+
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
|
|
3753
|
+
"license": "ISC"
|
|
3754
|
+
},
|
|
3755
|
+
"node_modules/reselect": {
|
|
3756
|
+
"version": "5.2.0",
|
|
3757
|
+
"resolved": "https://registry.npmjs.org/reselect/-/reselect-5.2.0.tgz",
|
|
3758
|
+
"integrity": "sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==",
|
|
3759
|
+
"license": "MIT"
|
|
3760
|
+
},
|
|
3761
|
+
"node_modules/rollup": {
|
|
3762
|
+
"version": "4.61.1",
|
|
3763
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.61.1.tgz",
|
|
3764
|
+
"integrity": "sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==",
|
|
3765
|
+
"license": "MIT",
|
|
3766
|
+
"dependencies": {
|
|
3767
|
+
"@types/estree": "1.0.9"
|
|
3768
|
+
},
|
|
3769
|
+
"bin": {
|
|
3770
|
+
"rollup": "dist/bin/rollup"
|
|
3771
|
+
},
|
|
3772
|
+
"engines": {
|
|
3773
|
+
"node": ">=18.0.0",
|
|
3774
|
+
"npm": ">=8.0.0"
|
|
3775
|
+
},
|
|
3776
|
+
"optionalDependencies": {
|
|
3777
|
+
"@rollup/rollup-android-arm-eabi": "4.61.1",
|
|
3778
|
+
"@rollup/rollup-android-arm64": "4.61.1",
|
|
3779
|
+
"@rollup/rollup-darwin-arm64": "4.61.1",
|
|
3780
|
+
"@rollup/rollup-darwin-x64": "4.61.1",
|
|
3781
|
+
"@rollup/rollup-freebsd-arm64": "4.61.1",
|
|
3782
|
+
"@rollup/rollup-freebsd-x64": "4.61.1",
|
|
3783
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.61.1",
|
|
3784
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.61.1",
|
|
3785
|
+
"@rollup/rollup-linux-arm64-gnu": "4.61.1",
|
|
3786
|
+
"@rollup/rollup-linux-arm64-musl": "4.61.1",
|
|
3787
|
+
"@rollup/rollup-linux-loong64-gnu": "4.61.1",
|
|
3788
|
+
"@rollup/rollup-linux-loong64-musl": "4.61.1",
|
|
3789
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.61.1",
|
|
3790
|
+
"@rollup/rollup-linux-ppc64-musl": "4.61.1",
|
|
3791
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.61.1",
|
|
3792
|
+
"@rollup/rollup-linux-riscv64-musl": "4.61.1",
|
|
3793
|
+
"@rollup/rollup-linux-s390x-gnu": "4.61.1",
|
|
3794
|
+
"@rollup/rollup-linux-x64-gnu": "4.61.1",
|
|
3795
|
+
"@rollup/rollup-linux-x64-musl": "4.61.1",
|
|
3796
|
+
"@rollup/rollup-openbsd-x64": "4.61.1",
|
|
3797
|
+
"@rollup/rollup-openharmony-arm64": "4.61.1",
|
|
3798
|
+
"@rollup/rollup-win32-arm64-msvc": "4.61.1",
|
|
3799
|
+
"@rollup/rollup-win32-ia32-msvc": "4.61.1",
|
|
3800
|
+
"@rollup/rollup-win32-x64-gnu": "4.61.1",
|
|
3801
|
+
"@rollup/rollup-win32-x64-msvc": "4.61.1",
|
|
3802
|
+
"fsevents": "~2.3.2"
|
|
3803
|
+
}
|
|
3804
|
+
},
|
|
3805
|
+
"node_modules/scheduler": {
|
|
3806
|
+
"version": "0.27.0",
|
|
3807
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
3808
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
3809
|
+
"license": "MIT"
|
|
3810
|
+
},
|
|
3811
|
+
"node_modules/semver": {
|
|
3812
|
+
"version": "6.3.1",
|
|
3813
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
|
3814
|
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
|
3815
|
+
"dev": true,
|
|
3816
|
+
"license": "ISC",
|
|
3817
|
+
"bin": {
|
|
3818
|
+
"semver": "bin/semver.js"
|
|
3819
|
+
}
|
|
3820
|
+
},
|
|
3821
|
+
"node_modules/set-blocking": {
|
|
3822
|
+
"version": "2.0.0",
|
|
3823
|
+
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
|
|
3824
|
+
"integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
|
|
3825
|
+
"license": "ISC"
|
|
3826
|
+
},
|
|
3827
|
+
"node_modules/set-cookie-parser": {
|
|
3828
|
+
"version": "2.7.2",
|
|
3829
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
|
|
3830
|
+
"integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
|
|
3831
|
+
"license": "MIT"
|
|
3832
|
+
},
|
|
3833
|
+
"node_modules/sonner": {
|
|
3834
|
+
"version": "2.0.7",
|
|
3835
|
+
"resolved": "https://registry.npmjs.org/sonner/-/sonner-2.0.7.tgz",
|
|
3836
|
+
"integrity": "sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==",
|
|
3837
|
+
"license": "MIT",
|
|
3838
|
+
"peerDependencies": {
|
|
3839
|
+
"react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
3840
|
+
"react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
3841
|
+
}
|
|
3842
|
+
},
|
|
3843
|
+
"node_modules/source-map-js": {
|
|
3844
|
+
"version": "1.2.1",
|
|
3845
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
3846
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3847
|
+
"license": "BSD-3-Clause",
|
|
3848
|
+
"engines": {
|
|
3849
|
+
"node": ">=0.10.0"
|
|
3850
|
+
}
|
|
3851
|
+
},
|
|
3852
|
+
"node_modules/string-width": {
|
|
3853
|
+
"version": "4.2.3",
|
|
3854
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
3855
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
3856
|
+
"license": "MIT",
|
|
3857
|
+
"dependencies": {
|
|
3858
|
+
"emoji-regex": "^8.0.0",
|
|
3859
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
3860
|
+
"strip-ansi": "^6.0.1"
|
|
3861
|
+
},
|
|
3862
|
+
"engines": {
|
|
3863
|
+
"node": ">=8"
|
|
3864
|
+
}
|
|
3865
|
+
},
|
|
3866
|
+
"node_modules/strip-ansi": {
|
|
3867
|
+
"version": "6.0.1",
|
|
3868
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
3869
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
3870
|
+
"license": "MIT",
|
|
3871
|
+
"dependencies": {
|
|
3872
|
+
"ansi-regex": "^5.0.1"
|
|
3873
|
+
},
|
|
3874
|
+
"engines": {
|
|
3875
|
+
"node": ">=8"
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
"node_modules/swr": {
|
|
3879
|
+
"version": "2.4.1",
|
|
3880
|
+
"resolved": "https://registry.npmjs.org/swr/-/swr-2.4.1.tgz",
|
|
3881
|
+
"integrity": "sha512-2CC6CiKQtEwaEeNiqWTAw9PGykW8SR5zZX8MZk6TeAvEAnVS7Visz8WzphqgtQ8v2xz/4Q5K+j+SeMaKXeeQIA==",
|
|
3882
|
+
"license": "MIT",
|
|
3883
|
+
"dependencies": {
|
|
3884
|
+
"dequal": "^2.0.3",
|
|
3885
|
+
"use-sync-external-store": "^1.6.0"
|
|
3886
|
+
},
|
|
3887
|
+
"peerDependencies": {
|
|
3888
|
+
"react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
3889
|
+
}
|
|
3890
|
+
},
|
|
3891
|
+
"node_modules/tailwind-merge": {
|
|
3892
|
+
"version": "2.6.1",
|
|
3893
|
+
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.1.tgz",
|
|
3894
|
+
"integrity": "sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==",
|
|
3895
|
+
"license": "MIT",
|
|
3896
|
+
"funding": {
|
|
3897
|
+
"type": "github",
|
|
3898
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
3899
|
+
}
|
|
3900
|
+
},
|
|
3901
|
+
"node_modules/tailwindcss": {
|
|
3902
|
+
"version": "4.3.0",
|
|
3903
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz",
|
|
3904
|
+
"integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==",
|
|
3905
|
+
"license": "MIT"
|
|
3906
|
+
},
|
|
3907
|
+
"node_modules/tapable": {
|
|
3908
|
+
"version": "2.3.3",
|
|
3909
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
|
|
3910
|
+
"integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
|
|
3911
|
+
"license": "MIT",
|
|
3912
|
+
"engines": {
|
|
3913
|
+
"node": ">=6"
|
|
3914
|
+
},
|
|
3915
|
+
"funding": {
|
|
3916
|
+
"type": "opencollective",
|
|
3917
|
+
"url": "https://opencollective.com/webpack"
|
|
3918
|
+
}
|
|
3919
|
+
},
|
|
3920
|
+
"node_modules/tiny-invariant": {
|
|
3921
|
+
"version": "1.3.3",
|
|
3922
|
+
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
|
|
3923
|
+
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
|
|
3924
|
+
"license": "MIT"
|
|
3925
|
+
},
|
|
3926
|
+
"node_modules/tinyglobby": {
|
|
3927
|
+
"version": "0.2.17",
|
|
3928
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
3929
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
3930
|
+
"license": "MIT",
|
|
3931
|
+
"dependencies": {
|
|
3932
|
+
"fdir": "^6.5.0",
|
|
3933
|
+
"picomatch": "^4.0.4"
|
|
3934
|
+
},
|
|
3935
|
+
"engines": {
|
|
3936
|
+
"node": ">=12.0.0"
|
|
3937
|
+
},
|
|
3938
|
+
"funding": {
|
|
3939
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
3940
|
+
}
|
|
3941
|
+
},
|
|
3942
|
+
"node_modules/tslib": {
|
|
3943
|
+
"version": "2.8.1",
|
|
3944
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
3945
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
3946
|
+
"license": "0BSD"
|
|
3947
|
+
},
|
|
3948
|
+
"node_modules/tw-animate-css": {
|
|
3949
|
+
"version": "1.4.0",
|
|
3950
|
+
"resolved": "https://registry.npmjs.org/tw-animate-css/-/tw-animate-css-1.4.0.tgz",
|
|
3951
|
+
"integrity": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==",
|
|
3952
|
+
"license": "MIT",
|
|
3953
|
+
"funding": {
|
|
3954
|
+
"url": "https://github.com/sponsors/Wombosvideo"
|
|
3955
|
+
}
|
|
3956
|
+
},
|
|
3957
|
+
"node_modules/typescript": {
|
|
3958
|
+
"version": "5.9.3",
|
|
3959
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
3960
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
3961
|
+
"dev": true,
|
|
3962
|
+
"license": "Apache-2.0",
|
|
3963
|
+
"bin": {
|
|
3964
|
+
"tsc": "bin/tsc",
|
|
3965
|
+
"tsserver": "bin/tsserver"
|
|
3966
|
+
},
|
|
3967
|
+
"engines": {
|
|
3968
|
+
"node": ">=14.17"
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3971
|
+
"node_modules/undici-types": {
|
|
3972
|
+
"version": "7.24.6",
|
|
3973
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
|
|
3974
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
3975
|
+
"devOptional": true,
|
|
3976
|
+
"license": "MIT"
|
|
3977
|
+
},
|
|
3978
|
+
"node_modules/update-browserslist-db": {
|
|
3979
|
+
"version": "1.2.3",
|
|
3980
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
|
|
3981
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
3982
|
+
"dev": true,
|
|
3983
|
+
"funding": [
|
|
3984
|
+
{
|
|
3985
|
+
"type": "opencollective",
|
|
3986
|
+
"url": "https://opencollective.com/browserslist"
|
|
3987
|
+
},
|
|
3988
|
+
{
|
|
3989
|
+
"type": "tidelift",
|
|
3990
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
3991
|
+
},
|
|
3992
|
+
{
|
|
3993
|
+
"type": "github",
|
|
3994
|
+
"url": "https://github.com/sponsors/ai"
|
|
3995
|
+
}
|
|
3996
|
+
],
|
|
3997
|
+
"license": "MIT",
|
|
3998
|
+
"dependencies": {
|
|
3999
|
+
"escalade": "^3.2.0",
|
|
4000
|
+
"picocolors": "^1.1.1"
|
|
4001
|
+
},
|
|
4002
|
+
"bin": {
|
|
4003
|
+
"update-browserslist-db": "cli.js"
|
|
4004
|
+
},
|
|
4005
|
+
"peerDependencies": {
|
|
4006
|
+
"browserslist": ">= 4.21.0"
|
|
4007
|
+
}
|
|
4008
|
+
},
|
|
4009
|
+
"node_modules/use-callback-ref": {
|
|
4010
|
+
"version": "1.3.3",
|
|
4011
|
+
"resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
|
|
4012
|
+
"integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
|
|
4013
|
+
"license": "MIT",
|
|
4014
|
+
"dependencies": {
|
|
4015
|
+
"tslib": "^2.0.0"
|
|
4016
|
+
},
|
|
4017
|
+
"engines": {
|
|
4018
|
+
"node": ">=10"
|
|
4019
|
+
},
|
|
4020
|
+
"peerDependencies": {
|
|
4021
|
+
"@types/react": "*",
|
|
4022
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
4023
|
+
},
|
|
4024
|
+
"peerDependenciesMeta": {
|
|
4025
|
+
"@types/react": {
|
|
4026
|
+
"optional": true
|
|
4027
|
+
}
|
|
4028
|
+
}
|
|
4029
|
+
},
|
|
4030
|
+
"node_modules/use-sidecar": {
|
|
4031
|
+
"version": "1.1.3",
|
|
4032
|
+
"resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
|
|
4033
|
+
"integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
|
|
4034
|
+
"license": "MIT",
|
|
4035
|
+
"dependencies": {
|
|
4036
|
+
"detect-node-es": "^1.1.0",
|
|
4037
|
+
"tslib": "^2.0.0"
|
|
4038
|
+
},
|
|
4039
|
+
"engines": {
|
|
4040
|
+
"node": ">=10"
|
|
4041
|
+
},
|
|
4042
|
+
"peerDependencies": {
|
|
4043
|
+
"@types/react": "*",
|
|
4044
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
4045
|
+
},
|
|
4046
|
+
"peerDependenciesMeta": {
|
|
4047
|
+
"@types/react": {
|
|
4048
|
+
"optional": true
|
|
4049
|
+
}
|
|
4050
|
+
}
|
|
4051
|
+
},
|
|
4052
|
+
"node_modules/use-sync-external-store": {
|
|
4053
|
+
"version": "1.6.0",
|
|
4054
|
+
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
|
|
4055
|
+
"integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
|
|
4056
|
+
"license": "MIT",
|
|
4057
|
+
"peerDependencies": {
|
|
4058
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
4059
|
+
}
|
|
4060
|
+
},
|
|
4061
|
+
"node_modules/vaul": {
|
|
4062
|
+
"version": "1.1.2",
|
|
4063
|
+
"resolved": "https://registry.npmjs.org/vaul/-/vaul-1.1.2.tgz",
|
|
4064
|
+
"integrity": "sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==",
|
|
4065
|
+
"license": "MIT",
|
|
4066
|
+
"dependencies": {
|
|
4067
|
+
"@radix-ui/react-dialog": "^1.1.1"
|
|
4068
|
+
},
|
|
4069
|
+
"peerDependencies": {
|
|
4070
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
|
|
4071
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
|
|
4072
|
+
}
|
|
4073
|
+
},
|
|
4074
|
+
"node_modules/victory-vendor": {
|
|
4075
|
+
"version": "37.3.6",
|
|
4076
|
+
"resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz",
|
|
4077
|
+
"integrity": "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==",
|
|
4078
|
+
"license": "MIT AND ISC",
|
|
4079
|
+
"dependencies": {
|
|
4080
|
+
"@types/d3-array": "^3.0.3",
|
|
4081
|
+
"@types/d3-ease": "^3.0.0",
|
|
4082
|
+
"@types/d3-interpolate": "^3.0.1",
|
|
4083
|
+
"@types/d3-scale": "^4.0.2",
|
|
4084
|
+
"@types/d3-shape": "^3.1.0",
|
|
4085
|
+
"@types/d3-time": "^3.0.0",
|
|
4086
|
+
"@types/d3-timer": "^3.0.0",
|
|
4087
|
+
"d3-array": "^3.1.6",
|
|
4088
|
+
"d3-ease": "^3.0.1",
|
|
4089
|
+
"d3-interpolate": "^3.0.1",
|
|
4090
|
+
"d3-scale": "^4.0.2",
|
|
4091
|
+
"d3-shape": "^3.1.0",
|
|
4092
|
+
"d3-time": "^3.0.0",
|
|
4093
|
+
"d3-timer": "^3.0.1"
|
|
4094
|
+
}
|
|
4095
|
+
},
|
|
4096
|
+
"node_modules/vite": {
|
|
4097
|
+
"version": "6.4.3",
|
|
4098
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
|
|
4099
|
+
"integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
|
|
4100
|
+
"license": "MIT",
|
|
4101
|
+
"dependencies": {
|
|
4102
|
+
"esbuild": "^0.25.0",
|
|
4103
|
+
"fdir": "^6.4.4",
|
|
4104
|
+
"picomatch": "^4.0.2",
|
|
4105
|
+
"postcss": "^8.5.3",
|
|
4106
|
+
"rollup": "^4.34.9",
|
|
4107
|
+
"tinyglobby": "^0.2.13"
|
|
4108
|
+
},
|
|
4109
|
+
"bin": {
|
|
4110
|
+
"vite": "bin/vite.js"
|
|
4111
|
+
},
|
|
4112
|
+
"engines": {
|
|
4113
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
4114
|
+
},
|
|
4115
|
+
"funding": {
|
|
4116
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
4117
|
+
},
|
|
4118
|
+
"optionalDependencies": {
|
|
4119
|
+
"fsevents": "~2.3.3"
|
|
4120
|
+
},
|
|
4121
|
+
"peerDependencies": {
|
|
4122
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
4123
|
+
"jiti": ">=1.21.0",
|
|
4124
|
+
"less": "*",
|
|
4125
|
+
"lightningcss": "^1.21.0",
|
|
4126
|
+
"sass": "*",
|
|
4127
|
+
"sass-embedded": "*",
|
|
4128
|
+
"stylus": "*",
|
|
4129
|
+
"sugarss": "*",
|
|
4130
|
+
"terser": "^5.16.0",
|
|
4131
|
+
"tsx": "^4.8.1",
|
|
4132
|
+
"yaml": "^2.4.2"
|
|
4133
|
+
},
|
|
4134
|
+
"peerDependenciesMeta": {
|
|
4135
|
+
"@types/node": {
|
|
4136
|
+
"optional": true
|
|
4137
|
+
},
|
|
4138
|
+
"jiti": {
|
|
4139
|
+
"optional": true
|
|
4140
|
+
},
|
|
4141
|
+
"less": {
|
|
4142
|
+
"optional": true
|
|
4143
|
+
},
|
|
4144
|
+
"lightningcss": {
|
|
4145
|
+
"optional": true
|
|
4146
|
+
},
|
|
4147
|
+
"sass": {
|
|
4148
|
+
"optional": true
|
|
4149
|
+
},
|
|
4150
|
+
"sass-embedded": {
|
|
4151
|
+
"optional": true
|
|
4152
|
+
},
|
|
4153
|
+
"stylus": {
|
|
4154
|
+
"optional": true
|
|
4155
|
+
},
|
|
4156
|
+
"sugarss": {
|
|
4157
|
+
"optional": true
|
|
4158
|
+
},
|
|
4159
|
+
"terser": {
|
|
4160
|
+
"optional": true
|
|
4161
|
+
},
|
|
4162
|
+
"tsx": {
|
|
4163
|
+
"optional": true
|
|
4164
|
+
},
|
|
4165
|
+
"yaml": {
|
|
4166
|
+
"optional": true
|
|
4167
|
+
}
|
|
4168
|
+
}
|
|
4169
|
+
},
|
|
4170
|
+
"node_modules/vite/node_modules/fsevents": {
|
|
4171
|
+
"version": "2.3.3",
|
|
4172
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
4173
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
4174
|
+
"hasInstallScript": true,
|
|
4175
|
+
"license": "MIT",
|
|
4176
|
+
"optional": true,
|
|
4177
|
+
"os": [
|
|
4178
|
+
"darwin"
|
|
4179
|
+
],
|
|
4180
|
+
"engines": {
|
|
4181
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
4182
|
+
}
|
|
4183
|
+
},
|
|
4184
|
+
"node_modules/which-module": {
|
|
4185
|
+
"version": "2.0.1",
|
|
4186
|
+
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
|
|
4187
|
+
"integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
|
|
4188
|
+
"license": "ISC"
|
|
4189
|
+
},
|
|
4190
|
+
"node_modules/wrap-ansi": {
|
|
4191
|
+
"version": "6.2.0",
|
|
4192
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
4193
|
+
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
|
4194
|
+
"license": "MIT",
|
|
4195
|
+
"dependencies": {
|
|
4196
|
+
"ansi-styles": "^4.0.0",
|
|
4197
|
+
"string-width": "^4.1.0",
|
|
4198
|
+
"strip-ansi": "^6.0.0"
|
|
4199
|
+
},
|
|
4200
|
+
"engines": {
|
|
4201
|
+
"node": ">=8"
|
|
4202
|
+
}
|
|
4203
|
+
},
|
|
4204
|
+
"node_modules/y18n": {
|
|
4205
|
+
"version": "4.0.3",
|
|
4206
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
|
|
4207
|
+
"integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
|
|
4208
|
+
"license": "ISC"
|
|
4209
|
+
},
|
|
4210
|
+
"node_modules/yallist": {
|
|
4211
|
+
"version": "3.1.1",
|
|
4212
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
|
4213
|
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
|
4214
|
+
"dev": true,
|
|
4215
|
+
"license": "ISC"
|
|
4216
|
+
},
|
|
4217
|
+
"node_modules/yargs": {
|
|
4218
|
+
"version": "15.4.1",
|
|
4219
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
|
|
4220
|
+
"integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
|
|
4221
|
+
"license": "MIT",
|
|
4222
|
+
"dependencies": {
|
|
4223
|
+
"cliui": "^6.0.0",
|
|
4224
|
+
"decamelize": "^1.2.0",
|
|
4225
|
+
"find-up": "^4.1.0",
|
|
4226
|
+
"get-caller-file": "^2.0.1",
|
|
4227
|
+
"require-directory": "^2.1.1",
|
|
4228
|
+
"require-main-filename": "^2.0.0",
|
|
4229
|
+
"set-blocking": "^2.0.0",
|
|
4230
|
+
"string-width": "^4.2.0",
|
|
4231
|
+
"which-module": "^2.0.0",
|
|
4232
|
+
"y18n": "^4.0.0",
|
|
4233
|
+
"yargs-parser": "^18.1.2"
|
|
4234
|
+
},
|
|
4235
|
+
"engines": {
|
|
4236
|
+
"node": ">=8"
|
|
4237
|
+
}
|
|
4238
|
+
},
|
|
4239
|
+
"node_modules/yargs-parser": {
|
|
4240
|
+
"version": "18.1.3",
|
|
4241
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
|
|
4242
|
+
"integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
|
|
4243
|
+
"license": "ISC",
|
|
4244
|
+
"dependencies": {
|
|
4245
|
+
"camelcase": "^5.0.0",
|
|
4246
|
+
"decamelize": "^1.2.0"
|
|
4247
|
+
},
|
|
4248
|
+
"engines": {
|
|
4249
|
+
"node": ">=6"
|
|
4250
|
+
}
|
|
4251
|
+
}
|
|
4252
|
+
}
|
|
4253
|
+
}
|