@agentprojectcontext/apx 1.80.2 → 1.89.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 +9 -8
- package/skills/apc-context/SKILL.md +14 -7
- package/skills/apx/SKILL.md +62 -2
- package/skills/apx-mcp/SKILL.md +42 -15
- package/src/core/agent/a2a/peers.js +161 -0
- package/src/core/agent/a2a/reply.js +379 -27
- package/src/core/agent/abort.js +25 -0
- package/src/core/agent/agent-model.js +58 -0
- package/src/core/agent/agent-tools.js +101 -0
- package/src/core/agent/author-line.js +110 -0
- package/src/core/agent/build-agent-system.js +52 -18
- package/src/core/agent/channels/voice-context.js +17 -2
- package/src/core/agent/closing-floor.js +117 -0
- package/src/core/agent/constants.js +119 -11
- package/src/core/agent/engine-call.js +56 -0
- package/src/core/agent/group/run-group-turn.js +218 -0
- package/src/core/agent/group/turn-resolver.js +165 -0
- package/src/core/agent/judge.js +138 -11
- package/src/core/agent/loop/side-effects.js +106 -3
- package/src/core/agent/memory.js +31 -18
- package/src/core/agent/model-capabilities.js +47 -0
- package/src/core/agent/model-router.js +11 -40
- package/src/core/agent/prompt-builder.js +47 -0
- package/src/core/agent/prompts/channels/a2a.md +12 -0
- package/src/core/agent/prompts/channels/code.md +3 -1
- package/src/core/agent/prompts/channels/telegram.md +2 -0
- package/src/core/agent/prompts/channels/web_code.md +1 -1
- package/src/core/agent/prompts/channels/whatsapp.md +37 -0
- package/src/core/agent/prompts/core/agent-base.md +2 -0
- package/src/core/agent/prompts/discipline/action.md +1 -0
- package/src/core/agent/prompts/discipline/two-segment.md +2 -1
- package/src/core/agent/prompts/modes/mobility.md +36 -0
- package/src/core/agent/retry.js +42 -0
- package/src/core/agent/run-agent.js +322 -25
- package/src/core/agent/run-turn.js +253 -0
- package/src/core/agent/self-memory.js +18 -52
- package/src/core/agent/skills/agent-skills.js +118 -0
- package/src/core/agent/skills/catalog.js +1 -1
- package/src/core/agent/skills/declared.js +13 -0
- package/src/core/agent/skills/index-store.js +8 -1
- package/src/core/agent/skills/inspector.js +20 -3
- package/src/core/agent/skills/loader.js +18 -3
- package/src/core/agent/skills/media.js +121 -0
- package/src/core/agent/skills/origin.js +61 -0
- package/src/core/agent/skills/sections.js +136 -0
- package/src/core/agent/super-agent.js +54 -14
- package/src/core/agent/tools/handlers/_calendar.js +50 -0
- package/src/core/agent/tools/handlers/add-mcp.js +103 -0
- package/src/core/agent/tools/handlers/asana-create-task.js +3 -1
- package/src/core/agent/tools/handlers/attach-media.js +56 -0
- package/src/core/agent/tools/handlers/calendar-create-event.js +38 -0
- package/src/core/agent/tools/handlers/calendar-find-slot.js +39 -0
- package/src/core/agent/tools/handlers/calendar-list-events.js +39 -0
- package/src/core/agent/tools/handlers/calendar-update-event.js +35 -0
- package/src/core/agent/tools/handlers/call-agent.js +14 -6
- package/src/core/agent/tools/handlers/call-runtime.js +27 -49
- package/src/core/agent/tools/handlers/comment-task.js +78 -0
- package/src/core/agent/tools/handlers/complete-task.js +60 -0
- package/src/core/agent/tools/handlers/configure-agent.js +70 -0
- package/src/core/agent/tools/handlers/create-agent.js +68 -0
- package/src/core/agent/tools/handlers/create-task.js +41 -3
- package/src/core/agent/tools/handlers/import-agent.js +5 -5
- package/src/core/agent/tools/handlers/list-mcp-tools.js +83 -0
- package/src/core/agent/tools/handlers/list-routines.js +46 -0
- package/src/core/agent/tools/handlers/list-tasks.js +8 -1
- package/src/core/agent/tools/handlers/mark-commitment.js +57 -0
- package/src/core/agent/tools/handlers/read-skill.js +64 -0
- package/src/core/agent/tools/handlers/remember-routine.js +2 -8
- package/src/core/agent/tools/handlers/remember.js +82 -6
- package/src/core/agent/tools/handlers/remove-agent.js +42 -0
- package/src/core/agent/tools/handlers/run-routine.js +94 -0
- package/src/core/agent/tools/handlers/run-shell.js +44 -2
- package/src/core/agent/tools/handlers/send-telegram.js +41 -19
- package/src/core/agent/tools/handlers/set-agent-prompt.js +44 -0
- package/src/core/agent/tools/handlers/view-media.js +69 -0
- package/src/core/agent/tools/handlers/write-agent-memory.js +52 -0
- package/src/core/agent/tools/helpers.js +36 -4
- package/src/core/agent/tools/names.js +64 -0
- package/src/core/agent/tools/registry-bridge.js +24 -1
- package/src/core/agent/tools/registry.js +79 -0
- package/src/core/agent/tools/tool-call-parser.js +136 -13
- package/src/core/agent/vision-bridge.js +69 -0
- package/src/core/apc/agent-identity.js +74 -0
- package/src/core/apc/agent-rename-refs.js +187 -0
- package/src/core/apc/agent-write.js +312 -0
- package/src/core/apc/agents-vault.js +1 -1
- package/src/core/apc/blob-keys.js +42 -0
- package/src/core/apc/frontmatter.js +166 -10
- package/src/core/apc/parser.js +33 -83
- package/src/core/apc/paths.js +4 -6
- package/src/core/apc/project-memory.js +44 -0
- package/src/core/apc/projects-helpers.js +33 -0
- package/src/core/apc/scaffold.js +36 -16
- package/src/core/channels/telegram/ask-callbacks.js +103 -0
- package/src/core/channels/telegram/dispatch.js +154 -30
- package/src/core/channels/telegram/helpers.js +59 -7
- package/src/core/channels/telegram/inbound/audio.js +26 -30
- package/src/core/channels/telegram/inbound/file.js +22 -32
- package/src/core/channels/telegram/inbound/photo.js +24 -28
- package/src/core/channels/telegram/progress-gate.js +76 -0
- package/src/core/channels/telegram/reply.js +151 -43
- package/src/core/channels/telegram/voice-note.js +150 -0
- package/src/core/config/index.js +53 -54
- package/src/core/config/paths.js +117 -31
- package/src/core/config/redact.js +89 -4
- package/src/core/config/secret-values.js +2 -4
- package/src/core/constants/actors.js +5 -0
- package/src/core/constants/channels.js +3 -1
- package/src/core/constants/task-categories.js +73 -0
- package/src/core/constants/task-fields.js +28 -0
- package/src/core/engines/_globs.js +33 -0
- package/src/core/engines/anthropic.js +19 -1
- package/src/core/engines/catalog.js +20 -0
- package/src/core/engines/gemini.js +84 -16
- package/src/core/engines/index.js +19 -3
- package/src/core/engines/mock.js +145 -1
- package/src/core/engines/openai-compatible.js +150 -15
- package/src/core/engines/presets.js +36 -9
- package/src/core/engines/zen.js +131 -0
- package/src/core/events/bus.js +140 -0
- package/src/core/events/mascot-notify.js +156 -0
- package/src/core/http-tools/browser.js +366 -36
- package/src/core/http-tools/catalog.js +206 -22
- package/src/core/http-tools/grep.js +62 -7
- package/src/core/http-tools/registry.js +3 -1
- package/src/core/i18n/en.js +34 -3
- package/src/core/i18n/es.js +36 -4
- package/src/core/i18n/index.js +5 -5
- package/src/core/i18n/pt.js +32 -3
- package/src/core/identity/self.js +14 -1
- package/src/core/images/engines/a1111.js +219 -0
- package/src/core/images/engines/index.js +187 -0
- package/src/core/images/engines/mock.js +74 -0
- package/src/core/images/engines/openai.js +130 -0
- package/src/core/images/engines/sdcpp.js +204 -0
- package/src/core/images/engines/shared.js +218 -0
- package/src/core/images/generate.js +260 -0
- package/src/core/integrations/catalog.js +8 -3
- package/src/core/integrations/plugins/_google-oauth.js +179 -0
- package/src/core/integrations/plugins/asana.js +7 -3
- package/src/core/integrations/plugins/calendar.js +404 -0
- package/src/core/integrations/store.js +2 -0
- package/src/core/memory/broker.js +16 -1
- package/src/core/memory/compactor.js +19 -3
- package/src/core/memory/consolidate.js +2 -2
- package/src/core/memory/dated-log.js +66 -0
- package/src/core/memory/embed-engines/custom.js +59 -0
- package/src/core/memory/embed-engines/gemini.js +9 -3
- package/src/core/memory/embed-engines/index.js +87 -15
- package/src/core/memory/embeddings.js +52 -24
- package/src/core/memory/index.js +13 -3
- package/src/core/memory/indexer.js +83 -27
- package/src/core/memory/prune.js +182 -0
- package/src/core/memory/store.js +22 -0
- package/src/core/memory/summarizer.js +72 -8
- package/src/core/mobility/answer.js +80 -0
- package/src/core/mobility/geofence.js +667 -0
- package/src/core/mobility/osm-route.js +282 -0
- package/src/core/mobility/preferences.js +91 -0
- package/src/core/mobility/state.js +245 -0
- package/src/core/mobility/trip-event.js +384 -0
- package/src/core/net/tailscale.js +168 -0
- package/src/core/profiles/bundled/secretary/PROFILE.md +32 -42
- package/src/core/profiles/bundled/secretary/config.schema.es.json +68 -0
- package/src/core/profiles/bundled/secretary/config.schema.json +30 -2
- package/src/core/profiles/bundled/secretary/profile.json +3 -1
- package/src/core/profiles/bundled/secretary/routines/a2a-sweep.json +20 -0
- package/src/core/profiles/bundled/secretary/routines/day-close.json +4 -1
- package/src/core/profiles/bundled/secretary/routines/day-open.json +7 -1
- package/src/core/profiles/bundled/secretary/routines/watch.json +13 -2
- package/src/core/profiles/lifecycle.js +243 -19
- package/src/core/profiles/paths.js +12 -0
- package/src/core/profiles/store.js +47 -0
- package/src/core/routines/active-runs.js +213 -0
- package/src/core/routines/delivery.js +612 -0
- package/src/core/routines/header.js +88 -0
- package/src/core/routines/index.js +26 -0
- package/src/core/routines/run-log.js +78 -0
- package/src/core/routines/runner.js +629 -66
- package/src/core/routines/signals.js +75 -0
- package/src/core/runtime-skills/apc-context/SKILL.md +14 -7
- package/src/core/runtime-skills/apx/SKILL.md +93 -1
- package/src/core/runtime-skills/apx-agency-agents/SKILL.md +2 -2
- package/src/core/runtime-skills/apx-agent/SKILL.md +134 -19
- package/src/core/runtime-skills/apx-commitment/SKILL.md +134 -0
- package/src/core/runtime-skills/apx-image/SKILL.md +60 -0
- package/src/core/runtime-skills/apx-integrations/SKILL.md +82 -0
- package/src/core/runtime-skills/apx-mcp/SKILL.md +45 -14
- package/src/core/runtime-skills/apx-mcp-builder/SKILL.md +4 -4
- package/src/core/runtime-skills/apx-profile/SKILL.md +27 -2
- package/src/core/runtime-skills/apx-project/SKILL.md +23 -2
- package/src/core/runtime-skills/apx-routine/SKILL.md +40 -17
- package/src/core/runtime-skills/apx-runtime/SKILL.md +124 -14
- package/src/core/runtime-skills/apx-sessions/SKILL.md +7 -6
- package/src/core/runtime-skills/apx-skill-builder/SKILL.md +15 -13
- package/src/core/runtime-skills/apx-task/SKILL.md +79 -26
- package/src/core/runtime-skills/apx-telegram/SKILL.md +12 -12
- package/src/core/runtime-skills/apx-transcribe/SKILL.md +56 -0
- package/src/core/runtime-skills/apx-voice/SKILL.md +27 -8
- package/src/core/runtime-skills/claude-code/SKILL.md +8 -0
- package/src/core/runtime-skills/openrouter/SKILL.md +8 -2
- package/src/core/runtimes/_spawn.js +9 -1
- package/src/core/runtimes/claude-code.js +11 -2
- package/src/core/runtimes/codex.js +44 -10
- package/src/core/runtimes/index.js +17 -2
- package/src/core/runtimes/opencode.js +88 -9
- package/src/core/runtimes/outcome.js +119 -0
- package/src/core/sessions/index.js +193 -1
- package/src/core/stores/agent-inbox.js +109 -23
- package/src/core/stores/code-sessions.js +21 -0
- package/src/core/stores/commitments.js +27 -3
- package/src/core/stores/conversations.js +220 -20
- package/src/core/stores/deliveries.js +177 -0
- package/src/core/stores/media-archive.js +228 -0
- package/src/core/stores/messages.js +1096 -112
- package/src/core/stores/organization.js +34 -0
- package/src/core/stores/project-memory.js +71 -0
- package/src/core/stores/routine-memory.js +16 -8
- package/src/core/stores/routines.js +27 -49
- package/src/core/stores/sessions.js +4 -8
- package/src/core/stores/tasks.js +212 -18
- package/src/core/stores/turn-record.js +209 -0
- package/src/core/tasks/columns.js +136 -0
- package/src/core/tasks/comment-turn.js +258 -0
- package/src/core/util/time.js +13 -0
- package/src/core/voice/engines/index.js +54 -1
- package/src/core/voice/engines/openai.js +50 -4
- package/src/core/voice/opus.js +67 -0
- package/src/core/voice/pronounceable.js +43 -0
- package/src/core/voice/transcription.js +4 -0
- package/src/core/voice/tts.js +114 -24
- package/src/host/daemon/active-turns.js +188 -0
- package/src/host/daemon/api/admin-config.js +9 -0
- package/src/host/daemon/api/agents.js +99 -90
- package/src/host/daemon/api/artifact-preview.js +7 -6
- package/src/host/daemon/api/artifacts.js +3 -2
- package/src/host/daemon/api/code.js +55 -9
- package/src/host/daemon/api/commitments.js +11 -0
- package/src/host/daemon/api/confirm.js +3 -2
- package/src/host/daemon/api/conversations.js +543 -35
- package/src/host/daemon/api/deck.js +9 -8
- package/src/host/daemon/api/deliveries.js +33 -0
- package/src/host/daemon/api/desktop.js +5 -4
- package/src/host/daemon/api/embeddings.js +15 -6
- package/src/host/daemon/api/engines.js +59 -8
- package/src/host/daemon/api/exec.js +437 -121
- package/src/host/daemon/api/groups.js +215 -0
- package/src/host/daemon/api/images.js +107 -0
- package/src/host/daemon/api/inbox.js +123 -2
- package/src/host/daemon/api/integrations.js +64 -2
- package/src/host/daemon/api/mcps.js +7 -6
- package/src/host/daemon/api/media.js +283 -0
- package/src/host/daemon/api/mobility.js +177 -0
- package/src/host/daemon/api/net.js +182 -0
- package/src/host/daemon/api/pairing.js +38 -5
- package/src/host/daemon/api/profiles.js +30 -2
- package/src/host/daemon/api/routines.js +36 -4
- package/src/host/daemon/api/runtimes.js +74 -39
- package/src/host/daemon/api/sessions-search.js +7 -2
- package/src/host/daemon/api/sessions.js +44 -2
- package/src/host/daemon/api/shared.js +127 -20
- package/src/host/daemon/api/skills.js +11 -4
- package/src/host/daemon/api/super-agent.js +384 -53
- package/src/host/daemon/api/tasks.js +180 -10
- package/src/host/daemon/api/telegram.js +11 -10
- package/src/host/daemon/api/thread-faces.js +159 -0
- package/src/host/daemon/api/top-level.js +3 -3
- package/src/host/daemon/api/transcribe.js +11 -10
- package/src/host/daemon/api/tts.js +97 -4
- package/src/host/daemon/api/turn-abort.js +23 -0
- package/src/host/daemon/api/turns.js +49 -0
- package/src/host/daemon/api/voice.js +5 -4
- package/src/host/daemon/api/web.js +98 -0
- package/src/host/daemon/api.js +39 -0
- package/src/host/daemon/delivery-sweep.js +58 -0
- package/src/host/daemon/desktop-ws.js +5 -23
- package/src/host/daemon/events-ws.js +273 -0
- package/src/host/daemon/index.js +59 -15
- package/src/host/daemon/plugins/desktop/index.js +17 -4
- package/src/host/daemon/plugins/telegram/index.js +78 -40
- package/src/host/daemon/pty-bridge.py +99 -0
- package/src/host/daemon/routines-scheduler.js +1 -0
- package/src/host/daemon/smoke.js +1 -2
- package/src/host/daemon/terminal-ws.js +132 -0
- package/src/host/daemon/tts-keepwarm.js +87 -0
- package/src/host/daemon/wakeup.js +11 -6
- package/src/host/daemon/whisper-server.js +44 -0
- package/src/host/daemon/whisper-server.py +70 -13
- package/src/host/daemon/ws-auth.js +28 -0
- package/src/interfaces/android/app/build.gradle +42 -0
- package/src/interfaces/android/app/proguard-rules.pro +4 -0
- package/src/interfaces/android/app/src/main/AndroidManifest.xml +139 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/AlertScreen.java +139 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/AndroidAutoDetector.java +106 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/ApxCarAppService.java +57 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/ApxPreferences.java +165 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/CarAlertStore.java +84 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/CarMessageActionReceiver.java +47 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/CarMessageNotification.java +152 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/DaemonAddress.java +35 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/DaemonClient.java +339 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/DeviceLocation.java +38 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/ErrandScreen.java +127 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MainActivity.java +872 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MapsNavigationDetector.java +63 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MapsNavigationListenerService.java +453 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MapsShareIntentParser.java +93 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MascotBlobCatalog.java +66 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MascotOverlayService.java +448 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MascotView.java +249 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/MessageFrameParser.java +240 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/NotifyChannels.java +69 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/ProximityActionReceiver.java +78 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/ProximityNotification.java +161 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/StartupReceiver.java +57 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/TravelEventGate.java +62 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/TravelStatusBanner.java +116 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/TripLocationService.java +272 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/TripPlacesSheet.java +203 -0
- package/src/interfaces/android/app/src/main/java/dev/agentprojectcontext/apx/TripScreen.java +182 -0
- package/src/interfaces/android/app/src/main/res/drawable/app_background.xml +12 -0
- package/src/interfaces/android/app/src/main/res/drawable/ic_apx_app.xml +10 -0
- package/src/interfaces/android/app/src/main/res/drawable/ic_apx_launcher_foreground.xml +12 -0
- package/src/interfaces/android/app/src/main/res/drawable/ic_apx_notification.xml +22 -0
- package/src/interfaces/android/app/src/main/res/drawable/ic_trip_car.xml +37 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/apx_logo.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_amatista.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_aqua.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_brasa.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_campana.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_caracol.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_carbon.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_cobalto.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_cometa.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_coral.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_cubi.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_eclipse.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_faro.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_gajo.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_iris.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_kiwi.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_laguna.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_lila.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_menta.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_nimbo.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_noche.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_onyx.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_orbita.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_ovni.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_papa.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_parche.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_peon.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_perla.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_pino.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_quad.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_rubi.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_saturno.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_trebol.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_trino.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_volcan.png +0 -0
- package/src/interfaces/android/app/src/main/res/drawable-nodpi/mascot_zafiro.png +0 -0
- package/src/interfaces/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/src/interfaces/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/src/interfaces/android/app/src/main/res/raw/apx_notification.mp3 +0 -0
- package/src/interfaces/android/app/src/main/res/values/colors.xml +4 -0
- package/src/interfaces/android/app/src/main/res/values/strings.xml +25 -0
- package/src/interfaces/android/app/src/main/res/values/styles.xml +10 -0
- package/src/interfaces/android/app/src/main/res/values-v31/styles.xml +14 -0
- package/src/interfaces/android/app/src/main/res/xml/automotive_app_desc.xml +9 -0
- package/src/interfaces/android/app/src/main/res/xml/network_security_config.xml +10 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/AndroidAutoDetectorTest.java +85 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/CarAlertStoreTest.java +104 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/DaemonAddressTest.java +23 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/MapsNavigationDetectorTest.java +69 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/MapsShareIntentParserTest.java +31 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/MessageFrameParserTest.java +180 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/TravelEventGateTest.java +64 -0
- package/src/interfaces/android/app/src/test/java/dev/agentprojectcontext/apx/TripPlacesSheetTest.java +66 -0
- package/src/interfaces/android/build.gradle +3 -0
- package/src/interfaces/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/src/interfaces/android/gradle/wrapper/gradle-wrapper.properties +9 -0
- package/src/interfaces/android/gradle.properties +3 -0
- package/src/interfaces/android/gradlew +248 -0
- package/src/interfaces/android/gradlew.bat +82 -0
- package/src/interfaces/android/settings.gradle +18 -0
- package/src/interfaces/cli/commands/a2a.js +145 -4
- package/src/interfaces/cli/commands/agent.js +247 -22
- package/src/interfaces/cli/commands/code.js +1 -1
- package/src/interfaces/cli/commands/commitment.js +5 -0
- package/src/interfaces/cli/commands/config.js +85 -6
- package/src/interfaces/cli/commands/exec.js +90 -1
- package/src/interfaces/cli/commands/image.js +314 -0
- package/src/interfaces/cli/commands/mcp.js +87 -23
- package/src/interfaces/cli/commands/memory.js +35 -22
- package/src/interfaces/cli/commands/panel.js +94 -0
- package/src/interfaces/cli/commands/profile.js +14 -0
- package/src/interfaces/cli/commands/project.js +29 -0
- package/src/interfaces/cli/commands/routine.js +45 -10
- package/src/interfaces/cli/commands/runtime.js +30 -7
- package/src/interfaces/cli/commands/session.js +90 -38
- package/src/interfaces/cli/commands/sessions.js +35 -2
- package/src/interfaces/cli/commands/skills.js +15 -9
- package/src/interfaces/cli/commands/status.js +2 -3
- package/src/interfaces/cli/commands/task.js +54 -5
- package/src/interfaces/cli/commands/telegram.js +12 -4
- package/src/interfaces/cli/commands/transcribe.js +177 -0
- package/src/interfaces/cli/help/index.js +311 -72
- package/src/interfaces/cli/http.js +61 -13
- package/src/interfaces/cli/index.js +1 -1
- package/src/interfaces/cli/routes/agent.js +5 -4
- package/src/interfaces/cli/routes/commitment.js +3 -2
- package/src/interfaces/cli/routes/config.js +7 -2
- package/src/interfaces/cli/routes/image.js +11 -0
- package/src/interfaces/cli/routes/index.js +2 -0
- package/src/interfaces/cli/routes/log.js +1 -1
- package/src/interfaces/cli/routes/memory.js +3 -2
- package/src/interfaces/cli/routes/panel.js +15 -2
- package/src/interfaces/cli/routes/profile.js +3 -2
- package/src/interfaces/cli/routes/transcribe.js +10 -0
- package/src/interfaces/cli/stdin.js +29 -0
- package/src/interfaces/desktop/assets/blobs/amatista.png +0 -0
- package/src/interfaces/desktop/assets/blobs/aqua.png +0 -0
- package/src/interfaces/desktop/assets/blobs/brasa.png +0 -0
- package/src/interfaces/desktop/assets/blobs/campana.png +0 -0
- package/src/interfaces/desktop/assets/blobs/caracol.png +0 -0
- package/src/interfaces/desktop/assets/blobs/carbon.png +0 -0
- package/src/interfaces/desktop/assets/blobs/cobalto.png +0 -0
- package/src/interfaces/desktop/assets/blobs/cometa.png +0 -0
- package/src/interfaces/desktop/assets/blobs/coral.png +0 -0
- package/src/interfaces/desktop/assets/blobs/cubi.png +0 -0
- package/src/interfaces/desktop/assets/blobs/eclipse.png +0 -0
- package/src/interfaces/desktop/assets/blobs/faro.png +0 -0
- package/src/interfaces/desktop/assets/blobs/gajo.png +0 -0
- package/src/interfaces/desktop/assets/blobs/iris.png +0 -0
- package/src/interfaces/desktop/assets/blobs/kiwi.png +0 -0
- package/src/interfaces/desktop/assets/blobs/laguna.png +0 -0
- package/src/interfaces/desktop/assets/blobs/lila.png +0 -0
- package/src/interfaces/desktop/assets/blobs/menta.png +0 -0
- package/src/interfaces/desktop/assets/blobs/nimbo.png +0 -0
- package/src/interfaces/desktop/assets/blobs/noche.png +0 -0
- package/src/interfaces/desktop/assets/blobs/onyx.png +0 -0
- package/src/interfaces/desktop/assets/blobs/orbita.png +0 -0
- package/src/interfaces/desktop/assets/blobs/ovni.png +0 -0
- package/src/interfaces/desktop/assets/blobs/papa.png +0 -0
- package/src/interfaces/desktop/assets/blobs/parche.png +0 -0
- package/src/interfaces/desktop/assets/blobs/peon.png +0 -0
- package/src/interfaces/desktop/assets/blobs/perla.png +0 -0
- package/src/interfaces/desktop/assets/blobs/pino.png +0 -0
- package/src/interfaces/desktop/assets/blobs/quad.png +0 -0
- package/src/interfaces/desktop/assets/blobs/rubi.png +0 -0
- package/src/interfaces/desktop/assets/blobs/saturno.png +0 -0
- package/src/interfaces/desktop/assets/blobs/trebol.png +0 -0
- package/src/interfaces/desktop/assets/blobs/trino.png +0 -0
- package/src/interfaces/desktop/assets/blobs/volcan.png +0 -0
- package/src/interfaces/desktop/assets/blobs/zafiro.png +0 -0
- package/src/interfaces/desktop/assets/notification.mp3 +0 -0
- package/src/interfaces/desktop/main.js +473 -29
- package/src/interfaces/desktop/mascot-blobs.js +41 -0
- package/src/interfaces/desktop/mascot-preload.js +32 -0
- package/src/interfaces/desktop/mascot.css +186 -0
- package/src/interfaces/desktop/mascot.html +40 -0
- package/src/interfaces/desktop/mascot.js +163 -0
- package/src/interfaces/desktop/preload.js +10 -0
- package/src/interfaces/desktop/renderer.js +308 -48
- package/src/interfaces/desktop/style.css +34 -0
- package/src/interfaces/mcp-server/index.js +87 -0
- package/src/interfaces/tui/_shims/util-locale.ts +0 -2
- package/src/interfaces/tui/app.tsx +0 -6
- package/src/interfaces/tui/attach.ts +0 -1
- package/src/interfaces/tui/context/sdk-apx.tsx +0 -4
- package/src/interfaces/tui/plugin/api.tsx +0 -3
- package/src/interfaces/tui/plugin/runtime.ts +0 -3
- package/src/interfaces/tui/thread.ts +0 -16
- package/src/interfaces/web/README.md +22 -14
- package/src/interfaces/web/dist/assets/claude-XtpLmGtF.webp +0 -0
- package/src/interfaces/web/dist/assets/codex-DExPUgvh.webp +0 -0
- package/src/interfaces/web/dist/assets/index-BEoRgIqd.css +32 -0
- package/src/interfaces/web/dist/assets/index-BEoRgIqd.css.br +0 -0
- package/src/interfaces/web/dist/assets/index-BEoRgIqd.css.gz +0 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js +1074 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js.br +0 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js.gz +0 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js.map +1 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js.map.br +0 -0
- package/src/interfaces/web/dist/assets/index-C6fXHc1p.js.map.gz +0 -0
- package/src/interfaces/web/dist/favicon/dark/site.webmanifest +12 -6
- package/src/interfaces/web/dist/favicon/white/site.webmanifest +12 -6
- package/src/interfaces/web/dist/index.html +22 -6
- package/src/interfaces/web/dist/index.html.br +0 -0
- package/src/interfaces/web/dist/index.html.gz +0 -0
- package/src/interfaces/web/dist/manifest.webmanifest +25 -0
- package/src/interfaces/web/dist/modules/blobs/amatista.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/aqua.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/brasa.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/campana.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/caracol.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/carbon.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/cobalto.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/cometa.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/coral.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/cubi.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/eclipse.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/faro.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/gajo.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/iris.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/kiwi.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/laguna.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/lila.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/menta.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/nimbo.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/noche.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/onyx.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/orbita.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/ovni.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/papa.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/parche.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/peon.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/perla.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/pino.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/quad.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/rubi.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/saturno.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/trebol.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/trino.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/volcan.png +0 -0
- package/src/interfaces/web/dist/modules/blobs/zafiro.png +0 -0
- package/src/interfaces/web/dist/sw.js +106 -0
- package/src/interfaces/web/dist/sw.js.br +0 -0
- package/src/interfaces/web/dist/sw.js.gz +0 -0
- package/src/interfaces/web/eslint.config.js +83 -0
- package/src/interfaces/web/index.html +20 -4
- package/src/interfaces/web/package-lock.json +1651 -1280
- package/src/interfaces/web/package.json +9 -10
- package/src/interfaces/web/pnpm-lock.yaml +867 -869
- package/src/interfaces/web/public/favicon/dark/site.webmanifest +12 -6
- package/src/interfaces/web/public/favicon/white/site.webmanifest +12 -6
- package/src/interfaces/web/public/manifest.webmanifest +25 -0
- package/src/interfaces/web/public/modules/blobs/amatista.png +0 -0
- package/src/interfaces/web/public/modules/blobs/aqua.png +0 -0
- package/src/interfaces/web/public/modules/blobs/brasa.png +0 -0
- package/src/interfaces/web/public/modules/blobs/campana.png +0 -0
- package/src/interfaces/web/public/modules/blobs/caracol.png +0 -0
- package/src/interfaces/web/public/modules/blobs/carbon.png +0 -0
- package/src/interfaces/web/public/modules/blobs/cobalto.png +0 -0
- package/src/interfaces/web/public/modules/blobs/cometa.png +0 -0
- package/src/interfaces/web/public/modules/blobs/coral.png +0 -0
- package/src/interfaces/web/public/modules/blobs/cubi.png +0 -0
- package/src/interfaces/web/public/modules/blobs/eclipse.png +0 -0
- package/src/interfaces/web/public/modules/blobs/faro.png +0 -0
- package/src/interfaces/web/public/modules/blobs/gajo.png +0 -0
- package/src/interfaces/web/public/modules/blobs/iris.png +0 -0
- package/src/interfaces/web/public/modules/blobs/kiwi.png +0 -0
- package/src/interfaces/web/public/modules/blobs/laguna.png +0 -0
- package/src/interfaces/web/public/modules/blobs/lila.png +0 -0
- package/src/interfaces/web/public/modules/blobs/menta.png +0 -0
- package/src/interfaces/web/public/modules/blobs/nimbo.png +0 -0
- package/src/interfaces/web/public/modules/blobs/noche.png +0 -0
- package/src/interfaces/web/public/modules/blobs/onyx.png +0 -0
- package/src/interfaces/web/public/modules/blobs/orbita.png +0 -0
- package/src/interfaces/web/public/modules/blobs/ovni.png +0 -0
- package/src/interfaces/web/public/modules/blobs/papa.png +0 -0
- package/src/interfaces/web/public/modules/blobs/parche.png +0 -0
- package/src/interfaces/web/public/modules/blobs/peon.png +0 -0
- package/src/interfaces/web/public/modules/blobs/perla.png +0 -0
- package/src/interfaces/web/public/modules/blobs/pino.png +0 -0
- package/src/interfaces/web/public/modules/blobs/quad.png +0 -0
- package/src/interfaces/web/public/modules/blobs/rubi.png +0 -0
- package/src/interfaces/web/public/modules/blobs/saturno.png +0 -0
- package/src/interfaces/web/public/modules/blobs/trebol.png +0 -0
- package/src/interfaces/web/public/modules/blobs/trino.png +0 -0
- package/src/interfaces/web/public/modules/blobs/volcan.png +0 -0
- package/src/interfaces/web/public/modules/blobs/zafiro.png +0 -0
- package/src/interfaces/web/public/sw.js +106 -0
- package/src/interfaces/web/src/App.tsx +106 -10
- package/src/interfaces/web/src/assets/cli/claude.webp +0 -0
- package/src/interfaces/web/src/assets/cli/codex.webp +0 -0
- package/src/interfaces/web/src/assets/cli/cursor.svg +1 -0
- package/src/interfaces/web/src/assets/cli/opencode.png +0 -0
- package/src/interfaces/web/src/components/Combobox.tsx +201 -0
- package/src/interfaces/web/src/components/MobileHint.tsx +95 -0
- package/src/interfaces/web/src/components/MobileLinkDialog.tsx +156 -0
- package/src/interfaces/web/src/components/ModelCombobox.tsx +21 -113
- package/src/interfaces/web/src/components/{routines/ReadOnlyBlock.tsx → ReadOnlyBlock.tsx} +13 -4
- package/src/interfaces/web/src/components/Roby.tsx +5 -3
- package/src/interfaces/web/src/components/RobyBubble.tsx +23 -5
- package/src/interfaces/web/src/components/RowMenu.tsx +46 -0
- package/src/interfaces/web/src/components/TimezoneSelect.tsx +4 -1
- package/src/interfaces/web/src/components/Toast.tsx +50 -14
- package/src/interfaces/web/src/components/UiSelect.tsx +12 -5
- package/src/interfaces/web/src/components/agents/AgentAvatar.tsx +171 -0
- package/src/interfaces/web/src/components/agents/AgentFormFields.tsx +42 -11
- package/src/interfaces/web/src/components/agents/AgentModelBadge.tsx +157 -0
- package/src/interfaces/web/src/components/agents/AgentModelSelect.tsx +57 -0
- package/src/interfaces/web/src/components/agents/AgentSkillsPicker.tsx +115 -0
- package/src/interfaces/web/src/components/agents/BlobAvatar.tsx +50 -0
- package/src/interfaces/web/src/components/agents/blobPresets.ts +50 -0
- package/src/interfaces/web/src/components/agents/modelCatalog.ts +66 -0
- package/src/interfaces/web/src/components/chat/ActionGroup.tsx +162 -0
- package/src/interfaces/web/src/components/chat/AskAnswersCard.tsx +4 -3
- package/src/interfaces/web/src/components/chat/AskQuestionsCard.tsx +1 -1
- package/src/interfaces/web/src/components/chat/Attachment.tsx +220 -0
- package/src/interfaces/web/src/components/chat/ChatList.tsx +226 -51
- package/src/interfaces/web/src/components/chat/ChatRowActivity.tsx +45 -0
- package/src/interfaces/web/src/components/chat/Composer.tsx +672 -23
- package/src/interfaces/web/src/components/chat/ComposerCommands.tsx +175 -0
- package/src/interfaces/web/src/components/chat/ComposerSuggest.tsx +215 -0
- package/src/interfaces/web/src/components/chat/ContextBar.tsx +133 -65
- package/src/interfaces/web/src/components/chat/InlineAskPanel.tsx +107 -47
- package/src/interfaces/web/src/components/chat/MessageBubble.tsx +460 -119
- package/src/interfaces/web/src/components/chat/MessageList.tsx +165 -18
- package/src/interfaces/web/src/components/chat/ReasoningBlock.tsx +58 -0
- package/src/interfaces/web/src/components/chat/SessionPicker.tsx +182 -0
- package/src/interfaces/web/src/components/chat/SkillTrace.tsx +183 -0
- package/src/interfaces/web/src/components/chat/ToolCall.tsx +11 -11
- package/src/interfaces/web/src/components/code/CodeContextTab.tsx +87 -53
- package/src/interfaces/web/src/components/code/CodeFileTree.tsx +11 -52
- package/src/interfaces/web/src/components/code/CodeFileViewer.tsx +5 -4
- package/src/interfaces/web/src/components/code/CodeProjectPicker.tsx +31 -7
- package/src/interfaces/web/src/components/code/CodeSessionList.tsx +32 -11
- package/src/interfaces/web/src/components/code/CodeSidePanel.tsx +33 -3
- package/src/interfaces/web/src/components/code/CodeTerminal.tsx +5 -4
- package/src/interfaces/web/src/components/code/NewCodeSessionDialog.tsx +164 -0
- package/src/interfaces/web/src/components/commitments/CommitmentDetail.tsx +162 -0
- package/src/interfaces/web/src/components/commitments/CommitmentFormDialog.tsx +158 -0
- package/src/interfaces/web/src/components/commitments/CommitmentList.tsx +194 -0
- package/src/interfaces/web/src/components/commitments/commitmentState.tsx +46 -0
- package/src/interfaces/web/src/components/common/BulkActionBar.tsx +60 -0
- package/src/interfaces/web/src/components/common/ConfirmDialog.tsx +4 -1
- package/src/interfaces/web/src/components/common/SelectCheckbox.tsx +40 -0
- package/src/interfaces/web/src/components/common/TabNav.tsx +1 -1
- package/src/interfaces/web/src/components/cron/CronPicker.tsx +1 -1
- package/src/interfaces/web/src/components/files/FileBrowser.tsx +1 -1
- package/src/interfaces/web/src/components/files/FileTree.tsx +6 -4
- package/src/interfaces/web/src/components/files/FileViewer.tsx +9 -5
- package/src/interfaces/web/src/components/files/MarkdownPreview.tsx +45 -9
- package/src/interfaces/web/src/components/images/ImageDefaultsCard.tsx +93 -0
- package/src/interfaces/web/src/components/images/ImageProviderList.tsx +142 -0
- package/src/interfaces/web/src/components/images/ImageProviderModal.tsx +263 -0
- package/src/interfaces/web/src/components/images/ImageTestCard.tsx +142 -0
- package/src/interfaces/web/src/components/inbox/ChannelFilter.tsx +178 -0
- package/src/interfaces/web/src/components/inbox/InboxList.tsx +77 -81
- package/src/interfaces/web/src/components/inbox/InboxRowItem.tsx +140 -0
- package/src/interfaces/web/src/components/integrations/ComingSoonPlugin.tsx +2 -2
- package/src/interfaces/web/src/components/integrations/PluginConnect.tsx +208 -30
- package/src/interfaces/web/src/components/integrations/PluginToolsSection.tsx +1 -1
- package/src/interfaces/web/src/components/layout/ProjectAvatar.tsx +39 -24
- package/src/interfaces/web/src/components/layout/ProjectSidebar.tsx +253 -58
- package/src/interfaces/web/src/components/memory/MemoryBrowser.tsx +94 -47
- package/src/interfaces/web/src/components/routines/ExecutionsList.tsx +202 -90
- package/src/interfaces/web/src/components/routines/RoutineDetail.tsx +28 -6
- package/src/interfaces/web/src/components/routines/RoutineEditor.tsx +16 -5
- package/src/interfaces/web/src/components/routines/RoutineList.tsx +49 -9
- package/src/interfaces/web/src/components/routines/VarTextarea.tsx +1 -1
- package/src/interfaces/web/src/components/routines/runChat.ts +121 -0
- package/src/interfaces/web/src/components/sessions/SessionDetail.tsx +148 -0
- package/src/interfaces/web/src/components/sessions/SessionTerminal.tsx +98 -0
- package/src/interfaces/web/src/components/settings/AccessPanel.tsx +205 -0
- package/src/interfaces/web/src/components/settings/DefaultRouterCard.tsx +246 -101
- package/src/interfaces/web/src/components/settings/DesktopSettingsPanel.tsx +36 -2
- package/src/interfaces/web/src/components/settings/DevicesPanel.tsx +19 -6
- package/src/interfaces/web/src/components/settings/EmbedProviderList.tsx +274 -0
- package/src/interfaces/web/src/components/settings/EnginesPanel.tsx +26 -6
- package/src/interfaces/web/src/components/settings/MemoryPanel.tsx +118 -119
- package/src/interfaces/web/src/components/settings/NudgePanel.tsx +4 -3
- package/src/interfaces/web/src/components/settings/PairDeviceDialog.tsx +15 -4
- package/src/interfaces/web/src/components/settings/PanelPrefs.tsx +374 -0
- package/src/interfaces/web/src/components/settings/ProfilePanel.tsx +70 -2
- package/src/interfaces/web/src/components/settings/RoutingPanel.tsx +2 -1
- package/src/interfaces/web/src/components/settings/SkillsInspectorPanel.tsx +102 -43
- package/src/interfaces/web/src/components/settings/SkillsManager.tsx +76 -21
- package/src/interfaces/web/src/components/settings/SkillsSettings.tsx +10 -3
- package/src/interfaces/web/src/components/settings/SuperAgentPanel.tsx +8 -0
- package/src/interfaces/web/src/components/settings/TelegramChannelsPanel.tsx +11 -2
- package/src/interfaces/web/src/components/settings/TelegramContactsPanel.tsx +19 -8
- package/src/interfaces/web/src/components/settings/TelegramRolesPanel.tsx +12 -2
- package/src/interfaces/web/src/components/settings/WebPanel.tsx +22 -31
- package/src/interfaces/web/src/components/settings/providers/ProviderCard.tsx +15 -3
- package/src/interfaces/web/src/components/settings/providers/ProviderModal.tsx +97 -66
- package/src/interfaces/web/src/components/settings/providers/ProviderTestDialog.tsx +150 -0
- package/src/interfaces/web/src/components/settings/providers/typeStyles.ts +67 -25
- package/src/interfaces/web/src/components/settings/providers/types.ts +3 -0
- package/src/interfaces/web/src/components/tasks/TaskBoard.tsx +201 -0
- package/src/interfaces/web/src/components/tasks/TaskColumnsDialog.tsx +243 -0
- package/src/interfaces/web/src/components/tasks/TaskComments.tsx +167 -0
- package/src/interfaces/web/src/components/tasks/TaskDetail.tsx +335 -0
- package/src/interfaces/web/src/components/tasks/TaskFormDialog.tsx +406 -0
- package/src/interfaces/web/src/components/tasks/TaskList.tsx +258 -0
- package/src/interfaces/web/src/components/tasks/TaskSubtasks.tsx +126 -0
- package/src/interfaces/web/src/components/tasks/columns.ts +51 -0
- package/src/interfaces/web/src/components/tasks/taskStatus.tsx +159 -34
- package/src/interfaces/web/src/components/tasks/taskViewPrefs.ts +73 -0
- package/src/interfaces/web/src/components/tasks/useTaskColumns.ts +31 -0
- package/src/interfaces/web/src/components/ui/chat-input.tsx +136 -12
- package/src/interfaces/web/src/components/ui/context-menu.tsx +15 -198
- package/src/interfaces/web/src/components/ui/dialog.tsx +3 -2
- package/src/interfaces/web/src/components/ui/filter-chips.tsx +4 -0
- package/src/interfaces/web/src/components/ui/popover.tsx +14 -49
- package/src/interfaces/web/src/components/ui/sheet.tsx +2 -1
- package/src/interfaces/web/src/components/ui/spinner.tsx +2 -1
- package/src/interfaces/web/src/components/ui.tsx +62 -23
- package/src/interfaces/web/src/components/voice/VoiceProviderList.tsx +2 -1
- package/src/interfaces/web/src/components/voice/VoiceProviderModal.tsx +66 -8
- package/src/interfaces/web/src/components/voice/VoiceQvoxInstallCard.tsx +63 -0
- package/src/interfaces/web/src/components/voice/VoiceQvoxStatusCard.tsx +51 -0
- package/src/interfaces/web/src/components/voice/VoiceSttCard.tsx +4 -3
- package/src/interfaces/web/src/components/voice/VoiceTestCard.tsx +38 -4
- package/src/interfaces/web/src/constants/index.ts +1 -0
- package/src/interfaces/web/src/hooks/useChannelPrefs.ts +39 -0
- package/src/interfaces/web/src/hooks/useChat.ts +1092 -85
- package/src/interfaces/web/src/hooks/useChatActivity.ts +24 -0
- package/src/interfaces/web/src/hooks/useInbox.ts +26 -4
- package/src/interfaces/web/src/hooks/useLiveMessages.ts +16 -0
- package/src/interfaces/web/src/hooks/useOllamaModels.ts +79 -0
- package/src/interfaces/web/src/hooks/useRecorder.ts +198 -0
- package/src/interfaces/web/src/hooks/useTokenBootstrap.ts +23 -6
- package/src/interfaces/web/src/i18n/en.ts +832 -175
- package/src/interfaces/web/src/i18n/es.ts +841 -188
- package/src/interfaces/web/src/lib/api/agents.ts +23 -4
- package/src/interfaces/web/src/lib/api/code.ts +17 -0
- package/src/interfaces/web/src/lib/api/commitments.ts +7 -1
- package/src/interfaces/web/src/lib/api/conversations.ts +38 -11
- package/src/interfaces/web/src/lib/api/embeddings.ts +3 -0
- package/src/interfaces/web/src/lib/api/engines.ts +14 -0
- package/src/interfaces/web/src/lib/api/groups.ts +93 -0
- package/src/interfaces/web/src/lib/api/images.ts +193 -0
- package/src/interfaces/web/src/lib/api/inbox.ts +29 -5
- package/src/interfaces/web/src/lib/api/integrations.ts +9 -0
- package/src/interfaces/web/src/lib/api/media.ts +126 -0
- package/src/interfaces/web/src/lib/api/net.ts +44 -0
- package/src/interfaces/web/src/lib/api/profiles.ts +12 -0
- package/src/interfaces/web/src/lib/api/projects.ts +9 -1
- package/src/interfaces/web/src/lib/api/routines.ts +9 -1
- package/src/interfaces/web/src/lib/api/sessions.ts +18 -0
- package/src/interfaces/web/src/lib/api/skills.ts +8 -0
- package/src/interfaces/web/src/lib/api/super_agent.ts +3 -0
- package/src/interfaces/web/src/lib/api/tasks.ts +46 -6
- package/src/interfaces/web/src/lib/api/tools.ts +2 -0
- package/src/interfaces/web/src/lib/api/transcribe.ts +31 -0
- package/src/interfaces/web/src/lib/api/turns.ts +20 -0
- package/src/interfaces/web/src/lib/api/voice.ts +72 -2
- package/src/interfaces/web/src/lib/api.ts +3 -0
- package/src/interfaces/web/src/lib/channels.ts +214 -0
- package/src/interfaces/web/src/lib/chat-activity.ts +175 -0
- package/src/interfaces/web/src/lib/chat-prefs.ts +48 -0
- package/src/interfaces/web/src/lib/code-context.ts +0 -2
- package/src/interfaces/web/src/lib/http.ts +51 -17
- package/src/interfaces/web/src/lib/inbox-selection.ts +29 -0
- package/src/interfaces/web/src/lib/live.ts +252 -0
- package/src/interfaces/web/src/lib/net.ts +211 -0
- package/src/interfaces/web/src/lib/notify.ts +331 -0
- package/src/interfaces/web/src/lib/projectNav.ts +40 -0
- package/src/interfaces/web/src/lib/pwa.ts +115 -0
- package/src/interfaces/web/src/lib/qvox.ts +24 -0
- package/src/interfaces/web/src/lib/slug.ts +3 -0
- package/src/interfaces/web/src/lib/tone.ts +150 -0
- package/src/interfaces/web/src/main.tsx +15 -4
- package/src/interfaces/web/src/screens/ApxAdminScreen.tsx +33 -11
- package/src/interfaces/web/src/screens/InboxScreen.tsx +126 -71
- package/src/interfaces/web/src/screens/ProjectScreen.tsx +8 -4
- package/src/interfaces/web/src/screens/SettingsScreen.tsx +7 -4
- package/src/interfaces/web/src/screens/base/AgentDefaultsTab.tsx +30 -9
- package/src/interfaces/web/src/screens/base/CommitmentsTab.tsx +150 -168
- package/src/interfaces/web/src/screens/base/LogsTab.tsx +8 -7
- package/src/interfaces/web/src/screens/base/SessionsTab.tsx +99 -37
- package/src/interfaces/web/src/screens/base/WorkspacesTab.tsx +1 -1
- package/src/interfaces/web/src/screens/mobile/MobileChat.tsx +85 -0
- package/src/interfaces/web/src/screens/mobile/MobileChatList.tsx +244 -0
- package/src/interfaces/web/src/screens/mobile/MobileCommitments.tsx +350 -0
- package/src/interfaces/web/src/screens/mobile/MobileScreen.tsx +138 -0
- package/src/interfaces/web/src/screens/mobile/MobileTabBar.tsx +105 -0
- package/src/interfaces/web/src/screens/mobile/MobileTasks.tsx +407 -0
- package/src/interfaces/web/src/screens/mobile/NewChatSheet.tsx +313 -0
- package/src/interfaces/web/src/screens/mobile/mobileList.tsx +194 -0
- package/src/interfaces/web/src/screens/mobile/routes.ts +239 -0
- package/src/interfaces/web/src/screens/modules/CodeScreen.tsx +135 -64
- package/src/interfaces/web/src/screens/modules/DeckScreen.tsx +0 -1
- package/src/interfaces/web/src/screens/modules/ImagesScreen.tsx +172 -0
- package/src/interfaces/web/src/screens/modules/VoiceScreen.tsx +36 -4
- package/src/interfaces/web/src/screens/project/AgentBrainGraph.tsx +117 -30
- package/src/interfaces/web/src/screens/project/AgentDetailScreen.tsx +537 -92
- package/src/interfaces/web/src/screens/project/AgentsTab.tsx +344 -93
- package/src/interfaces/web/src/screens/project/ArtifactsTab.tsx +1 -1
- package/src/interfaces/web/src/screens/project/ChatTab.tsx +1160 -94
- package/src/interfaces/web/src/screens/project/IntegrationsTab.tsx +3 -2
- package/src/interfaces/web/src/screens/project/McpsTab.tsx +62 -14
- package/src/interfaces/web/src/screens/project/Overview.tsx +36 -15
- package/src/interfaces/web/src/screens/project/RoutinesTab.tsx +93 -8
- package/src/interfaces/web/src/screens/project/SkillsTab.tsx +4 -1
- package/src/interfaces/web/src/screens/project/StructureTab.tsx +5 -4
- package/src/interfaces/web/src/screens/project/TasksTab.tsx +351 -129
- package/src/interfaces/web/src/screens/project/VarsTab.tsx +17 -5
- package/src/interfaces/web/src/styles.css +106 -31
- package/src/interfaces/web/src/types/daemon.ts +246 -2
- package/src/interfaces/web/src/vite-env.d.ts +20 -0
- package/src/interfaces/tui/plugin/command-shim.ts +0 -109
- package/src/interfaces/web/components.json +0 -25
- package/src/interfaces/web/dist/assets/index-CvEoGtTf.js +0 -849
- package/src/interfaces/web/dist/assets/index-CvEoGtTf.js.map +0 -1
- package/src/interfaces/web/dist/assets/index-DzBBXFaO.css +0 -1
- package/src/interfaces/web/src/components/tasks/TaskDetailPanel.tsx +0 -142
- package/src/interfaces/web/src/components/ui/accordion.tsx +0 -72
- package/src/interfaces/web/src/components/ui/alert-dialog.tsx +0 -187
- package/src/interfaces/web/src/components/ui/alert.tsx +0 -76
- package/src/interfaces/web/src/components/ui/aspect-ratio.tsx +0 -22
- package/src/interfaces/web/src/components/ui/avatar.tsx +0 -107
- package/src/interfaces/web/src/components/ui/breadcrumb.tsx +0 -125
- package/src/interfaces/web/src/components/ui/button-group.tsx +0 -87
- package/src/interfaces/web/src/components/ui/calendar.tsx +0 -221
- package/src/interfaces/web/src/components/ui/card.tsx +0 -103
- package/src/interfaces/web/src/components/ui/carousel.tsx +0 -242
- package/src/interfaces/web/src/components/ui/chart.tsx +0 -371
- package/src/interfaces/web/src/components/ui/checkbox.tsx +0 -29
- package/src/interfaces/web/src/components/ui/collapsible.tsx +0 -19
- package/src/interfaces/web/src/components/ui/combobox.tsx +0 -295
- package/src/interfaces/web/src/components/ui/command.tsx +0 -196
- package/src/interfaces/web/src/components/ui/direction.tsx +0 -4
- package/src/interfaces/web/src/components/ui/drawer.tsx +0 -134
- package/src/interfaces/web/src/components/ui/empty.tsx +0 -104
- package/src/interfaces/web/src/components/ui/field.tsx +0 -236
- package/src/interfaces/web/src/components/ui/hover-card.tsx +0 -51
- package/src/interfaces/web/src/components/ui/input-otp.tsx +0 -85
- package/src/interfaces/web/src/components/ui/item.tsx +0 -201
- package/src/interfaces/web/src/components/ui/menubar.tsx +0 -280
- package/src/interfaces/web/src/components/ui/native-select.tsx +0 -61
- package/src/interfaces/web/src/components/ui/navigation-menu.tsx +0 -168
- package/src/interfaces/web/src/components/ui/pagination.tsx +0 -130
- package/src/interfaces/web/src/components/ui/progress.tsx +0 -83
- package/src/interfaces/web/src/components/ui/radio-group.tsx +0 -36
- package/src/interfaces/web/src/components/ui/resizable.tsx +0 -50
- package/src/interfaces/web/src/components/ui/scroll-area.tsx +0 -53
- package/src/interfaces/web/src/components/ui/sidebar.tsx +0 -726
- package/src/interfaces/web/src/components/ui/slider.tsx +0 -52
- package/src/interfaces/web/src/components/ui/sonner.tsx +0 -49
- package/src/interfaces/web/src/components/ui/table.tsx +0 -116
- package/src/interfaces/web/src/components/ui/toggle-group.tsx +0 -87
- package/src/interfaces/web/src/components/ui/toggle.tsx +0 -45
- package/src/interfaces/web/src/hooks/use-mobile.ts +0 -19
- package/src/interfaces/web/src/screens/base/GlobalTasksTab.tsx +0 -161
|
@@ -14,15 +14,18 @@ importers:
|
|
|
14
14
|
'@tailwindcss/vite':
|
|
15
15
|
specifier: ^4.3.0
|
|
16
16
|
version: 4.3.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))
|
|
17
|
+
'@xterm/addon-fit':
|
|
18
|
+
specifier: ^0.11.0
|
|
19
|
+
version: 0.11.0
|
|
20
|
+
'@xterm/xterm':
|
|
21
|
+
specifier: ^6.0.0
|
|
22
|
+
version: 6.0.0
|
|
17
23
|
class-variance-authority:
|
|
18
24
|
specifier: ^0.7.1
|
|
19
25
|
version: 0.7.1
|
|
20
26
|
clsx:
|
|
21
27
|
specifier: ^2.1.1
|
|
22
28
|
version: 2.1.1
|
|
23
|
-
cmdk:
|
|
24
|
-
specifier: ^1.1.1
|
|
25
|
-
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
26
29
|
d3-drag:
|
|
27
30
|
specifier: ^3.0.0
|
|
28
31
|
version: 3.0.0
|
|
@@ -32,30 +35,15 @@ importers:
|
|
|
32
35
|
d3-selection:
|
|
33
36
|
specifier: ^3.0.0
|
|
34
37
|
version: 3.0.0
|
|
35
|
-
date-fns:
|
|
36
|
-
specifier: ^4.3.0
|
|
37
|
-
version: 4.3.0
|
|
38
|
-
embla-carousel-react:
|
|
39
|
-
specifier: ^8.6.0
|
|
40
|
-
version: 8.6.0(react@19.2.6)
|
|
41
|
-
input-otp:
|
|
42
|
-
specifier: ^1.4.2
|
|
43
|
-
version: 1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
44
38
|
lucide-react:
|
|
45
39
|
specifier: ^0.469.0
|
|
46
40
|
version: 0.469.0(react@19.2.6)
|
|
47
|
-
next-themes:
|
|
48
|
-
specifier: ^0.4.6
|
|
49
|
-
version: 0.4.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
50
41
|
qrcode:
|
|
51
42
|
specifier: ^1.5.4
|
|
52
43
|
version: 1.5.4
|
|
53
44
|
react:
|
|
54
45
|
specifier: ^19.0.0
|
|
55
46
|
version: 19.2.6
|
|
56
|
-
react-day-picker:
|
|
57
|
-
specifier: ^10.0.1
|
|
58
|
-
version: 10.0.1(@types/react@19.2.15)(react@19.2.6)
|
|
59
47
|
react-dom:
|
|
60
48
|
specifier: ^19.0.0
|
|
61
49
|
version: 19.2.6(react@19.2.6)
|
|
@@ -65,12 +53,6 @@ importers:
|
|
|
65
53
|
react-router-dom:
|
|
66
54
|
specifier: ^7.1.1
|
|
67
55
|
version: 7.15.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
68
|
-
recharts:
|
|
69
|
-
specifier: 3.8.0
|
|
70
|
-
version: 3.8.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react-is@19.2.6)(react@19.2.6)(redux@5.0.1)
|
|
71
|
-
sonner:
|
|
72
|
-
specifier: ^2.0.7
|
|
73
|
-
version: 2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
74
56
|
swr:
|
|
75
57
|
specifier: ^2.3.0
|
|
76
58
|
version: 2.4.1(react@19.2.6)
|
|
@@ -80,10 +62,10 @@ importers:
|
|
|
80
62
|
tw-animate-css:
|
|
81
63
|
specifier: ^1.4.0
|
|
82
64
|
version: 1.4.0
|
|
83
|
-
vaul:
|
|
84
|
-
specifier: ^1.1.2
|
|
85
|
-
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
86
65
|
devDependencies:
|
|
66
|
+
'@eslint/js':
|
|
67
|
+
specifier: ^9.39.5
|
|
68
|
+
version: 9.39.5
|
|
87
69
|
'@playwright/test':
|
|
88
70
|
specifier: ^1.60.0
|
|
89
71
|
version: 1.60.0
|
|
@@ -108,12 +90,21 @@ importers:
|
|
|
108
90
|
'@vitejs/plugin-react':
|
|
109
91
|
specifier: ^4.3.4
|
|
110
92
|
version: 4.7.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))
|
|
93
|
+
eslint:
|
|
94
|
+
specifier: ^9.39.5
|
|
95
|
+
version: 9.39.5(jiti@2.7.0)
|
|
96
|
+
eslint-plugin-react-hooks:
|
|
97
|
+
specifier: ^5.2.0
|
|
98
|
+
version: 5.2.0(eslint@9.39.5(jiti@2.7.0))
|
|
111
99
|
tailwindcss:
|
|
112
100
|
specifier: ^4.3.0
|
|
113
101
|
version: 4.3.0
|
|
114
102
|
typescript:
|
|
115
103
|
specifier: ^5.7.2
|
|
116
104
|
version: 5.9.3
|
|
105
|
+
typescript-eslint:
|
|
106
|
+
specifier: ^8.68.0
|
|
107
|
+
version: 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
117
108
|
vite:
|
|
118
109
|
specifier: ^6.0.7
|
|
119
110
|
version: 6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0)
|
|
@@ -393,6 +384,44 @@ packages:
|
|
|
393
384
|
cpu: [x64]
|
|
394
385
|
os: [win32]
|
|
395
386
|
|
|
387
|
+
'@eslint-community/eslint-utils@4.10.1':
|
|
388
|
+
resolution: {integrity: sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==}
|
|
389
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
390
|
+
peerDependencies:
|
|
391
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
392
|
+
|
|
393
|
+
'@eslint-community/regexpp@4.12.2':
|
|
394
|
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
|
|
395
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
396
|
+
|
|
397
|
+
'@eslint/config-array@0.21.2':
|
|
398
|
+
resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
|
|
399
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
400
|
+
|
|
401
|
+
'@eslint/config-helpers@0.4.2':
|
|
402
|
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
|
|
403
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
404
|
+
|
|
405
|
+
'@eslint/core@0.17.0':
|
|
406
|
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
|
|
407
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
408
|
+
|
|
409
|
+
'@eslint/eslintrc@3.3.6':
|
|
410
|
+
resolution: {integrity: sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==}
|
|
411
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
412
|
+
|
|
413
|
+
'@eslint/js@9.39.5':
|
|
414
|
+
resolution: {integrity: sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==}
|
|
415
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
416
|
+
|
|
417
|
+
'@eslint/object-schema@2.1.7':
|
|
418
|
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
|
|
419
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
420
|
+
|
|
421
|
+
'@eslint/plugin-kit@0.4.1':
|
|
422
|
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
423
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
424
|
+
|
|
396
425
|
'@floating-ui/core@1.7.5':
|
|
397
426
|
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
|
|
398
427
|
|
|
@@ -408,6 +437,26 @@ packages:
|
|
|
408
437
|
'@floating-ui/utils@0.2.11':
|
|
409
438
|
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
|
|
410
439
|
|
|
440
|
+
'@humanfs/core@0.19.2':
|
|
441
|
+
resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
|
|
442
|
+
engines: {node: '>=18.18.0'}
|
|
443
|
+
|
|
444
|
+
'@humanfs/node@0.16.8':
|
|
445
|
+
resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
|
|
446
|
+
engines: {node: '>=18.18.0'}
|
|
447
|
+
|
|
448
|
+
'@humanfs/types@0.15.0':
|
|
449
|
+
resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
|
|
450
|
+
engines: {node: '>=18.18.0'}
|
|
451
|
+
|
|
452
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
453
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
454
|
+
engines: {node: '>=12.22'}
|
|
455
|
+
|
|
456
|
+
'@humanwhocodes/retry@0.4.3':
|
|
457
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
458
|
+
engines: {node: '>=18.18'}
|
|
459
|
+
|
|
411
460
|
'@jridgewell/gen-mapping@0.3.13':
|
|
412
461
|
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
413
462
|
|
|
@@ -429,210 +478,6 @@ packages:
|
|
|
429
478
|
engines: {node: '>=18'}
|
|
430
479
|
hasBin: true
|
|
431
480
|
|
|
432
|
-
'@radix-ui/primitive@1.1.3':
|
|
433
|
-
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
|
|
434
|
-
|
|
435
|
-
'@radix-ui/react-compose-refs@1.1.2':
|
|
436
|
-
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
|
|
437
|
-
peerDependencies:
|
|
438
|
-
'@types/react': '*'
|
|
439
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
440
|
-
peerDependenciesMeta:
|
|
441
|
-
'@types/react':
|
|
442
|
-
optional: true
|
|
443
|
-
|
|
444
|
-
'@radix-ui/react-context@1.1.2':
|
|
445
|
-
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
|
|
446
|
-
peerDependencies:
|
|
447
|
-
'@types/react': '*'
|
|
448
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
449
|
-
peerDependenciesMeta:
|
|
450
|
-
'@types/react':
|
|
451
|
-
optional: true
|
|
452
|
-
|
|
453
|
-
'@radix-ui/react-dialog@1.1.15':
|
|
454
|
-
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
|
|
455
|
-
peerDependencies:
|
|
456
|
-
'@types/react': '*'
|
|
457
|
-
'@types/react-dom': '*'
|
|
458
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
459
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
460
|
-
peerDependenciesMeta:
|
|
461
|
-
'@types/react':
|
|
462
|
-
optional: true
|
|
463
|
-
'@types/react-dom':
|
|
464
|
-
optional: true
|
|
465
|
-
|
|
466
|
-
'@radix-ui/react-dismissable-layer@1.1.11':
|
|
467
|
-
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
|
|
468
|
-
peerDependencies:
|
|
469
|
-
'@types/react': '*'
|
|
470
|
-
'@types/react-dom': '*'
|
|
471
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
472
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
473
|
-
peerDependenciesMeta:
|
|
474
|
-
'@types/react':
|
|
475
|
-
optional: true
|
|
476
|
-
'@types/react-dom':
|
|
477
|
-
optional: true
|
|
478
|
-
|
|
479
|
-
'@radix-ui/react-focus-guards@1.1.3':
|
|
480
|
-
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
|
|
481
|
-
peerDependencies:
|
|
482
|
-
'@types/react': '*'
|
|
483
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
484
|
-
peerDependenciesMeta:
|
|
485
|
-
'@types/react':
|
|
486
|
-
optional: true
|
|
487
|
-
|
|
488
|
-
'@radix-ui/react-focus-scope@1.1.7':
|
|
489
|
-
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
|
|
490
|
-
peerDependencies:
|
|
491
|
-
'@types/react': '*'
|
|
492
|
-
'@types/react-dom': '*'
|
|
493
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
494
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
495
|
-
peerDependenciesMeta:
|
|
496
|
-
'@types/react':
|
|
497
|
-
optional: true
|
|
498
|
-
'@types/react-dom':
|
|
499
|
-
optional: true
|
|
500
|
-
|
|
501
|
-
'@radix-ui/react-id@1.1.1':
|
|
502
|
-
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
|
|
503
|
-
peerDependencies:
|
|
504
|
-
'@types/react': '*'
|
|
505
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
506
|
-
peerDependenciesMeta:
|
|
507
|
-
'@types/react':
|
|
508
|
-
optional: true
|
|
509
|
-
|
|
510
|
-
'@radix-ui/react-portal@1.1.9':
|
|
511
|
-
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
|
|
512
|
-
peerDependencies:
|
|
513
|
-
'@types/react': '*'
|
|
514
|
-
'@types/react-dom': '*'
|
|
515
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
516
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
517
|
-
peerDependenciesMeta:
|
|
518
|
-
'@types/react':
|
|
519
|
-
optional: true
|
|
520
|
-
'@types/react-dom':
|
|
521
|
-
optional: true
|
|
522
|
-
|
|
523
|
-
'@radix-ui/react-presence@1.1.5':
|
|
524
|
-
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
|
|
525
|
-
peerDependencies:
|
|
526
|
-
'@types/react': '*'
|
|
527
|
-
'@types/react-dom': '*'
|
|
528
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
529
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
530
|
-
peerDependenciesMeta:
|
|
531
|
-
'@types/react':
|
|
532
|
-
optional: true
|
|
533
|
-
'@types/react-dom':
|
|
534
|
-
optional: true
|
|
535
|
-
|
|
536
|
-
'@radix-ui/react-primitive@2.1.3':
|
|
537
|
-
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
|
|
538
|
-
peerDependencies:
|
|
539
|
-
'@types/react': '*'
|
|
540
|
-
'@types/react-dom': '*'
|
|
541
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
542
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
543
|
-
peerDependenciesMeta:
|
|
544
|
-
'@types/react':
|
|
545
|
-
optional: true
|
|
546
|
-
'@types/react-dom':
|
|
547
|
-
optional: true
|
|
548
|
-
|
|
549
|
-
'@radix-ui/react-primitive@2.1.4':
|
|
550
|
-
resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
|
|
551
|
-
peerDependencies:
|
|
552
|
-
'@types/react': '*'
|
|
553
|
-
'@types/react-dom': '*'
|
|
554
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
555
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
556
|
-
peerDependenciesMeta:
|
|
557
|
-
'@types/react':
|
|
558
|
-
optional: true
|
|
559
|
-
'@types/react-dom':
|
|
560
|
-
optional: true
|
|
561
|
-
|
|
562
|
-
'@radix-ui/react-slot@1.2.3':
|
|
563
|
-
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
|
|
564
|
-
peerDependencies:
|
|
565
|
-
'@types/react': '*'
|
|
566
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
567
|
-
peerDependenciesMeta:
|
|
568
|
-
'@types/react':
|
|
569
|
-
optional: true
|
|
570
|
-
|
|
571
|
-
'@radix-ui/react-slot@1.2.4':
|
|
572
|
-
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
|
|
573
|
-
peerDependencies:
|
|
574
|
-
'@types/react': '*'
|
|
575
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
576
|
-
peerDependenciesMeta:
|
|
577
|
-
'@types/react':
|
|
578
|
-
optional: true
|
|
579
|
-
|
|
580
|
-
'@radix-ui/react-use-callback-ref@1.1.1':
|
|
581
|
-
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
|
|
582
|
-
peerDependencies:
|
|
583
|
-
'@types/react': '*'
|
|
584
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
585
|
-
peerDependenciesMeta:
|
|
586
|
-
'@types/react':
|
|
587
|
-
optional: true
|
|
588
|
-
|
|
589
|
-
'@radix-ui/react-use-controllable-state@1.2.2':
|
|
590
|
-
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
|
|
591
|
-
peerDependencies:
|
|
592
|
-
'@types/react': '*'
|
|
593
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
594
|
-
peerDependenciesMeta:
|
|
595
|
-
'@types/react':
|
|
596
|
-
optional: true
|
|
597
|
-
|
|
598
|
-
'@radix-ui/react-use-effect-event@0.0.2':
|
|
599
|
-
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
|
|
600
|
-
peerDependencies:
|
|
601
|
-
'@types/react': '*'
|
|
602
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
603
|
-
peerDependenciesMeta:
|
|
604
|
-
'@types/react':
|
|
605
|
-
optional: true
|
|
606
|
-
|
|
607
|
-
'@radix-ui/react-use-escape-keydown@1.1.1':
|
|
608
|
-
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
|
|
609
|
-
peerDependencies:
|
|
610
|
-
'@types/react': '*'
|
|
611
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
612
|
-
peerDependenciesMeta:
|
|
613
|
-
'@types/react':
|
|
614
|
-
optional: true
|
|
615
|
-
|
|
616
|
-
'@radix-ui/react-use-layout-effect@1.1.1':
|
|
617
|
-
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
|
|
618
|
-
peerDependencies:
|
|
619
|
-
'@types/react': '*'
|
|
620
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
621
|
-
peerDependenciesMeta:
|
|
622
|
-
'@types/react':
|
|
623
|
-
optional: true
|
|
624
|
-
|
|
625
|
-
'@reduxjs/toolkit@2.12.0':
|
|
626
|
-
resolution: {integrity: sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==}
|
|
627
|
-
peerDependencies:
|
|
628
|
-
react: ^16.9.0 || ^17.0.0 || ^18 || ^19
|
|
629
|
-
react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
|
|
630
|
-
peerDependenciesMeta:
|
|
631
|
-
react:
|
|
632
|
-
optional: true
|
|
633
|
-
react-redux:
|
|
634
|
-
optional: true
|
|
635
|
-
|
|
636
481
|
'@rolldown/pluginutils@1.0.0-beta.27':
|
|
637
482
|
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
|
|
638
483
|
|
|
@@ -670,66 +515,79 @@ packages:
|
|
|
670
515
|
resolution: {integrity: sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==}
|
|
671
516
|
cpu: [arm]
|
|
672
517
|
os: [linux]
|
|
518
|
+
libc: [glibc]
|
|
673
519
|
|
|
674
520
|
'@rollup/rollup-linux-arm-musleabihf@4.60.4':
|
|
675
521
|
resolution: {integrity: sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==}
|
|
676
522
|
cpu: [arm]
|
|
677
523
|
os: [linux]
|
|
524
|
+
libc: [musl]
|
|
678
525
|
|
|
679
526
|
'@rollup/rollup-linux-arm64-gnu@4.60.4':
|
|
680
527
|
resolution: {integrity: sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==}
|
|
681
528
|
cpu: [arm64]
|
|
682
529
|
os: [linux]
|
|
530
|
+
libc: [glibc]
|
|
683
531
|
|
|
684
532
|
'@rollup/rollup-linux-arm64-musl@4.60.4':
|
|
685
533
|
resolution: {integrity: sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==}
|
|
686
534
|
cpu: [arm64]
|
|
687
535
|
os: [linux]
|
|
536
|
+
libc: [musl]
|
|
688
537
|
|
|
689
538
|
'@rollup/rollup-linux-loong64-gnu@4.60.4':
|
|
690
539
|
resolution: {integrity: sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==}
|
|
691
540
|
cpu: [loong64]
|
|
692
541
|
os: [linux]
|
|
542
|
+
libc: [glibc]
|
|
693
543
|
|
|
694
544
|
'@rollup/rollup-linux-loong64-musl@4.60.4':
|
|
695
545
|
resolution: {integrity: sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==}
|
|
696
546
|
cpu: [loong64]
|
|
697
547
|
os: [linux]
|
|
548
|
+
libc: [musl]
|
|
698
549
|
|
|
699
550
|
'@rollup/rollup-linux-ppc64-gnu@4.60.4':
|
|
700
551
|
resolution: {integrity: sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==}
|
|
701
552
|
cpu: [ppc64]
|
|
702
553
|
os: [linux]
|
|
554
|
+
libc: [glibc]
|
|
703
555
|
|
|
704
556
|
'@rollup/rollup-linux-ppc64-musl@4.60.4':
|
|
705
557
|
resolution: {integrity: sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==}
|
|
706
558
|
cpu: [ppc64]
|
|
707
559
|
os: [linux]
|
|
560
|
+
libc: [musl]
|
|
708
561
|
|
|
709
562
|
'@rollup/rollup-linux-riscv64-gnu@4.60.4':
|
|
710
563
|
resolution: {integrity: sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==}
|
|
711
564
|
cpu: [riscv64]
|
|
712
565
|
os: [linux]
|
|
566
|
+
libc: [glibc]
|
|
713
567
|
|
|
714
568
|
'@rollup/rollup-linux-riscv64-musl@4.60.4':
|
|
715
569
|
resolution: {integrity: sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==}
|
|
716
570
|
cpu: [riscv64]
|
|
717
571
|
os: [linux]
|
|
572
|
+
libc: [musl]
|
|
718
573
|
|
|
719
574
|
'@rollup/rollup-linux-s390x-gnu@4.60.4':
|
|
720
575
|
resolution: {integrity: sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==}
|
|
721
576
|
cpu: [s390x]
|
|
722
577
|
os: [linux]
|
|
578
|
+
libc: [glibc]
|
|
723
579
|
|
|
724
580
|
'@rollup/rollup-linux-x64-gnu@4.60.4':
|
|
725
581
|
resolution: {integrity: sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==}
|
|
726
582
|
cpu: [x64]
|
|
727
583
|
os: [linux]
|
|
584
|
+
libc: [glibc]
|
|
728
585
|
|
|
729
586
|
'@rollup/rollup-linux-x64-musl@4.60.4':
|
|
730
587
|
resolution: {integrity: sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==}
|
|
731
588
|
cpu: [x64]
|
|
732
589
|
os: [linux]
|
|
590
|
+
libc: [musl]
|
|
733
591
|
|
|
734
592
|
'@rollup/rollup-openbsd-x64@4.60.4':
|
|
735
593
|
resolution: {integrity: sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==}
|
|
@@ -761,12 +619,6 @@ packages:
|
|
|
761
619
|
cpu: [x64]
|
|
762
620
|
os: [win32]
|
|
763
621
|
|
|
764
|
-
'@standard-schema/spec@1.1.0':
|
|
765
|
-
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
766
|
-
|
|
767
|
-
'@standard-schema/utils@0.3.0':
|
|
768
|
-
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
769
|
-
|
|
770
622
|
'@tailwindcss/node@4.3.0':
|
|
771
623
|
resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
|
|
772
624
|
|
|
@@ -805,24 +657,28 @@ packages:
|
|
|
805
657
|
engines: {node: '>= 20'}
|
|
806
658
|
cpu: [arm64]
|
|
807
659
|
os: [linux]
|
|
660
|
+
libc: [glibc]
|
|
808
661
|
|
|
809
662
|
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
810
663
|
resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
|
|
811
664
|
engines: {node: '>= 20'}
|
|
812
665
|
cpu: [arm64]
|
|
813
666
|
os: [linux]
|
|
667
|
+
libc: [musl]
|
|
814
668
|
|
|
815
669
|
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
816
670
|
resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
|
|
817
671
|
engines: {node: '>= 20'}
|
|
818
672
|
cpu: [x64]
|
|
819
673
|
os: [linux]
|
|
674
|
+
libc: [glibc]
|
|
820
675
|
|
|
821
676
|
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
822
677
|
resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
|
|
823
678
|
engines: {node: '>= 20'}
|
|
824
679
|
cpu: [x64]
|
|
825
680
|
os: [linux]
|
|
681
|
+
libc: [musl]
|
|
826
682
|
|
|
827
683
|
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
828
684
|
resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
|
|
@@ -869,45 +725,21 @@ packages:
|
|
|
869
725
|
'@types/babel__traverse@7.28.0':
|
|
870
726
|
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
871
727
|
|
|
872
|
-
'@types/d3-array@3.2.2':
|
|
873
|
-
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
|
|
874
|
-
|
|
875
|
-
'@types/d3-color@3.1.3':
|
|
876
|
-
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
|
|
877
|
-
|
|
878
728
|
'@types/d3-drag@3.0.7':
|
|
879
729
|
resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
|
|
880
730
|
|
|
881
|
-
'@types/d3-ease@3.0.2':
|
|
882
|
-
resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
|
|
883
|
-
|
|
884
731
|
'@types/d3-force@3.0.10':
|
|
885
732
|
resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==}
|
|
886
733
|
|
|
887
|
-
'@types/d3-interpolate@3.0.4':
|
|
888
|
-
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
|
|
889
|
-
|
|
890
|
-
'@types/d3-path@3.1.1':
|
|
891
|
-
resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
|
|
892
|
-
|
|
893
|
-
'@types/d3-scale@4.0.9':
|
|
894
|
-
resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
|
|
895
|
-
|
|
896
734
|
'@types/d3-selection@3.0.11':
|
|
897
735
|
resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
|
|
898
736
|
|
|
899
|
-
'@types/d3-shape@3.1.8':
|
|
900
|
-
resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
|
|
901
|
-
|
|
902
|
-
'@types/d3-time@3.0.4':
|
|
903
|
-
resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
|
|
904
|
-
|
|
905
|
-
'@types/d3-timer@3.0.2':
|
|
906
|
-
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
|
|
907
|
-
|
|
908
737
|
'@types/estree@1.0.8':
|
|
909
738
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
910
739
|
|
|
740
|
+
'@types/json-schema@7.0.15':
|
|
741
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
742
|
+
|
|
911
743
|
'@types/node@25.9.1':
|
|
912
744
|
resolution: {integrity: sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==}
|
|
913
745
|
|
|
@@ -922,8 +754,64 @@ packages:
|
|
|
922
754
|
'@types/react@19.2.15':
|
|
923
755
|
resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
|
|
924
756
|
|
|
925
|
-
'@
|
|
926
|
-
resolution: {integrity: sha512-
|
|
757
|
+
'@typescript-eslint/eslint-plugin@8.68.0':
|
|
758
|
+
resolution: {integrity: sha512-WASHDpCm6qO5jj9g1a+8NiW5+GCkAyLReR56/4VruYmNgfUmqpxOfZ2Yfb8xGfJPWv5Qi6LSD8sXdces3vbp/Q==}
|
|
759
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
760
|
+
peerDependencies:
|
|
761
|
+
'@typescript-eslint/parser': ^8.68.0
|
|
762
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
763
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
764
|
+
|
|
765
|
+
'@typescript-eslint/parser@8.68.0':
|
|
766
|
+
resolution: {integrity: sha512-fHq2VC1kpyYfvEcbiMjOpySY4WS7voEp89yAThrHRX5sm9j2lzYppCb2umFMEed4fWcyeLjHxrz0mpjNBaBxMQ==}
|
|
767
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
768
|
+
peerDependencies:
|
|
769
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
770
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
771
|
+
|
|
772
|
+
'@typescript-eslint/project-service@8.68.0':
|
|
773
|
+
resolution: {integrity: sha512-5GQtWZCXFcFYux955pvoS02WLc49pXNlvIxocKjS0clvwo3in1RdlzVKyiqQH9vE5AKWFLTaUgeQkOrTS+0Qxw==}
|
|
774
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
775
|
+
peerDependencies:
|
|
776
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
777
|
+
|
|
778
|
+
'@typescript-eslint/scope-manager@8.68.0':
|
|
779
|
+
resolution: {integrity: sha512-T5eXpcaJNg8bhjHJ8Rjp68Vq/QBteYtTKY8TZqVNPaUbuz0f6jI9t6aDkylwvalpAB9XTTFeFOjrjXAZ3YvmVA==}
|
|
780
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
781
|
+
|
|
782
|
+
'@typescript-eslint/tsconfig-utils@8.68.0':
|
|
783
|
+
resolution: {integrity: sha512-F7zrGQfiJHojPwi8vhxZQC1tWtJzvL74cK/nqri2lk8YUXvYaYwl263xOJ69jDWPUk1hmcdoayFwk9lX09npVw==}
|
|
784
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
785
|
+
peerDependencies:
|
|
786
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
787
|
+
|
|
788
|
+
'@typescript-eslint/type-utils@8.68.0':
|
|
789
|
+
resolution: {integrity: sha512-X77zqoY1EjeWGs/0JNxeaMfp5C5lIz4Tw8y66F1Ne8Faq6g424sBNYM6xBAqElfGZPLpWS+CZAp0DXyKDzWiHg==}
|
|
790
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
791
|
+
peerDependencies:
|
|
792
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
793
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
794
|
+
|
|
795
|
+
'@typescript-eslint/types@8.68.0':
|
|
796
|
+
resolution: {integrity: sha512-9RnpsGJjrAllCMefGVVsImJM24YurhC0Q1h4UbvivtvOqXmR/vEJge2OoE++z9m6hyg8T1Q8t5SNT6tHSbrxcg==}
|
|
797
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
798
|
+
|
|
799
|
+
'@typescript-eslint/typescript-estree@8.68.0':
|
|
800
|
+
resolution: {integrity: sha512-OKKsD0tYmoNiU5PW2zehO1yO56jYOm1ShYlxon/Z0SJNidAkdVg86eg9ruRuoXf8xfnuWZGbwDsStkoXbZtIIA==}
|
|
801
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
802
|
+
peerDependencies:
|
|
803
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
804
|
+
|
|
805
|
+
'@typescript-eslint/utils@8.68.0':
|
|
806
|
+
resolution: {integrity: sha512-PB5gJMMOg0Q5P1tsgWtEAqQacJXq0qEqRHDX/YJ4FaTMLfZPpHB3gjl2EJuiZyPABxmj4ZQYiY9m1bdAJ5y7tQ==}
|
|
807
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
808
|
+
peerDependencies:
|
|
809
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
810
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
811
|
+
|
|
812
|
+
'@typescript-eslint/visitor-keys@8.68.0':
|
|
813
|
+
resolution: {integrity: sha512-YR65gGdGvTUAWLldC3xLOvOzamdGzB4A5/N8rehEaHs3Zvoe39BhgY+u0SPch1OvrVTfLcc55wsSgK2NcnTS/A==}
|
|
814
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
927
815
|
|
|
928
816
|
'@vitejs/plugin-react@4.7.0':
|
|
929
817
|
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
|
|
@@ -931,6 +819,25 @@ packages:
|
|
|
931
819
|
peerDependencies:
|
|
932
820
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
933
821
|
|
|
822
|
+
'@xterm/addon-fit@0.11.0':
|
|
823
|
+
resolution: {integrity: sha512-jYcgT6xtVYhnhgxh3QgYDnnNMYTcf8ElbxxFzX0IZo+vabQqSPAjC3c1wJrKB5E19VwQei89QCiZZP86DCPF7g==}
|
|
824
|
+
|
|
825
|
+
'@xterm/xterm@6.0.0':
|
|
826
|
+
resolution: {integrity: sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==}
|
|
827
|
+
|
|
828
|
+
acorn-jsx@5.3.2:
|
|
829
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
830
|
+
peerDependencies:
|
|
831
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
832
|
+
|
|
833
|
+
acorn@8.18.0:
|
|
834
|
+
resolution: {integrity: sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==}
|
|
835
|
+
engines: {node: '>=0.4.0'}
|
|
836
|
+
hasBin: true
|
|
837
|
+
|
|
838
|
+
ajv@6.15.0:
|
|
839
|
+
resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
|
|
840
|
+
|
|
934
841
|
ansi-regex@5.0.1:
|
|
935
842
|
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
936
843
|
engines: {node: '>=8'}
|
|
@@ -939,20 +846,37 @@ packages:
|
|
|
939
846
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
940
847
|
engines: {node: '>=8'}
|
|
941
848
|
|
|
942
|
-
|
|
943
|
-
resolution: {integrity: sha512-
|
|
944
|
-
|
|
849
|
+
argparse@2.0.1:
|
|
850
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
851
|
+
|
|
852
|
+
balanced-match@1.0.2:
|
|
853
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
854
|
+
|
|
855
|
+
balanced-match@4.0.4:
|
|
856
|
+
resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
|
|
857
|
+
engines: {node: 18 || 20 || >=22}
|
|
945
858
|
|
|
946
859
|
baseline-browser-mapping@2.10.32:
|
|
947
860
|
resolution: {integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==}
|
|
948
861
|
engines: {node: '>=6.0.0'}
|
|
949
862
|
hasBin: true
|
|
950
863
|
|
|
864
|
+
brace-expansion@1.1.18:
|
|
865
|
+
resolution: {integrity: sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==}
|
|
866
|
+
|
|
867
|
+
brace-expansion@5.0.9:
|
|
868
|
+
resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==}
|
|
869
|
+
engines: {node: 20 || >=22}
|
|
870
|
+
|
|
951
871
|
browserslist@4.28.2:
|
|
952
872
|
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
|
|
953
873
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
954
874
|
hasBin: true
|
|
955
875
|
|
|
876
|
+
callsites@3.1.0:
|
|
877
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
878
|
+
engines: {node: '>=6'}
|
|
879
|
+
|
|
956
880
|
camelcase@5.3.1:
|
|
957
881
|
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
|
958
882
|
engines: {node: '>=6'}
|
|
@@ -960,6 +884,10 @@ packages:
|
|
|
960
884
|
caniuse-lite@1.0.30001793:
|
|
961
885
|
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
|
962
886
|
|
|
887
|
+
chalk@4.1.2:
|
|
888
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
889
|
+
engines: {node: '>=10'}
|
|
890
|
+
|
|
963
891
|
class-variance-authority@0.7.1:
|
|
964
892
|
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
965
893
|
|
|
@@ -970,12 +898,6 @@ packages:
|
|
|
970
898
|
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
971
899
|
engines: {node: '>=6'}
|
|
972
900
|
|
|
973
|
-
cmdk@1.1.1:
|
|
974
|
-
resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
|
|
975
|
-
peerDependencies:
|
|
976
|
-
react: ^18 || ^19 || ^19.0.0-rc
|
|
977
|
-
react-dom: ^18 || ^19 || ^19.0.0-rc
|
|
978
|
-
|
|
979
901
|
color-convert@2.0.1:
|
|
980
902
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
981
903
|
engines: {node: '>=7.0.0'}
|
|
@@ -983,6 +905,9 @@ packages:
|
|
|
983
905
|
color-name@1.1.4:
|
|
984
906
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
985
907
|
|
|
908
|
+
concat-map@0.0.1:
|
|
909
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
910
|
+
|
|
986
911
|
convert-source-map@2.0.0:
|
|
987
912
|
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
988
913
|
|
|
@@ -990,17 +915,13 @@ packages:
|
|
|
990
915
|
resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
|
|
991
916
|
engines: {node: '>=18'}
|
|
992
917
|
|
|
918
|
+
cross-spawn@7.0.6:
|
|
919
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
920
|
+
engines: {node: '>= 8'}
|
|
921
|
+
|
|
993
922
|
csstype@3.2.3:
|
|
994
923
|
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
995
924
|
|
|
996
|
-
d3-array@3.2.4:
|
|
997
|
-
resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
|
|
998
|
-
engines: {node: '>=12'}
|
|
999
|
-
|
|
1000
|
-
d3-color@3.1.0:
|
|
1001
|
-
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
|
1002
|
-
engines: {node: '>=12'}
|
|
1003
|
-
|
|
1004
925
|
d3-dispatch@3.0.1:
|
|
1005
926
|
resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
|
|
1006
927
|
engines: {node: '>=12'}
|
|
@@ -1009,50 +930,18 @@ packages:
|
|
|
1009
930
|
resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
|
|
1010
931
|
engines: {node: '>=12'}
|
|
1011
932
|
|
|
1012
|
-
d3-ease@3.0.1:
|
|
1013
|
-
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
|
1014
|
-
engines: {node: '>=12'}
|
|
1015
|
-
|
|
1016
933
|
d3-force@3.0.0:
|
|
1017
934
|
resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==}
|
|
1018
935
|
engines: {node: '>=12'}
|
|
1019
936
|
|
|
1020
|
-
d3-format@3.1.2:
|
|
1021
|
-
resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
|
|
1022
|
-
engines: {node: '>=12'}
|
|
1023
|
-
|
|
1024
|
-
d3-interpolate@3.0.1:
|
|
1025
|
-
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
|
1026
|
-
engines: {node: '>=12'}
|
|
1027
|
-
|
|
1028
|
-
d3-path@3.1.0:
|
|
1029
|
-
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
|
|
1030
|
-
engines: {node: '>=12'}
|
|
1031
|
-
|
|
1032
937
|
d3-quadtree@3.0.1:
|
|
1033
938
|
resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
|
|
1034
939
|
engines: {node: '>=12'}
|
|
1035
940
|
|
|
1036
|
-
d3-scale@4.0.2:
|
|
1037
|
-
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
|
|
1038
|
-
engines: {node: '>=12'}
|
|
1039
|
-
|
|
1040
941
|
d3-selection@3.0.0:
|
|
1041
942
|
resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
|
|
1042
943
|
engines: {node: '>=12'}
|
|
1043
944
|
|
|
1044
|
-
d3-shape@3.2.0:
|
|
1045
|
-
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
|
|
1046
|
-
engines: {node: '>=12'}
|
|
1047
|
-
|
|
1048
|
-
d3-time-format@4.1.0:
|
|
1049
|
-
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
|
|
1050
|
-
engines: {node: '>=12'}
|
|
1051
|
-
|
|
1052
|
-
d3-time@3.1.0:
|
|
1053
|
-
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
|
|
1054
|
-
engines: {node: '>=12'}
|
|
1055
|
-
|
|
1056
945
|
d3-timer@3.0.1:
|
|
1057
946
|
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
1058
947
|
engines: {node: '>=12'}
|
|
@@ -1073,8 +962,8 @@ packages:
|
|
|
1073
962
|
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
|
1074
963
|
engines: {node: '>=0.10.0'}
|
|
1075
964
|
|
|
1076
|
-
|
|
1077
|
-
resolution: {integrity: sha512-
|
|
965
|
+
deep-is@0.1.4:
|
|
966
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
1078
967
|
|
|
1079
968
|
dequal@2.0.3:
|
|
1080
969
|
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
@@ -1084,28 +973,12 @@ packages:
|
|
|
1084
973
|
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
1085
974
|
engines: {node: '>=8'}
|
|
1086
975
|
|
|
1087
|
-
detect-node-es@1.1.0:
|
|
1088
|
-
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
|
|
1089
|
-
|
|
1090
976
|
dijkstrajs@1.0.3:
|
|
1091
977
|
resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
|
|
1092
978
|
|
|
1093
979
|
electron-to-chromium@1.5.363:
|
|
1094
980
|
resolution: {integrity: sha512-VjUKPyWzGnT1fujlkEGC/BvN70Hh70KXtAqcmniXviYlJC/ivcT+BWGPyxWVbJZLfvtKR6dqg1L7T7pgAMBtWA==}
|
|
1095
981
|
|
|
1096
|
-
embla-carousel-react@8.6.0:
|
|
1097
|
-
resolution: {integrity: sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==}
|
|
1098
|
-
peerDependencies:
|
|
1099
|
-
react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1100
|
-
|
|
1101
|
-
embla-carousel-reactive-utils@8.6.0:
|
|
1102
|
-
resolution: {integrity: sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==}
|
|
1103
|
-
peerDependencies:
|
|
1104
|
-
embla-carousel: 8.6.0
|
|
1105
|
-
|
|
1106
|
-
embla-carousel@8.6.0:
|
|
1107
|
-
resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==}
|
|
1108
|
-
|
|
1109
982
|
emoji-regex@8.0.0:
|
|
1110
983
|
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
1111
984
|
|
|
@@ -1113,9 +986,6 @@ packages:
|
|
|
1113
986
|
resolution: {integrity: sha512-xYcDWrpELkFzz9SpZ3PlI6Eu6eD93Yf0WLDRxikGhWJ3MAir2SNZTIVCVZqZ/NUyx8AdMc2gT9C0gPiw18kG+A==}
|
|
1114
987
|
engines: {node: '>=10.13.0'}
|
|
1115
988
|
|
|
1116
|
-
es-toolkit@1.47.0:
|
|
1117
|
-
resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==}
|
|
1118
|
-
|
|
1119
989
|
esbuild@0.25.12:
|
|
1120
990
|
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
1121
991
|
engines: {node: '>=18'}
|
|
@@ -1125,8 +995,71 @@ packages:
|
|
|
1125
995
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1126
996
|
engines: {node: '>=6'}
|
|
1127
997
|
|
|
1128
|
-
|
|
1129
|
-
resolution: {integrity: sha512-
|
|
998
|
+
escape-string-regexp@4.0.0:
|
|
999
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1000
|
+
engines: {node: '>=10'}
|
|
1001
|
+
|
|
1002
|
+
eslint-plugin-react-hooks@5.2.0:
|
|
1003
|
+
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
|
|
1004
|
+
engines: {node: '>=10'}
|
|
1005
|
+
peerDependencies:
|
|
1006
|
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
|
|
1007
|
+
|
|
1008
|
+
eslint-scope@8.4.0:
|
|
1009
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
1010
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1011
|
+
|
|
1012
|
+
eslint-visitor-keys@3.4.3:
|
|
1013
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
1014
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1015
|
+
|
|
1016
|
+
eslint-visitor-keys@4.2.1:
|
|
1017
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
1018
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1019
|
+
|
|
1020
|
+
eslint-visitor-keys@5.0.1:
|
|
1021
|
+
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
1022
|
+
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
1023
|
+
|
|
1024
|
+
eslint@9.39.5:
|
|
1025
|
+
resolution: {integrity: sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==}
|
|
1026
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1027
|
+
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
|
|
1028
|
+
hasBin: true
|
|
1029
|
+
peerDependencies:
|
|
1030
|
+
jiti: '*'
|
|
1031
|
+
peerDependenciesMeta:
|
|
1032
|
+
jiti:
|
|
1033
|
+
optional: true
|
|
1034
|
+
|
|
1035
|
+
espree@10.4.0:
|
|
1036
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
1037
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1038
|
+
|
|
1039
|
+
esquery@1.7.0:
|
|
1040
|
+
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
|
|
1041
|
+
engines: {node: '>=0.10'}
|
|
1042
|
+
|
|
1043
|
+
esrecurse@4.3.0:
|
|
1044
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
1045
|
+
engines: {node: '>=4.0'}
|
|
1046
|
+
|
|
1047
|
+
estraverse@5.3.0:
|
|
1048
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
1049
|
+
engines: {node: '>=4.0'}
|
|
1050
|
+
|
|
1051
|
+
esutils@2.0.3:
|
|
1052
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
1053
|
+
engines: {node: '>=0.10.0'}
|
|
1054
|
+
|
|
1055
|
+
fast-deep-equal@3.1.3:
|
|
1056
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1057
|
+
|
|
1058
|
+
fast-json-stable-stringify@2.1.0:
|
|
1059
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
1060
|
+
|
|
1061
|
+
fast-levenshtein@2.0.6:
|
|
1062
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1130
1063
|
|
|
1131
1064
|
fdir@6.5.0:
|
|
1132
1065
|
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
@@ -1137,10 +1070,25 @@ packages:
|
|
|
1137
1070
|
picomatch:
|
|
1138
1071
|
optional: true
|
|
1139
1072
|
|
|
1073
|
+
file-entry-cache@8.0.0:
|
|
1074
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1075
|
+
engines: {node: '>=16.0.0'}
|
|
1076
|
+
|
|
1140
1077
|
find-up@4.1.0:
|
|
1141
1078
|
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
|
|
1142
1079
|
engines: {node: '>=8'}
|
|
1143
1080
|
|
|
1081
|
+
find-up@5.0.0:
|
|
1082
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1083
|
+
engines: {node: '>=10'}
|
|
1084
|
+
|
|
1085
|
+
flat-cache@4.0.1:
|
|
1086
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1087
|
+
engines: {node: '>=16'}
|
|
1088
|
+
|
|
1089
|
+
flatted@3.4.4:
|
|
1090
|
+
resolution: {integrity: sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==}
|
|
1091
|
+
|
|
1144
1092
|
fsevents@2.3.2:
|
|
1145
1093
|
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
1146
1094
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1159,33 +1107,52 @@ packages:
|
|
|
1159
1107
|
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
1160
1108
|
engines: {node: 6.* || 8.* || >= 10.*}
|
|
1161
1109
|
|
|
1162
|
-
|
|
1163
|
-
resolution: {integrity: sha512-
|
|
1164
|
-
engines: {node: '>=
|
|
1110
|
+
glob-parent@6.0.2:
|
|
1111
|
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
1112
|
+
engines: {node: '>=10.13.0'}
|
|
1113
|
+
|
|
1114
|
+
globals@14.0.0:
|
|
1115
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
1116
|
+
engines: {node: '>=18'}
|
|
1165
1117
|
|
|
1166
1118
|
graceful-fs@4.2.11:
|
|
1167
1119
|
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1168
1120
|
|
|
1169
|
-
|
|
1170
|
-
resolution: {integrity: sha512-
|
|
1121
|
+
has-flag@4.0.0:
|
|
1122
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1123
|
+
engines: {node: '>=8'}
|
|
1171
1124
|
|
|
1172
|
-
|
|
1173
|
-
resolution: {integrity: sha512
|
|
1125
|
+
ignore@5.3.2:
|
|
1126
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1127
|
+
engines: {node: '>= 4'}
|
|
1174
1128
|
|
|
1175
|
-
|
|
1176
|
-
resolution: {integrity: sha512-
|
|
1177
|
-
|
|
1178
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1179
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1129
|
+
ignore@7.0.6:
|
|
1130
|
+
resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==}
|
|
1131
|
+
engines: {node: '>= 4'}
|
|
1180
1132
|
|
|
1181
|
-
|
|
1182
|
-
resolution: {integrity: sha512-
|
|
1183
|
-
engines: {node: '>=
|
|
1133
|
+
import-fresh@3.3.1:
|
|
1134
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
1135
|
+
engines: {node: '>=6'}
|
|
1136
|
+
|
|
1137
|
+
imurmurhash@0.1.4:
|
|
1138
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1139
|
+
engines: {node: '>=0.8.19'}
|
|
1140
|
+
|
|
1141
|
+
is-extglob@2.1.1:
|
|
1142
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
1143
|
+
engines: {node: '>=0.10.0'}
|
|
1184
1144
|
|
|
1185
1145
|
is-fullwidth-code-point@3.0.0:
|
|
1186
1146
|
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
1187
1147
|
engines: {node: '>=8'}
|
|
1188
1148
|
|
|
1149
|
+
is-glob@4.0.3:
|
|
1150
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1151
|
+
engines: {node: '>=0.10.0'}
|
|
1152
|
+
|
|
1153
|
+
isexe@2.0.0:
|
|
1154
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1155
|
+
|
|
1189
1156
|
jiti@2.7.0:
|
|
1190
1157
|
resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
|
|
1191
1158
|
hasBin: true
|
|
@@ -1193,16 +1160,36 @@ packages:
|
|
|
1193
1160
|
js-tokens@4.0.0:
|
|
1194
1161
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1195
1162
|
|
|
1163
|
+
js-yaml@4.3.1:
|
|
1164
|
+
resolution: {integrity: sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==}
|
|
1165
|
+
hasBin: true
|
|
1166
|
+
|
|
1196
1167
|
jsesc@3.1.0:
|
|
1197
1168
|
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
1198
1169
|
engines: {node: '>=6'}
|
|
1199
1170
|
hasBin: true
|
|
1200
1171
|
|
|
1172
|
+
json-buffer@3.0.1:
|
|
1173
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1174
|
+
|
|
1175
|
+
json-schema-traverse@0.4.1:
|
|
1176
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1177
|
+
|
|
1178
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1179
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1180
|
+
|
|
1201
1181
|
json5@2.2.3:
|
|
1202
1182
|
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
1203
1183
|
engines: {node: '>=6'}
|
|
1204
1184
|
hasBin: true
|
|
1205
1185
|
|
|
1186
|
+
keyv@4.5.4:
|
|
1187
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1188
|
+
|
|
1189
|
+
levn@0.4.1:
|
|
1190
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1191
|
+
engines: {node: '>= 0.8.0'}
|
|
1192
|
+
|
|
1206
1193
|
lightningcss-android-arm64@1.32.0:
|
|
1207
1194
|
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
1208
1195
|
engines: {node: '>= 12.0.0'}
|
|
@@ -1238,24 +1225,28 @@ packages:
|
|
|
1238
1225
|
engines: {node: '>= 12.0.0'}
|
|
1239
1226
|
cpu: [arm64]
|
|
1240
1227
|
os: [linux]
|
|
1228
|
+
libc: [glibc]
|
|
1241
1229
|
|
|
1242
1230
|
lightningcss-linux-arm64-musl@1.32.0:
|
|
1243
1231
|
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
1244
1232
|
engines: {node: '>= 12.0.0'}
|
|
1245
1233
|
cpu: [arm64]
|
|
1246
1234
|
os: [linux]
|
|
1235
|
+
libc: [musl]
|
|
1247
1236
|
|
|
1248
1237
|
lightningcss-linux-x64-gnu@1.32.0:
|
|
1249
1238
|
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
1250
1239
|
engines: {node: '>= 12.0.0'}
|
|
1251
1240
|
cpu: [x64]
|
|
1252
1241
|
os: [linux]
|
|
1242
|
+
libc: [glibc]
|
|
1253
1243
|
|
|
1254
1244
|
lightningcss-linux-x64-musl@1.32.0:
|
|
1255
1245
|
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
1256
1246
|
engines: {node: '>= 12.0.0'}
|
|
1257
1247
|
cpu: [x64]
|
|
1258
1248
|
os: [linux]
|
|
1249
|
+
libc: [musl]
|
|
1259
1250
|
|
|
1260
1251
|
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1261
1252
|
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
@@ -1277,6 +1268,13 @@ packages:
|
|
|
1277
1268
|
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
|
|
1278
1269
|
engines: {node: '>=8'}
|
|
1279
1270
|
|
|
1271
|
+
locate-path@6.0.0:
|
|
1272
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1273
|
+
engines: {node: '>=10'}
|
|
1274
|
+
|
|
1275
|
+
lodash.merge@4.6.2:
|
|
1276
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1277
|
+
|
|
1280
1278
|
lru-cache@5.1.1:
|
|
1281
1279
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1282
1280
|
|
|
@@ -1288,6 +1286,13 @@ packages:
|
|
|
1288
1286
|
magic-string@0.30.21:
|
|
1289
1287
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1290
1288
|
|
|
1289
|
+
minimatch@10.2.6:
|
|
1290
|
+
resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==}
|
|
1291
|
+
engines: {node: 18 || 20 || >=22}
|
|
1292
|
+
|
|
1293
|
+
minimatch@3.1.5:
|
|
1294
|
+
resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
|
|
1295
|
+
|
|
1291
1296
|
ms@2.1.3:
|
|
1292
1297
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1293
1298
|
|
|
@@ -1296,32 +1301,49 @@ packages:
|
|
|
1296
1301
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1297
1302
|
hasBin: true
|
|
1298
1303
|
|
|
1299
|
-
|
|
1300
|
-
resolution: {integrity: sha512-
|
|
1301
|
-
peerDependencies:
|
|
1302
|
-
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
1303
|
-
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
1304
|
+
natural-compare@1.4.0:
|
|
1305
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1304
1306
|
|
|
1305
1307
|
node-releases@2.0.46:
|
|
1306
1308
|
resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==}
|
|
1307
1309
|
engines: {node: '>=18'}
|
|
1308
1310
|
|
|
1311
|
+
optionator@0.9.4:
|
|
1312
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1313
|
+
engines: {node: '>= 0.8.0'}
|
|
1314
|
+
|
|
1309
1315
|
p-limit@2.3.0:
|
|
1310
1316
|
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
|
|
1311
1317
|
engines: {node: '>=6'}
|
|
1312
1318
|
|
|
1319
|
+
p-limit@3.1.0:
|
|
1320
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1321
|
+
engines: {node: '>=10'}
|
|
1322
|
+
|
|
1313
1323
|
p-locate@4.1.0:
|
|
1314
1324
|
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
|
|
1315
1325
|
engines: {node: '>=8'}
|
|
1316
1326
|
|
|
1327
|
+
p-locate@5.0.0:
|
|
1328
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1329
|
+
engines: {node: '>=10'}
|
|
1330
|
+
|
|
1317
1331
|
p-try@2.2.0:
|
|
1318
1332
|
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
|
|
1319
1333
|
engines: {node: '>=6'}
|
|
1320
1334
|
|
|
1335
|
+
parent-module@1.0.1:
|
|
1336
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1337
|
+
engines: {node: '>=6'}
|
|
1338
|
+
|
|
1321
1339
|
path-exists@4.0.0:
|
|
1322
1340
|
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1323
1341
|
engines: {node: '>=8'}
|
|
1324
1342
|
|
|
1343
|
+
path-key@3.1.1:
|
|
1344
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1345
|
+
engines: {node: '>=8'}
|
|
1346
|
+
|
|
1325
1347
|
picocolors@1.1.1:
|
|
1326
1348
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1327
1349
|
|
|
@@ -1347,65 +1369,28 @@ packages:
|
|
|
1347
1369
|
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
|
|
1348
1370
|
engines: {node: ^10 || ^12 || >=14}
|
|
1349
1371
|
|
|
1372
|
+
prelude-ls@1.2.1:
|
|
1373
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1374
|
+
engines: {node: '>= 0.8.0'}
|
|
1375
|
+
|
|
1376
|
+
punycode@2.3.1:
|
|
1377
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1378
|
+
engines: {node: '>=6'}
|
|
1379
|
+
|
|
1350
1380
|
qrcode@1.5.4:
|
|
1351
1381
|
resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
|
|
1352
1382
|
engines: {node: '>=10.13.0'}
|
|
1353
1383
|
hasBin: true
|
|
1354
1384
|
|
|
1355
|
-
react-day-picker@10.0.1:
|
|
1356
|
-
resolution: {integrity: sha512-eNh6BlwcYInWaJtRv18mXQ06Ys/H6rdTZAnTaSdOYJuTpwP1JMCHNd1FDRadA+gbeinq+psdULN5Xnowy9mV8w==}
|
|
1357
|
-
engines: {node: '>=18'}
|
|
1358
|
-
peerDependencies:
|
|
1359
|
-
'@types/react': '>=16.8.0'
|
|
1360
|
-
react: '>=16.8.0'
|
|
1361
|
-
peerDependenciesMeta:
|
|
1362
|
-
'@types/react':
|
|
1363
|
-
optional: true
|
|
1364
|
-
|
|
1365
1385
|
react-dom@19.2.6:
|
|
1366
1386
|
resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
|
|
1367
1387
|
peerDependencies:
|
|
1368
1388
|
react: ^19.2.6
|
|
1369
1389
|
|
|
1370
|
-
react-is@19.2.6:
|
|
1371
|
-
resolution: {integrity: sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==}
|
|
1372
|
-
|
|
1373
|
-
react-redux@9.3.0:
|
|
1374
|
-
resolution: {integrity: sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==}
|
|
1375
|
-
peerDependencies:
|
|
1376
|
-
'@types/react': ^18.2.25 || ^19
|
|
1377
|
-
react: ^18.0 || ^19
|
|
1378
|
-
redux: ^5.0.0
|
|
1379
|
-
peerDependenciesMeta:
|
|
1380
|
-
'@types/react':
|
|
1381
|
-
optional: true
|
|
1382
|
-
redux:
|
|
1383
|
-
optional: true
|
|
1384
|
-
|
|
1385
1390
|
react-refresh@0.17.0:
|
|
1386
1391
|
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
1387
1392
|
engines: {node: '>=0.10.0'}
|
|
1388
1393
|
|
|
1389
|
-
react-remove-scroll-bar@2.3.8:
|
|
1390
|
-
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
|
|
1391
|
-
engines: {node: '>=10'}
|
|
1392
|
-
peerDependencies:
|
|
1393
|
-
'@types/react': '*'
|
|
1394
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1395
|
-
peerDependenciesMeta:
|
|
1396
|
-
'@types/react':
|
|
1397
|
-
optional: true
|
|
1398
|
-
|
|
1399
|
-
react-remove-scroll@2.7.2:
|
|
1400
|
-
resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
|
|
1401
|
-
engines: {node: '>=10'}
|
|
1402
|
-
peerDependencies:
|
|
1403
|
-
'@types/react': '*'
|
|
1404
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1405
|
-
peerDependenciesMeta:
|
|
1406
|
-
'@types/react':
|
|
1407
|
-
optional: true
|
|
1408
|
-
|
|
1409
1394
|
react-resizable-panels@4.11.2:
|
|
1410
1395
|
resolution: {integrity: sha512-+kfFbDZ8mygc7g0vxOcDzCVGuwiIUOnILqPoUHo6/uP+Mmyx6HzZU+kj1aOPDlktXuobYbr6BtQekvJwHRX4Eg==}
|
|
1411
1396
|
peerDependencies:
|
|
@@ -1429,36 +1414,10 @@ packages:
|
|
|
1429
1414
|
react-dom:
|
|
1430
1415
|
optional: true
|
|
1431
1416
|
|
|
1432
|
-
react-style-singleton@2.2.3:
|
|
1433
|
-
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
|
|
1434
|
-
engines: {node: '>=10'}
|
|
1435
|
-
peerDependencies:
|
|
1436
|
-
'@types/react': '*'
|
|
1437
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1438
|
-
peerDependenciesMeta:
|
|
1439
|
-
'@types/react':
|
|
1440
|
-
optional: true
|
|
1441
|
-
|
|
1442
1417
|
react@19.2.6:
|
|
1443
1418
|
resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
|
|
1444
1419
|
engines: {node: '>=0.10.0'}
|
|
1445
1420
|
|
|
1446
|
-
recharts@3.8.0:
|
|
1447
|
-
resolution: {integrity: sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==}
|
|
1448
|
-
engines: {node: '>=18'}
|
|
1449
|
-
peerDependencies:
|
|
1450
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1451
|
-
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1452
|
-
react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1453
|
-
|
|
1454
|
-
redux-thunk@3.1.0:
|
|
1455
|
-
resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
|
|
1456
|
-
peerDependencies:
|
|
1457
|
-
redux: ^5.0.0
|
|
1458
|
-
|
|
1459
|
-
redux@5.0.1:
|
|
1460
|
-
resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
|
|
1461
|
-
|
|
1462
1421
|
require-directory@2.1.1:
|
|
1463
1422
|
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
1464
1423
|
engines: {node: '>=0.10.0'}
|
|
@@ -1466,12 +1425,13 @@ packages:
|
|
|
1466
1425
|
require-main-filename@2.0.0:
|
|
1467
1426
|
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
|
|
1468
1427
|
|
|
1469
|
-
reselect@5.1.1:
|
|
1470
|
-
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
|
|
1471
|
-
|
|
1472
1428
|
reselect@5.2.0:
|
|
1473
1429
|
resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==}
|
|
1474
1430
|
|
|
1431
|
+
resolve-from@4.0.0:
|
|
1432
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1433
|
+
engines: {node: '>=4'}
|
|
1434
|
+
|
|
1475
1435
|
rollup@4.60.4:
|
|
1476
1436
|
resolution: {integrity: sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==}
|
|
1477
1437
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
@@ -1484,17 +1444,24 @@ packages:
|
|
|
1484
1444
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1485
1445
|
hasBin: true
|
|
1486
1446
|
|
|
1447
|
+
semver@7.8.5:
|
|
1448
|
+
resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
|
|
1449
|
+
engines: {node: '>=10'}
|
|
1450
|
+
hasBin: true
|
|
1451
|
+
|
|
1487
1452
|
set-blocking@2.0.0:
|
|
1488
1453
|
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
|
|
1489
1454
|
|
|
1490
1455
|
set-cookie-parser@2.7.2:
|
|
1491
1456
|
resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
|
|
1492
1457
|
|
|
1493
|
-
|
|
1494
|
-
resolution: {integrity: sha512-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1458
|
+
shebang-command@2.0.0:
|
|
1459
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1460
|
+
engines: {node: '>=8'}
|
|
1461
|
+
|
|
1462
|
+
shebang-regex@3.0.0:
|
|
1463
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1464
|
+
engines: {node: '>=8'}
|
|
1498
1465
|
|
|
1499
1466
|
source-map-js@1.2.1:
|
|
1500
1467
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
@@ -1508,6 +1475,14 @@ packages:
|
|
|
1508
1475
|
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1509
1476
|
engines: {node: '>=8'}
|
|
1510
1477
|
|
|
1478
|
+
strip-json-comments@3.1.1:
|
|
1479
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
1480
|
+
engines: {node: '>=8'}
|
|
1481
|
+
|
|
1482
|
+
supports-color@7.2.0:
|
|
1483
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1484
|
+
engines: {node: '>=8'}
|
|
1485
|
+
|
|
1511
1486
|
swr@2.4.1:
|
|
1512
1487
|
resolution: {integrity: sha512-2CC6CiKQtEwaEeNiqWTAw9PGykW8SR5zZX8MZk6TeAvEAnVS7Visz8WzphqgtQ8v2xz/4Q5K+j+SeMaKXeeQIA==}
|
|
1513
1488
|
peerDependencies:
|
|
@@ -1523,19 +1498,30 @@ packages:
|
|
|
1523
1498
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
1524
1499
|
engines: {node: '>=6'}
|
|
1525
1500
|
|
|
1526
|
-
tiny-invariant@1.3.3:
|
|
1527
|
-
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
1528
|
-
|
|
1529
1501
|
tinyglobby@0.2.16:
|
|
1530
1502
|
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
|
|
1531
1503
|
engines: {node: '>=12.0.0'}
|
|
1532
1504
|
|
|
1533
|
-
|
|
1534
|
-
resolution: {integrity: sha512-
|
|
1505
|
+
ts-api-utils@2.5.0:
|
|
1506
|
+
resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==}
|
|
1507
|
+
engines: {node: '>=18.12'}
|
|
1508
|
+
peerDependencies:
|
|
1509
|
+
typescript: '>=4.8.4'
|
|
1535
1510
|
|
|
1536
1511
|
tw-animate-css@1.4.0:
|
|
1537
1512
|
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
1538
1513
|
|
|
1514
|
+
type-check@0.4.0:
|
|
1515
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1516
|
+
engines: {node: '>= 0.8.0'}
|
|
1517
|
+
|
|
1518
|
+
typescript-eslint@8.68.0:
|
|
1519
|
+
resolution: {integrity: sha512-MHy0Y0ynqeEbx/S45+i/bBssdy3X6KNBfmJAP35GrgtNxu2TQ5K5xsFDhAnmsq1jvpdoZOPG1LGtJo0HWqYCrQ==}
|
|
1520
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1521
|
+
peerDependencies:
|
|
1522
|
+
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
1523
|
+
typescript: '>=4.8.4 <6.1.0'
|
|
1524
|
+
|
|
1539
1525
|
typescript@5.9.3:
|
|
1540
1526
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1541
1527
|
engines: {node: '>=14.17'}
|
|
@@ -1550,40 +1536,14 @@ packages:
|
|
|
1550
1536
|
peerDependencies:
|
|
1551
1537
|
browserslist: '>= 4.21.0'
|
|
1552
1538
|
|
|
1553
|
-
|
|
1554
|
-
resolution: {integrity: sha512-
|
|
1555
|
-
engines: {node: '>=10'}
|
|
1556
|
-
peerDependencies:
|
|
1557
|
-
'@types/react': '*'
|
|
1558
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1559
|
-
peerDependenciesMeta:
|
|
1560
|
-
'@types/react':
|
|
1561
|
-
optional: true
|
|
1562
|
-
|
|
1563
|
-
use-sidecar@1.1.3:
|
|
1564
|
-
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
|
|
1565
|
-
engines: {node: '>=10'}
|
|
1566
|
-
peerDependencies:
|
|
1567
|
-
'@types/react': '*'
|
|
1568
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1569
|
-
peerDependenciesMeta:
|
|
1570
|
-
'@types/react':
|
|
1571
|
-
optional: true
|
|
1539
|
+
uri-js@4.4.1:
|
|
1540
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1572
1541
|
|
|
1573
1542
|
use-sync-external-store@1.6.0:
|
|
1574
1543
|
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
|
|
1575
1544
|
peerDependencies:
|
|
1576
1545
|
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1577
1546
|
|
|
1578
|
-
vaul@1.1.2:
|
|
1579
|
-
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
|
|
1580
|
-
peerDependencies:
|
|
1581
|
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1582
|
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
1583
|
-
|
|
1584
|
-
victory-vendor@37.3.6:
|
|
1585
|
-
resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
|
|
1586
|
-
|
|
1587
1547
|
vite@6.4.2:
|
|
1588
1548
|
resolution: {integrity: sha512-2N/55r4JDJ4gdrCvGgINMy+HH3iRpNIz8K6SFwVsA+JbQScLiC+clmAxBgwiSPgcG9U15QmvqCGWzMbqda5zGQ==}
|
|
1589
1549
|
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
|
@@ -1627,6 +1587,15 @@ packages:
|
|
|
1627
1587
|
which-module@2.0.1:
|
|
1628
1588
|
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
|
|
1629
1589
|
|
|
1590
|
+
which@2.0.2:
|
|
1591
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1592
|
+
engines: {node: '>= 8'}
|
|
1593
|
+
hasBin: true
|
|
1594
|
+
|
|
1595
|
+
word-wrap@1.2.5:
|
|
1596
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1597
|
+
engines: {node: '>=0.10.0'}
|
|
1598
|
+
|
|
1630
1599
|
wrap-ansi@6.2.0:
|
|
1631
1600
|
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
|
|
1632
1601
|
engines: {node: '>=8'}
|
|
@@ -1645,6 +1614,10 @@ packages:
|
|
|
1645
1614
|
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
|
|
1646
1615
|
engines: {node: '>=8'}
|
|
1647
1616
|
|
|
1617
|
+
yocto-queue@0.1.0:
|
|
1618
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1619
|
+
engines: {node: '>=10'}
|
|
1620
|
+
|
|
1648
1621
|
snapshots:
|
|
1649
1622
|
|
|
1650
1623
|
'@babel/code-frame@7.29.7':
|
|
@@ -1786,7 +1759,8 @@ snapshots:
|
|
|
1786
1759
|
optionalDependencies:
|
|
1787
1760
|
'@types/react': 19.2.15
|
|
1788
1761
|
|
|
1789
|
-
'@date-fns/tz@1.5.0':
|
|
1762
|
+
'@date-fns/tz@1.5.0':
|
|
1763
|
+
optional: true
|
|
1790
1764
|
|
|
1791
1765
|
'@esbuild/aix-ppc64@0.25.12':
|
|
1792
1766
|
optional: true
|
|
@@ -1866,216 +1840,107 @@ snapshots:
|
|
|
1866
1840
|
'@esbuild/win32-x64@0.25.12':
|
|
1867
1841
|
optional: true
|
|
1868
1842
|
|
|
1869
|
-
'@
|
|
1843
|
+
'@eslint-community/eslint-utils@4.10.1(eslint@9.39.5(jiti@2.7.0))':
|
|
1870
1844
|
dependencies:
|
|
1871
|
-
|
|
1845
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
1846
|
+
eslint-visitor-keys: 3.4.3
|
|
1872
1847
|
|
|
1873
|
-
'@
|
|
1874
|
-
dependencies:
|
|
1875
|
-
'@floating-ui/core': 1.7.5
|
|
1876
|
-
'@floating-ui/utils': 0.2.11
|
|
1848
|
+
'@eslint-community/regexpp@4.12.2': {}
|
|
1877
1849
|
|
|
1878
|
-
'@
|
|
1850
|
+
'@eslint/config-array@0.21.2':
|
|
1879
1851
|
dependencies:
|
|
1880
|
-
'@
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1852
|
+
'@eslint/object-schema': 2.1.7
|
|
1853
|
+
debug: 4.4.3
|
|
1854
|
+
minimatch: 3.1.5
|
|
1855
|
+
transitivePeerDependencies:
|
|
1856
|
+
- supports-color
|
|
1885
1857
|
|
|
1886
|
-
'@
|
|
1858
|
+
'@eslint/config-helpers@0.4.2':
|
|
1887
1859
|
dependencies:
|
|
1888
|
-
'@
|
|
1889
|
-
'@jridgewell/trace-mapping': 0.3.31
|
|
1860
|
+
'@eslint/core': 0.17.0
|
|
1890
1861
|
|
|
1891
|
-
'@
|
|
1862
|
+
'@eslint/core@0.17.0':
|
|
1892
1863
|
dependencies:
|
|
1893
|
-
'@
|
|
1894
|
-
'@jridgewell/trace-mapping': 0.3.31
|
|
1895
|
-
|
|
1896
|
-
'@jridgewell/resolve-uri@3.1.2': {}
|
|
1864
|
+
'@types/json-schema': 7.0.15
|
|
1897
1865
|
|
|
1898
|
-
'@
|
|
1899
|
-
|
|
1900
|
-
'@jridgewell/trace-mapping@0.3.31':
|
|
1901
|
-
dependencies:
|
|
1902
|
-
'@jridgewell/resolve-uri': 3.1.2
|
|
1903
|
-
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1904
|
-
|
|
1905
|
-
'@playwright/test@1.60.0':
|
|
1866
|
+
'@eslint/eslintrc@3.3.6':
|
|
1906
1867
|
dependencies:
|
|
1907
|
-
|
|
1868
|
+
ajv: 6.15.0
|
|
1869
|
+
debug: 4.4.3
|
|
1870
|
+
espree: 10.4.0
|
|
1871
|
+
globals: 14.0.0
|
|
1872
|
+
ignore: 5.3.2
|
|
1873
|
+
import-fresh: 3.3.1
|
|
1874
|
+
js-yaml: 4.3.1
|
|
1875
|
+
minimatch: 3.1.5
|
|
1876
|
+
strip-json-comments: 3.1.1
|
|
1877
|
+
transitivePeerDependencies:
|
|
1878
|
+
- supports-color
|
|
1908
1879
|
|
|
1909
|
-
'@
|
|
1880
|
+
'@eslint/js@9.39.5': {}
|
|
1910
1881
|
|
|
1911
|
-
'@
|
|
1912
|
-
dependencies:
|
|
1913
|
-
react: 19.2.6
|
|
1914
|
-
optionalDependencies:
|
|
1915
|
-
'@types/react': 19.2.15
|
|
1882
|
+
'@eslint/object-schema@2.1.7': {}
|
|
1916
1883
|
|
|
1917
|
-
'@
|
|
1884
|
+
'@eslint/plugin-kit@0.4.1':
|
|
1918
1885
|
dependencies:
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
'@types/react': 19.2.15
|
|
1886
|
+
'@eslint/core': 0.17.0
|
|
1887
|
+
levn: 0.4.1
|
|
1922
1888
|
|
|
1923
|
-
'@
|
|
1924
|
-
dependencies:
|
|
1925
|
-
'@radix-ui/primitive': 1.1.3
|
|
1926
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1927
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1928
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1929
|
-
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
|
|
1930
|
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1931
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1932
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1933
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1934
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1935
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
1936
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
|
|
1937
|
-
aria-hidden: 1.2.6
|
|
1938
|
-
react: 19.2.6
|
|
1939
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
1940
|
-
react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
|
|
1941
|
-
optionalDependencies:
|
|
1942
|
-
'@types/react': 19.2.15
|
|
1943
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1944
|
-
|
|
1945
|
-
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1889
|
+
'@floating-ui/core@1.7.5':
|
|
1946
1890
|
dependencies:
|
|
1947
|
-
'@
|
|
1948
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
1949
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1950
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1951
|
-
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1952
|
-
react: 19.2.6
|
|
1953
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
1954
|
-
optionalDependencies:
|
|
1955
|
-
'@types/react': 19.2.15
|
|
1956
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1891
|
+
'@floating-ui/utils': 0.2.11
|
|
1957
1892
|
|
|
1958
|
-
'@
|
|
1893
|
+
'@floating-ui/dom@1.7.6':
|
|
1959
1894
|
dependencies:
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
'@types/react': 19.2.15
|
|
1895
|
+
'@floating-ui/core': 1.7.5
|
|
1896
|
+
'@floating-ui/utils': 0.2.11
|
|
1963
1897
|
|
|
1964
|
-
'@
|
|
1898
|
+
'@floating-ui/react-dom@2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
|
|
1965
1899
|
dependencies:
|
|
1966
|
-
'@
|
|
1967
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
1968
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1900
|
+
'@floating-ui/dom': 1.7.6
|
|
1969
1901
|
react: 19.2.6
|
|
1970
1902
|
react-dom: 19.2.6(react@19.2.6)
|
|
1971
|
-
optionalDependencies:
|
|
1972
|
-
'@types/react': 19.2.15
|
|
1973
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1974
1903
|
|
|
1975
|
-
'@
|
|
1976
|
-
dependencies:
|
|
1977
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1978
|
-
react: 19.2.6
|
|
1979
|
-
optionalDependencies:
|
|
1980
|
-
'@types/react': 19.2.15
|
|
1904
|
+
'@floating-ui/utils@0.2.11': {}
|
|
1981
1905
|
|
|
1982
|
-
'@
|
|
1906
|
+
'@humanfs/core@0.19.2':
|
|
1983
1907
|
dependencies:
|
|
1984
|
-
'@
|
|
1985
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
1986
|
-
react: 19.2.6
|
|
1987
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
1988
|
-
optionalDependencies:
|
|
1989
|
-
'@types/react': 19.2.15
|
|
1990
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1908
|
+
'@humanfs/types': 0.15.0
|
|
1991
1909
|
|
|
1992
|
-
'@
|
|
1910
|
+
'@humanfs/node@0.16.8':
|
|
1993
1911
|
dependencies:
|
|
1994
|
-
'@
|
|
1995
|
-
'@
|
|
1996
|
-
|
|
1997
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
1998
|
-
optionalDependencies:
|
|
1999
|
-
'@types/react': 19.2.15
|
|
2000
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1912
|
+
'@humanfs/core': 0.19.2
|
|
1913
|
+
'@humanfs/types': 0.15.0
|
|
1914
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2001
1915
|
|
|
2002
|
-
'@
|
|
2003
|
-
dependencies:
|
|
2004
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2005
|
-
react: 19.2.6
|
|
2006
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2007
|
-
optionalDependencies:
|
|
2008
|
-
'@types/react': 19.2.15
|
|
2009
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1916
|
+
'@humanfs/types@0.15.0': {}
|
|
2010
1917
|
|
|
2011
|
-
'@
|
|
2012
|
-
dependencies:
|
|
2013
|
-
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.15)(react@19.2.6)
|
|
2014
|
-
react: 19.2.6
|
|
2015
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2016
|
-
optionalDependencies:
|
|
2017
|
-
'@types/react': 19.2.15
|
|
2018
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.15)
|
|
1918
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
2019
1919
|
|
|
2020
|
-
'@
|
|
2021
|
-
dependencies:
|
|
2022
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2023
|
-
react: 19.2.6
|
|
2024
|
-
optionalDependencies:
|
|
2025
|
-
'@types/react': 19.2.15
|
|
1920
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
2026
1921
|
|
|
2027
|
-
'@
|
|
2028
|
-
dependencies:
|
|
2029
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2030
|
-
react: 19.2.6
|
|
2031
|
-
optionalDependencies:
|
|
2032
|
-
'@types/react': 19.2.15
|
|
2033
|
-
|
|
2034
|
-
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.15)(react@19.2.6)':
|
|
1922
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2035
1923
|
dependencies:
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
'@types/react': 19.2.15
|
|
1924
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1925
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2039
1926
|
|
|
2040
|
-
'@
|
|
1927
|
+
'@jridgewell/remapping@2.3.5':
|
|
2041
1928
|
dependencies:
|
|
2042
|
-
'@
|
|
2043
|
-
'@
|
|
2044
|
-
react: 19.2.6
|
|
2045
|
-
optionalDependencies:
|
|
2046
|
-
'@types/react': 19.2.15
|
|
1929
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
1930
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2047
1931
|
|
|
2048
|
-
'@
|
|
2049
|
-
dependencies:
|
|
2050
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2051
|
-
react: 19.2.6
|
|
2052
|
-
optionalDependencies:
|
|
2053
|
-
'@types/react': 19.2.15
|
|
1932
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2054
1933
|
|
|
2055
|
-
'@
|
|
2056
|
-
dependencies:
|
|
2057
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2058
|
-
react: 19.2.6
|
|
2059
|
-
optionalDependencies:
|
|
2060
|
-
'@types/react': 19.2.15
|
|
1934
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2061
1935
|
|
|
2062
|
-
'@
|
|
1936
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2063
1937
|
dependencies:
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
'@types/react': 19.2.15
|
|
1938
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
1939
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2067
1940
|
|
|
2068
|
-
'@
|
|
1941
|
+
'@playwright/test@1.60.0':
|
|
2069
1942
|
dependencies:
|
|
2070
|
-
|
|
2071
|
-
'@standard-schema/utils': 0.3.0
|
|
2072
|
-
immer: 11.1.8
|
|
2073
|
-
redux: 5.0.1
|
|
2074
|
-
redux-thunk: 3.1.0(redux@5.0.1)
|
|
2075
|
-
reselect: 5.2.0
|
|
2076
|
-
optionalDependencies:
|
|
2077
|
-
react: 19.2.6
|
|
2078
|
-
react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1)
|
|
1943
|
+
playwright: 1.60.0
|
|
2079
1944
|
|
|
2080
1945
|
'@rolldown/pluginutils@1.0.0-beta.27': {}
|
|
2081
1946
|
|
|
@@ -2154,10 +2019,6 @@ snapshots:
|
|
|
2154
2019
|
'@rollup/rollup-win32-x64-msvc@4.60.4':
|
|
2155
2020
|
optional: true
|
|
2156
2021
|
|
|
2157
|
-
'@standard-schema/spec@1.1.0': {}
|
|
2158
|
-
|
|
2159
|
-
'@standard-schema/utils@0.3.0': {}
|
|
2160
|
-
|
|
2161
2022
|
'@tailwindcss/node@4.3.0':
|
|
2162
2023
|
dependencies:
|
|
2163
2024
|
'@jridgewell/remapping': 2.3.5
|
|
@@ -2247,40 +2108,18 @@ snapshots:
|
|
|
2247
2108
|
dependencies:
|
|
2248
2109
|
'@babel/types': 7.29.7
|
|
2249
2110
|
|
|
2250
|
-
'@types/d3-array@3.2.2': {}
|
|
2251
|
-
|
|
2252
|
-
'@types/d3-color@3.1.3': {}
|
|
2253
|
-
|
|
2254
2111
|
'@types/d3-drag@3.0.7':
|
|
2255
2112
|
dependencies:
|
|
2256
2113
|
'@types/d3-selection': 3.0.11
|
|
2257
2114
|
|
|
2258
|
-
'@types/d3-ease@3.0.2': {}
|
|
2259
|
-
|
|
2260
2115
|
'@types/d3-force@3.0.10': {}
|
|
2261
2116
|
|
|
2262
|
-
'@types/d3-interpolate@3.0.4':
|
|
2263
|
-
dependencies:
|
|
2264
|
-
'@types/d3-color': 3.1.3
|
|
2265
|
-
|
|
2266
|
-
'@types/d3-path@3.1.1': {}
|
|
2267
|
-
|
|
2268
|
-
'@types/d3-scale@4.0.9':
|
|
2269
|
-
dependencies:
|
|
2270
|
-
'@types/d3-time': 3.0.4
|
|
2271
|
-
|
|
2272
2117
|
'@types/d3-selection@3.0.11': {}
|
|
2273
2118
|
|
|
2274
|
-
'@types/d3-shape@3.1.8':
|
|
2275
|
-
dependencies:
|
|
2276
|
-
'@types/d3-path': 3.1.1
|
|
2277
|
-
|
|
2278
|
-
'@types/d3-time@3.0.4': {}
|
|
2279
|
-
|
|
2280
|
-
'@types/d3-timer@3.0.2': {}
|
|
2281
|
-
|
|
2282
2119
|
'@types/estree@1.0.8': {}
|
|
2283
2120
|
|
|
2121
|
+
'@types/json-schema@7.0.15': {}
|
|
2122
|
+
|
|
2284
2123
|
'@types/node@25.9.1':
|
|
2285
2124
|
dependencies:
|
|
2286
2125
|
undici-types: 7.24.6
|
|
@@ -2297,7 +2136,96 @@ snapshots:
|
|
|
2297
2136
|
dependencies:
|
|
2298
2137
|
csstype: 3.2.3
|
|
2299
2138
|
|
|
2300
|
-
'@
|
|
2139
|
+
'@typescript-eslint/eslint-plugin@8.68.0(@typescript-eslint/parser@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3))(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)':
|
|
2140
|
+
dependencies:
|
|
2141
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2142
|
+
'@typescript-eslint/parser': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2143
|
+
'@typescript-eslint/scope-manager': 8.68.0
|
|
2144
|
+
'@typescript-eslint/type-utils': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2145
|
+
'@typescript-eslint/utils': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2146
|
+
'@typescript-eslint/visitor-keys': 8.68.0
|
|
2147
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2148
|
+
ignore: 7.0.6
|
|
2149
|
+
natural-compare: 1.4.0
|
|
2150
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
2151
|
+
typescript: 5.9.3
|
|
2152
|
+
transitivePeerDependencies:
|
|
2153
|
+
- supports-color
|
|
2154
|
+
|
|
2155
|
+
'@typescript-eslint/parser@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)':
|
|
2156
|
+
dependencies:
|
|
2157
|
+
'@typescript-eslint/scope-manager': 8.68.0
|
|
2158
|
+
'@typescript-eslint/types': 8.68.0
|
|
2159
|
+
'@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3)
|
|
2160
|
+
'@typescript-eslint/visitor-keys': 8.68.0
|
|
2161
|
+
debug: 4.4.3
|
|
2162
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2163
|
+
typescript: 5.9.3
|
|
2164
|
+
transitivePeerDependencies:
|
|
2165
|
+
- supports-color
|
|
2166
|
+
|
|
2167
|
+
'@typescript-eslint/project-service@8.68.0(typescript@5.9.3)':
|
|
2168
|
+
dependencies:
|
|
2169
|
+
'@typescript-eslint/tsconfig-utils': 8.68.0(typescript@5.9.3)
|
|
2170
|
+
'@typescript-eslint/types': 8.68.0
|
|
2171
|
+
debug: 4.4.3
|
|
2172
|
+
typescript: 5.9.3
|
|
2173
|
+
transitivePeerDependencies:
|
|
2174
|
+
- supports-color
|
|
2175
|
+
|
|
2176
|
+
'@typescript-eslint/scope-manager@8.68.0':
|
|
2177
|
+
dependencies:
|
|
2178
|
+
'@typescript-eslint/types': 8.68.0
|
|
2179
|
+
'@typescript-eslint/visitor-keys': 8.68.0
|
|
2180
|
+
|
|
2181
|
+
'@typescript-eslint/tsconfig-utils@8.68.0(typescript@5.9.3)':
|
|
2182
|
+
dependencies:
|
|
2183
|
+
typescript: 5.9.3
|
|
2184
|
+
|
|
2185
|
+
'@typescript-eslint/type-utils@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)':
|
|
2186
|
+
dependencies:
|
|
2187
|
+
'@typescript-eslint/types': 8.68.0
|
|
2188
|
+
'@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3)
|
|
2189
|
+
'@typescript-eslint/utils': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2190
|
+
debug: 4.4.3
|
|
2191
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2192
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
2193
|
+
typescript: 5.9.3
|
|
2194
|
+
transitivePeerDependencies:
|
|
2195
|
+
- supports-color
|
|
2196
|
+
|
|
2197
|
+
'@typescript-eslint/types@8.68.0': {}
|
|
2198
|
+
|
|
2199
|
+
'@typescript-eslint/typescript-estree@8.68.0(typescript@5.9.3)':
|
|
2200
|
+
dependencies:
|
|
2201
|
+
'@typescript-eslint/project-service': 8.68.0(typescript@5.9.3)
|
|
2202
|
+
'@typescript-eslint/tsconfig-utils': 8.68.0(typescript@5.9.3)
|
|
2203
|
+
'@typescript-eslint/types': 8.68.0
|
|
2204
|
+
'@typescript-eslint/visitor-keys': 8.68.0
|
|
2205
|
+
debug: 4.4.3
|
|
2206
|
+
minimatch: 10.2.6
|
|
2207
|
+
semver: 7.8.5
|
|
2208
|
+
tinyglobby: 0.2.16
|
|
2209
|
+
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
2210
|
+
typescript: 5.9.3
|
|
2211
|
+
transitivePeerDependencies:
|
|
2212
|
+
- supports-color
|
|
2213
|
+
|
|
2214
|
+
'@typescript-eslint/utils@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)':
|
|
2215
|
+
dependencies:
|
|
2216
|
+
'@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.7.0))
|
|
2217
|
+
'@typescript-eslint/scope-manager': 8.68.0
|
|
2218
|
+
'@typescript-eslint/types': 8.68.0
|
|
2219
|
+
'@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3)
|
|
2220
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2221
|
+
typescript: 5.9.3
|
|
2222
|
+
transitivePeerDependencies:
|
|
2223
|
+
- supports-color
|
|
2224
|
+
|
|
2225
|
+
'@typescript-eslint/visitor-keys@8.68.0':
|
|
2226
|
+
dependencies:
|
|
2227
|
+
'@typescript-eslint/types': 8.68.0
|
|
2228
|
+
eslint-visitor-keys: 5.0.1
|
|
2301
2229
|
|
|
2302
2230
|
'@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0))':
|
|
2303
2231
|
dependencies:
|
|
@@ -2311,18 +2239,46 @@ snapshots:
|
|
|
2311
2239
|
transitivePeerDependencies:
|
|
2312
2240
|
- supports-color
|
|
2313
2241
|
|
|
2242
|
+
'@xterm/addon-fit@0.11.0': {}
|
|
2243
|
+
|
|
2244
|
+
'@xterm/xterm@6.0.0': {}
|
|
2245
|
+
|
|
2246
|
+
acorn-jsx@5.3.2(acorn@8.18.0):
|
|
2247
|
+
dependencies:
|
|
2248
|
+
acorn: 8.18.0
|
|
2249
|
+
|
|
2250
|
+
acorn@8.18.0: {}
|
|
2251
|
+
|
|
2252
|
+
ajv@6.15.0:
|
|
2253
|
+
dependencies:
|
|
2254
|
+
fast-deep-equal: 3.1.3
|
|
2255
|
+
fast-json-stable-stringify: 2.1.0
|
|
2256
|
+
json-schema-traverse: 0.4.1
|
|
2257
|
+
uri-js: 4.4.1
|
|
2258
|
+
|
|
2314
2259
|
ansi-regex@5.0.1: {}
|
|
2315
2260
|
|
|
2316
2261
|
ansi-styles@4.3.0:
|
|
2317
2262
|
dependencies:
|
|
2318
2263
|
color-convert: 2.0.1
|
|
2319
2264
|
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2265
|
+
argparse@2.0.1: {}
|
|
2266
|
+
|
|
2267
|
+
balanced-match@1.0.2: {}
|
|
2268
|
+
|
|
2269
|
+
balanced-match@4.0.4: {}
|
|
2323
2270
|
|
|
2324
2271
|
baseline-browser-mapping@2.10.32: {}
|
|
2325
2272
|
|
|
2273
|
+
brace-expansion@1.1.18:
|
|
2274
|
+
dependencies:
|
|
2275
|
+
balanced-match: 1.0.2
|
|
2276
|
+
concat-map: 0.0.1
|
|
2277
|
+
|
|
2278
|
+
brace-expansion@5.0.9:
|
|
2279
|
+
dependencies:
|
|
2280
|
+
balanced-match: 4.0.4
|
|
2281
|
+
|
|
2326
2282
|
browserslist@4.28.2:
|
|
2327
2283
|
dependencies:
|
|
2328
2284
|
baseline-browser-mapping: 2.10.32
|
|
@@ -2331,10 +2287,17 @@ snapshots:
|
|
|
2331
2287
|
node-releases: 2.0.46
|
|
2332
2288
|
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
|
2333
2289
|
|
|
2290
|
+
callsites@3.1.0: {}
|
|
2291
|
+
|
|
2334
2292
|
camelcase@5.3.1: {}
|
|
2335
2293
|
|
|
2336
2294
|
caniuse-lite@1.0.30001793: {}
|
|
2337
2295
|
|
|
2296
|
+
chalk@4.1.2:
|
|
2297
|
+
dependencies:
|
|
2298
|
+
ansi-styles: 4.3.0
|
|
2299
|
+
supports-color: 7.2.0
|
|
2300
|
+
|
|
2338
2301
|
class-variance-authority@0.7.1:
|
|
2339
2302
|
dependencies:
|
|
2340
2303
|
clsx: 2.1.1
|
|
@@ -2347,35 +2310,25 @@ snapshots:
|
|
|
2347
2310
|
|
|
2348
2311
|
clsx@2.1.1: {}
|
|
2349
2312
|
|
|
2350
|
-
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2351
|
-
dependencies:
|
|
2352
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
|
|
2353
|
-
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2354
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
|
|
2355
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2356
|
-
react: 19.2.6
|
|
2357
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2358
|
-
transitivePeerDependencies:
|
|
2359
|
-
- '@types/react'
|
|
2360
|
-
- '@types/react-dom'
|
|
2361
|
-
|
|
2362
2313
|
color-convert@2.0.1:
|
|
2363
2314
|
dependencies:
|
|
2364
2315
|
color-name: 1.1.4
|
|
2365
2316
|
|
|
2366
2317
|
color-name@1.1.4: {}
|
|
2367
2318
|
|
|
2319
|
+
concat-map@0.0.1: {}
|
|
2320
|
+
|
|
2368
2321
|
convert-source-map@2.0.0: {}
|
|
2369
2322
|
|
|
2370
2323
|
cookie@1.1.1: {}
|
|
2371
2324
|
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
d3-array@3.2.4:
|
|
2325
|
+
cross-spawn@7.0.6:
|
|
2375
2326
|
dependencies:
|
|
2376
|
-
|
|
2327
|
+
path-key: 3.1.1
|
|
2328
|
+
shebang-command: 2.0.0
|
|
2329
|
+
which: 2.0.2
|
|
2377
2330
|
|
|
2378
|
-
|
|
2331
|
+
csstype@3.2.3: {}
|
|
2379
2332
|
|
|
2380
2333
|
d3-dispatch@3.0.1: {}
|
|
2381
2334
|
|
|
@@ -2384,49 +2337,20 @@ snapshots:
|
|
|
2384
2337
|
d3-dispatch: 3.0.1
|
|
2385
2338
|
d3-selection: 3.0.0
|
|
2386
2339
|
|
|
2387
|
-
d3-ease@3.0.1: {}
|
|
2388
|
-
|
|
2389
2340
|
d3-force@3.0.0:
|
|
2390
2341
|
dependencies:
|
|
2391
2342
|
d3-dispatch: 3.0.1
|
|
2392
2343
|
d3-quadtree: 3.0.1
|
|
2393
2344
|
d3-timer: 3.0.1
|
|
2394
2345
|
|
|
2395
|
-
d3-format@3.1.2: {}
|
|
2396
|
-
|
|
2397
|
-
d3-interpolate@3.0.1:
|
|
2398
|
-
dependencies:
|
|
2399
|
-
d3-color: 3.1.0
|
|
2400
|
-
|
|
2401
|
-
d3-path@3.1.0: {}
|
|
2402
|
-
|
|
2403
2346
|
d3-quadtree@3.0.1: {}
|
|
2404
2347
|
|
|
2405
|
-
d3-scale@4.0.2:
|
|
2406
|
-
dependencies:
|
|
2407
|
-
d3-array: 3.2.4
|
|
2408
|
-
d3-format: 3.1.2
|
|
2409
|
-
d3-interpolate: 3.0.1
|
|
2410
|
-
d3-time: 3.1.0
|
|
2411
|
-
d3-time-format: 4.1.0
|
|
2412
|
-
|
|
2413
2348
|
d3-selection@3.0.0: {}
|
|
2414
2349
|
|
|
2415
|
-
d3-shape@3.2.0:
|
|
2416
|
-
dependencies:
|
|
2417
|
-
d3-path: 3.1.0
|
|
2418
|
-
|
|
2419
|
-
d3-time-format@4.1.0:
|
|
2420
|
-
dependencies:
|
|
2421
|
-
d3-time: 3.1.0
|
|
2422
|
-
|
|
2423
|
-
d3-time@3.1.0:
|
|
2424
|
-
dependencies:
|
|
2425
|
-
d3-array: 3.2.4
|
|
2426
|
-
|
|
2427
2350
|
d3-timer@3.0.1: {}
|
|
2428
2351
|
|
|
2429
|
-
date-fns@4.3.0:
|
|
2352
|
+
date-fns@4.3.0:
|
|
2353
|
+
optional: true
|
|
2430
2354
|
|
|
2431
2355
|
debug@4.4.3:
|
|
2432
2356
|
dependencies:
|
|
@@ -2434,30 +2358,16 @@ snapshots:
|
|
|
2434
2358
|
|
|
2435
2359
|
decamelize@1.2.0: {}
|
|
2436
2360
|
|
|
2437
|
-
|
|
2361
|
+
deep-is@0.1.4: {}
|
|
2438
2362
|
|
|
2439
2363
|
dequal@2.0.3: {}
|
|
2440
2364
|
|
|
2441
2365
|
detect-libc@2.1.2: {}
|
|
2442
2366
|
|
|
2443
|
-
detect-node-es@1.1.0: {}
|
|
2444
|
-
|
|
2445
2367
|
dijkstrajs@1.0.3: {}
|
|
2446
2368
|
|
|
2447
2369
|
electron-to-chromium@1.5.363: {}
|
|
2448
2370
|
|
|
2449
|
-
embla-carousel-react@8.6.0(react@19.2.6):
|
|
2450
|
-
dependencies:
|
|
2451
|
-
embla-carousel: 8.6.0
|
|
2452
|
-
embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0)
|
|
2453
|
-
react: 19.2.6
|
|
2454
|
-
|
|
2455
|
-
embla-carousel-reactive-utils@8.6.0(embla-carousel@8.6.0):
|
|
2456
|
-
dependencies:
|
|
2457
|
-
embla-carousel: 8.6.0
|
|
2458
|
-
|
|
2459
|
-
embla-carousel@8.6.0: {}
|
|
2460
|
-
|
|
2461
2371
|
emoji-regex@8.0.0: {}
|
|
2462
2372
|
|
|
2463
2373
|
enhanced-resolve@5.22.0:
|
|
@@ -2465,8 +2375,6 @@ snapshots:
|
|
|
2465
2375
|
graceful-fs: 4.2.11
|
|
2466
2376
|
tapable: 2.3.3
|
|
2467
2377
|
|
|
2468
|
-
es-toolkit@1.47.0: {}
|
|
2469
|
-
|
|
2470
2378
|
esbuild@0.25.12:
|
|
2471
2379
|
optionalDependencies:
|
|
2472
2380
|
'@esbuild/aix-ppc64': 0.25.12
|
|
@@ -2498,17 +2406,113 @@ snapshots:
|
|
|
2498
2406
|
|
|
2499
2407
|
escalade@3.2.0: {}
|
|
2500
2408
|
|
|
2501
|
-
|
|
2409
|
+
escape-string-regexp@4.0.0: {}
|
|
2410
|
+
|
|
2411
|
+
eslint-plugin-react-hooks@5.2.0(eslint@9.39.5(jiti@2.7.0)):
|
|
2412
|
+
dependencies:
|
|
2413
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2414
|
+
|
|
2415
|
+
eslint-scope@8.4.0:
|
|
2416
|
+
dependencies:
|
|
2417
|
+
esrecurse: 4.3.0
|
|
2418
|
+
estraverse: 5.3.0
|
|
2419
|
+
|
|
2420
|
+
eslint-visitor-keys@3.4.3: {}
|
|
2421
|
+
|
|
2422
|
+
eslint-visitor-keys@4.2.1: {}
|
|
2423
|
+
|
|
2424
|
+
eslint-visitor-keys@5.0.1: {}
|
|
2425
|
+
|
|
2426
|
+
eslint@9.39.5(jiti@2.7.0):
|
|
2427
|
+
dependencies:
|
|
2428
|
+
'@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.7.0))
|
|
2429
|
+
'@eslint-community/regexpp': 4.12.2
|
|
2430
|
+
'@eslint/config-array': 0.21.2
|
|
2431
|
+
'@eslint/config-helpers': 0.4.2
|
|
2432
|
+
'@eslint/core': 0.17.0
|
|
2433
|
+
'@eslint/eslintrc': 3.3.6
|
|
2434
|
+
'@eslint/js': 9.39.5
|
|
2435
|
+
'@eslint/plugin-kit': 0.4.1
|
|
2436
|
+
'@humanfs/node': 0.16.8
|
|
2437
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
2438
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2439
|
+
'@types/estree': 1.0.8
|
|
2440
|
+
ajv: 6.15.0
|
|
2441
|
+
chalk: 4.1.2
|
|
2442
|
+
cross-spawn: 7.0.6
|
|
2443
|
+
debug: 4.4.3
|
|
2444
|
+
escape-string-regexp: 4.0.0
|
|
2445
|
+
eslint-scope: 8.4.0
|
|
2446
|
+
eslint-visitor-keys: 4.2.1
|
|
2447
|
+
espree: 10.4.0
|
|
2448
|
+
esquery: 1.7.0
|
|
2449
|
+
esutils: 2.0.3
|
|
2450
|
+
fast-deep-equal: 3.1.3
|
|
2451
|
+
file-entry-cache: 8.0.0
|
|
2452
|
+
find-up: 5.0.0
|
|
2453
|
+
glob-parent: 6.0.2
|
|
2454
|
+
ignore: 5.3.2
|
|
2455
|
+
imurmurhash: 0.1.4
|
|
2456
|
+
is-glob: 4.0.3
|
|
2457
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
2458
|
+
lodash.merge: 4.6.2
|
|
2459
|
+
minimatch: 3.1.5
|
|
2460
|
+
natural-compare: 1.4.0
|
|
2461
|
+
optionator: 0.9.4
|
|
2462
|
+
optionalDependencies:
|
|
2463
|
+
jiti: 2.7.0
|
|
2464
|
+
transitivePeerDependencies:
|
|
2465
|
+
- supports-color
|
|
2466
|
+
|
|
2467
|
+
espree@10.4.0:
|
|
2468
|
+
dependencies:
|
|
2469
|
+
acorn: 8.18.0
|
|
2470
|
+
acorn-jsx: 5.3.2(acorn@8.18.0)
|
|
2471
|
+
eslint-visitor-keys: 4.2.1
|
|
2472
|
+
|
|
2473
|
+
esquery@1.7.0:
|
|
2474
|
+
dependencies:
|
|
2475
|
+
estraverse: 5.3.0
|
|
2476
|
+
|
|
2477
|
+
esrecurse@4.3.0:
|
|
2478
|
+
dependencies:
|
|
2479
|
+
estraverse: 5.3.0
|
|
2480
|
+
|
|
2481
|
+
estraverse@5.3.0: {}
|
|
2482
|
+
|
|
2483
|
+
esutils@2.0.3: {}
|
|
2484
|
+
|
|
2485
|
+
fast-deep-equal@3.1.3: {}
|
|
2486
|
+
|
|
2487
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
2488
|
+
|
|
2489
|
+
fast-levenshtein@2.0.6: {}
|
|
2502
2490
|
|
|
2503
2491
|
fdir@6.5.0(picomatch@4.0.4):
|
|
2504
2492
|
optionalDependencies:
|
|
2505
2493
|
picomatch: 4.0.4
|
|
2506
2494
|
|
|
2495
|
+
file-entry-cache@8.0.0:
|
|
2496
|
+
dependencies:
|
|
2497
|
+
flat-cache: 4.0.1
|
|
2498
|
+
|
|
2507
2499
|
find-up@4.1.0:
|
|
2508
2500
|
dependencies:
|
|
2509
2501
|
locate-path: 5.0.0
|
|
2510
2502
|
path-exists: 4.0.0
|
|
2511
2503
|
|
|
2504
|
+
find-up@5.0.0:
|
|
2505
|
+
dependencies:
|
|
2506
|
+
locate-path: 6.0.0
|
|
2507
|
+
path-exists: 4.0.0
|
|
2508
|
+
|
|
2509
|
+
flat-cache@4.0.1:
|
|
2510
|
+
dependencies:
|
|
2511
|
+
flatted: 3.4.4
|
|
2512
|
+
keyv: 4.5.4
|
|
2513
|
+
|
|
2514
|
+
flatted@3.4.4: {}
|
|
2515
|
+
|
|
2512
2516
|
fsevents@2.3.2:
|
|
2513
2517
|
optional: true
|
|
2514
2518
|
|
|
@@ -2519,31 +2523,64 @@ snapshots:
|
|
|
2519
2523
|
|
|
2520
2524
|
get-caller-file@2.0.5: {}
|
|
2521
2525
|
|
|
2522
|
-
|
|
2526
|
+
glob-parent@6.0.2:
|
|
2527
|
+
dependencies:
|
|
2528
|
+
is-glob: 4.0.3
|
|
2529
|
+
|
|
2530
|
+
globals@14.0.0: {}
|
|
2523
2531
|
|
|
2524
2532
|
graceful-fs@4.2.11: {}
|
|
2525
2533
|
|
|
2526
|
-
|
|
2534
|
+
has-flag@4.0.0: {}
|
|
2527
2535
|
|
|
2528
|
-
|
|
2536
|
+
ignore@5.3.2: {}
|
|
2529
2537
|
|
|
2530
|
-
|
|
2538
|
+
ignore@7.0.6: {}
|
|
2539
|
+
|
|
2540
|
+
import-fresh@3.3.1:
|
|
2531
2541
|
dependencies:
|
|
2532
|
-
|
|
2533
|
-
|
|
2542
|
+
parent-module: 1.0.1
|
|
2543
|
+
resolve-from: 4.0.0
|
|
2544
|
+
|
|
2545
|
+
imurmurhash@0.1.4: {}
|
|
2534
2546
|
|
|
2535
|
-
|
|
2547
|
+
is-extglob@2.1.1: {}
|
|
2536
2548
|
|
|
2537
2549
|
is-fullwidth-code-point@3.0.0: {}
|
|
2538
2550
|
|
|
2551
|
+
is-glob@4.0.3:
|
|
2552
|
+
dependencies:
|
|
2553
|
+
is-extglob: 2.1.1
|
|
2554
|
+
|
|
2555
|
+
isexe@2.0.0: {}
|
|
2556
|
+
|
|
2539
2557
|
jiti@2.7.0: {}
|
|
2540
2558
|
|
|
2541
2559
|
js-tokens@4.0.0: {}
|
|
2542
2560
|
|
|
2561
|
+
js-yaml@4.3.1:
|
|
2562
|
+
dependencies:
|
|
2563
|
+
argparse: 2.0.1
|
|
2564
|
+
|
|
2543
2565
|
jsesc@3.1.0: {}
|
|
2544
2566
|
|
|
2567
|
+
json-buffer@3.0.1: {}
|
|
2568
|
+
|
|
2569
|
+
json-schema-traverse@0.4.1: {}
|
|
2570
|
+
|
|
2571
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
2572
|
+
|
|
2545
2573
|
json5@2.2.3: {}
|
|
2546
2574
|
|
|
2575
|
+
keyv@4.5.4:
|
|
2576
|
+
dependencies:
|
|
2577
|
+
json-buffer: 3.0.1
|
|
2578
|
+
|
|
2579
|
+
levn@0.4.1:
|
|
2580
|
+
dependencies:
|
|
2581
|
+
prelude-ls: 1.2.1
|
|
2582
|
+
type-check: 0.4.0
|
|
2583
|
+
|
|
2547
2584
|
lightningcss-android-arm64@1.32.0:
|
|
2548
2585
|
optional: true
|
|
2549
2586
|
|
|
@@ -2597,6 +2634,12 @@ snapshots:
|
|
|
2597
2634
|
dependencies:
|
|
2598
2635
|
p-locate: 4.1.0
|
|
2599
2636
|
|
|
2637
|
+
locate-path@6.0.0:
|
|
2638
|
+
dependencies:
|
|
2639
|
+
p-locate: 5.0.0
|
|
2640
|
+
|
|
2641
|
+
lodash.merge@4.6.2: {}
|
|
2642
|
+
|
|
2600
2643
|
lru-cache@5.1.1:
|
|
2601
2644
|
dependencies:
|
|
2602
2645
|
yallist: 3.1.1
|
|
@@ -2609,29 +2652,57 @@ snapshots:
|
|
|
2609
2652
|
dependencies:
|
|
2610
2653
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2611
2654
|
|
|
2655
|
+
minimatch@10.2.6:
|
|
2656
|
+
dependencies:
|
|
2657
|
+
brace-expansion: 5.0.9
|
|
2658
|
+
|
|
2659
|
+
minimatch@3.1.5:
|
|
2660
|
+
dependencies:
|
|
2661
|
+
brace-expansion: 1.1.18
|
|
2662
|
+
|
|
2612
2663
|
ms@2.1.3: {}
|
|
2613
2664
|
|
|
2614
2665
|
nanoid@3.3.12: {}
|
|
2615
2666
|
|
|
2616
|
-
|
|
2617
|
-
dependencies:
|
|
2618
|
-
react: 19.2.6
|
|
2619
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2667
|
+
natural-compare@1.4.0: {}
|
|
2620
2668
|
|
|
2621
2669
|
node-releases@2.0.46: {}
|
|
2622
2670
|
|
|
2671
|
+
optionator@0.9.4:
|
|
2672
|
+
dependencies:
|
|
2673
|
+
deep-is: 0.1.4
|
|
2674
|
+
fast-levenshtein: 2.0.6
|
|
2675
|
+
levn: 0.4.1
|
|
2676
|
+
prelude-ls: 1.2.1
|
|
2677
|
+
type-check: 0.4.0
|
|
2678
|
+
word-wrap: 1.2.5
|
|
2679
|
+
|
|
2623
2680
|
p-limit@2.3.0:
|
|
2624
2681
|
dependencies:
|
|
2625
2682
|
p-try: 2.2.0
|
|
2626
2683
|
|
|
2684
|
+
p-limit@3.1.0:
|
|
2685
|
+
dependencies:
|
|
2686
|
+
yocto-queue: 0.1.0
|
|
2687
|
+
|
|
2627
2688
|
p-locate@4.1.0:
|
|
2628
2689
|
dependencies:
|
|
2629
2690
|
p-limit: 2.3.0
|
|
2630
2691
|
|
|
2692
|
+
p-locate@5.0.0:
|
|
2693
|
+
dependencies:
|
|
2694
|
+
p-limit: 3.1.0
|
|
2695
|
+
|
|
2631
2696
|
p-try@2.2.0: {}
|
|
2632
2697
|
|
|
2698
|
+
parent-module@1.0.1:
|
|
2699
|
+
dependencies:
|
|
2700
|
+
callsites: 3.1.0
|
|
2701
|
+
|
|
2633
2702
|
path-exists@4.0.0: {}
|
|
2634
2703
|
|
|
2704
|
+
path-key@3.1.1: {}
|
|
2705
|
+
|
|
2635
2706
|
picocolors@1.1.1: {}
|
|
2636
2707
|
|
|
2637
2708
|
picomatch@4.0.4: {}
|
|
@@ -2652,57 +2723,23 @@ snapshots:
|
|
|
2652
2723
|
picocolors: 1.1.1
|
|
2653
2724
|
source-map-js: 1.2.1
|
|
2654
2725
|
|
|
2726
|
+
prelude-ls@1.2.1: {}
|
|
2727
|
+
|
|
2728
|
+
punycode@2.3.1: {}
|
|
2729
|
+
|
|
2655
2730
|
qrcode@1.5.4:
|
|
2656
2731
|
dependencies:
|
|
2657
2732
|
dijkstrajs: 1.0.3
|
|
2658
2733
|
pngjs: 5.0.0
|
|
2659
2734
|
yargs: 15.4.1
|
|
2660
2735
|
|
|
2661
|
-
react-day-picker@10.0.1(@types/react@19.2.15)(react@19.2.6):
|
|
2662
|
-
dependencies:
|
|
2663
|
-
'@date-fns/tz': 1.5.0
|
|
2664
|
-
date-fns: 4.3.0
|
|
2665
|
-
react: 19.2.6
|
|
2666
|
-
optionalDependencies:
|
|
2667
|
-
'@types/react': 19.2.15
|
|
2668
|
-
|
|
2669
2736
|
react-dom@19.2.6(react@19.2.6):
|
|
2670
2737
|
dependencies:
|
|
2671
2738
|
react: 19.2.6
|
|
2672
2739
|
scheduler: 0.27.0
|
|
2673
2740
|
|
|
2674
|
-
react-is@19.2.6: {}
|
|
2675
|
-
|
|
2676
|
-
react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1):
|
|
2677
|
-
dependencies:
|
|
2678
|
-
'@types/use-sync-external-store': 0.0.6
|
|
2679
|
-
react: 19.2.6
|
|
2680
|
-
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
2681
|
-
optionalDependencies:
|
|
2682
|
-
'@types/react': 19.2.15
|
|
2683
|
-
redux: 5.0.1
|
|
2684
|
-
|
|
2685
2741
|
react-refresh@0.17.0: {}
|
|
2686
2742
|
|
|
2687
|
-
react-remove-scroll-bar@2.3.8(@types/react@19.2.15)(react@19.2.6):
|
|
2688
|
-
dependencies:
|
|
2689
|
-
react: 19.2.6
|
|
2690
|
-
react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2691
|
-
tslib: 2.8.1
|
|
2692
|
-
optionalDependencies:
|
|
2693
|
-
'@types/react': 19.2.15
|
|
2694
|
-
|
|
2695
|
-
react-remove-scroll@2.7.2(@types/react@19.2.15)(react@19.2.6):
|
|
2696
|
-
dependencies:
|
|
2697
|
-
react: 19.2.6
|
|
2698
|
-
react-remove-scroll-bar: 2.3.8(@types/react@19.2.15)(react@19.2.6)
|
|
2699
|
-
react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
|
|
2700
|
-
tslib: 2.8.1
|
|
2701
|
-
use-callback-ref: 1.3.3(@types/react@19.2.15)(react@19.2.6)
|
|
2702
|
-
use-sidecar: 1.1.3(@types/react@19.2.15)(react@19.2.6)
|
|
2703
|
-
optionalDependencies:
|
|
2704
|
-
'@types/react': 19.2.15
|
|
2705
|
-
|
|
2706
2743
|
react-resizable-panels@4.11.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2707
2744
|
dependencies:
|
|
2708
2745
|
react: 19.2.6
|
|
@@ -2722,50 +2759,16 @@ snapshots:
|
|
|
2722
2759
|
optionalDependencies:
|
|
2723
2760
|
react-dom: 19.2.6(react@19.2.6)
|
|
2724
2761
|
|
|
2725
|
-
react-style-singleton@2.2.3(@types/react@19.2.15)(react@19.2.6):
|
|
2726
|
-
dependencies:
|
|
2727
|
-
get-nonce: 1.0.1
|
|
2728
|
-
react: 19.2.6
|
|
2729
|
-
tslib: 2.8.1
|
|
2730
|
-
optionalDependencies:
|
|
2731
|
-
'@types/react': 19.2.15
|
|
2732
|
-
|
|
2733
2762
|
react@19.2.6: {}
|
|
2734
2763
|
|
|
2735
|
-
recharts@3.8.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react-is@19.2.6)(react@19.2.6)(redux@5.0.1):
|
|
2736
|
-
dependencies:
|
|
2737
|
-
'@reduxjs/toolkit': 2.12.0(react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1))(react@19.2.6)
|
|
2738
|
-
clsx: 2.1.1
|
|
2739
|
-
decimal.js-light: 2.5.1
|
|
2740
|
-
es-toolkit: 1.47.0
|
|
2741
|
-
eventemitter3: 5.0.4
|
|
2742
|
-
immer: 10.2.0
|
|
2743
|
-
react: 19.2.6
|
|
2744
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2745
|
-
react-is: 19.2.6
|
|
2746
|
-
react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1)
|
|
2747
|
-
reselect: 5.1.1
|
|
2748
|
-
tiny-invariant: 1.3.3
|
|
2749
|
-
use-sync-external-store: 1.6.0(react@19.2.6)
|
|
2750
|
-
victory-vendor: 37.3.6
|
|
2751
|
-
transitivePeerDependencies:
|
|
2752
|
-
- '@types/react'
|
|
2753
|
-
- redux
|
|
2754
|
-
|
|
2755
|
-
redux-thunk@3.1.0(redux@5.0.1):
|
|
2756
|
-
dependencies:
|
|
2757
|
-
redux: 5.0.1
|
|
2758
|
-
|
|
2759
|
-
redux@5.0.1: {}
|
|
2760
|
-
|
|
2761
2764
|
require-directory@2.1.1: {}
|
|
2762
2765
|
|
|
2763
2766
|
require-main-filename@2.0.0: {}
|
|
2764
2767
|
|
|
2765
|
-
reselect@5.1.1: {}
|
|
2766
|
-
|
|
2767
2768
|
reselect@5.2.0: {}
|
|
2768
2769
|
|
|
2770
|
+
resolve-from@4.0.0: {}
|
|
2771
|
+
|
|
2769
2772
|
rollup@4.60.4:
|
|
2770
2773
|
dependencies:
|
|
2771
2774
|
'@types/estree': 1.0.8
|
|
@@ -2801,14 +2804,17 @@ snapshots:
|
|
|
2801
2804
|
|
|
2802
2805
|
semver@6.3.1: {}
|
|
2803
2806
|
|
|
2807
|
+
semver@7.8.5: {}
|
|
2808
|
+
|
|
2804
2809
|
set-blocking@2.0.0: {}
|
|
2805
2810
|
|
|
2806
2811
|
set-cookie-parser@2.7.2: {}
|
|
2807
2812
|
|
|
2808
|
-
|
|
2813
|
+
shebang-command@2.0.0:
|
|
2809
2814
|
dependencies:
|
|
2810
|
-
|
|
2811
|
-
|
|
2815
|
+
shebang-regex: 3.0.0
|
|
2816
|
+
|
|
2817
|
+
shebang-regex@3.0.0: {}
|
|
2812
2818
|
|
|
2813
2819
|
source-map-js@1.2.1: {}
|
|
2814
2820
|
|
|
@@ -2822,6 +2828,12 @@ snapshots:
|
|
|
2822
2828
|
dependencies:
|
|
2823
2829
|
ansi-regex: 5.0.1
|
|
2824
2830
|
|
|
2831
|
+
strip-json-comments@3.1.1: {}
|
|
2832
|
+
|
|
2833
|
+
supports-color@7.2.0:
|
|
2834
|
+
dependencies:
|
|
2835
|
+
has-flag: 4.0.0
|
|
2836
|
+
|
|
2825
2837
|
swr@2.4.1(react@19.2.6):
|
|
2826
2838
|
dependencies:
|
|
2827
2839
|
dequal: 2.0.3
|
|
@@ -2834,17 +2846,32 @@ snapshots:
|
|
|
2834
2846
|
|
|
2835
2847
|
tapable@2.3.3: {}
|
|
2836
2848
|
|
|
2837
|
-
tiny-invariant@1.3.3: {}
|
|
2838
|
-
|
|
2839
2849
|
tinyglobby@0.2.16:
|
|
2840
2850
|
dependencies:
|
|
2841
2851
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
2842
2852
|
picomatch: 4.0.4
|
|
2843
2853
|
|
|
2844
|
-
|
|
2854
|
+
ts-api-utils@2.5.0(typescript@5.9.3):
|
|
2855
|
+
dependencies:
|
|
2856
|
+
typescript: 5.9.3
|
|
2845
2857
|
|
|
2846
2858
|
tw-animate-css@1.4.0: {}
|
|
2847
2859
|
|
|
2860
|
+
type-check@0.4.0:
|
|
2861
|
+
dependencies:
|
|
2862
|
+
prelude-ls: 1.2.1
|
|
2863
|
+
|
|
2864
|
+
typescript-eslint@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3):
|
|
2865
|
+
dependencies:
|
|
2866
|
+
'@typescript-eslint/eslint-plugin': 8.68.0(@typescript-eslint/parser@8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3))(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2867
|
+
'@typescript-eslint/parser': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2868
|
+
'@typescript-eslint/typescript-estree': 8.68.0(typescript@5.9.3)
|
|
2869
|
+
'@typescript-eslint/utils': 8.68.0(eslint@9.39.5(jiti@2.7.0))(typescript@5.9.3)
|
|
2870
|
+
eslint: 9.39.5(jiti@2.7.0)
|
|
2871
|
+
typescript: 5.9.3
|
|
2872
|
+
transitivePeerDependencies:
|
|
2873
|
+
- supports-color
|
|
2874
|
+
|
|
2848
2875
|
typescript@5.9.3: {}
|
|
2849
2876
|
|
|
2850
2877
|
undici-types@7.24.6: {}
|
|
@@ -2855,51 +2882,14 @@ snapshots:
|
|
|
2855
2882
|
escalade: 3.2.0
|
|
2856
2883
|
picocolors: 1.1.1
|
|
2857
2884
|
|
|
2858
|
-
|
|
2885
|
+
uri-js@4.4.1:
|
|
2859
2886
|
dependencies:
|
|
2860
|
-
|
|
2861
|
-
tslib: 2.8.1
|
|
2862
|
-
optionalDependencies:
|
|
2863
|
-
'@types/react': 19.2.15
|
|
2864
|
-
|
|
2865
|
-
use-sidecar@1.1.3(@types/react@19.2.15)(react@19.2.6):
|
|
2866
|
-
dependencies:
|
|
2867
|
-
detect-node-es: 1.1.0
|
|
2868
|
-
react: 19.2.6
|
|
2869
|
-
tslib: 2.8.1
|
|
2870
|
-
optionalDependencies:
|
|
2871
|
-
'@types/react': 19.2.15
|
|
2887
|
+
punycode: 2.3.1
|
|
2872
2888
|
|
|
2873
2889
|
use-sync-external-store@1.6.0(react@19.2.6):
|
|
2874
2890
|
dependencies:
|
|
2875
2891
|
react: 19.2.6
|
|
2876
2892
|
|
|
2877
|
-
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
|
|
2878
|
-
dependencies:
|
|
2879
|
-
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
|
|
2880
|
-
react: 19.2.6
|
|
2881
|
-
react-dom: 19.2.6(react@19.2.6)
|
|
2882
|
-
transitivePeerDependencies:
|
|
2883
|
-
- '@types/react'
|
|
2884
|
-
- '@types/react-dom'
|
|
2885
|
-
|
|
2886
|
-
victory-vendor@37.3.6:
|
|
2887
|
-
dependencies:
|
|
2888
|
-
'@types/d3-array': 3.2.2
|
|
2889
|
-
'@types/d3-ease': 3.0.2
|
|
2890
|
-
'@types/d3-interpolate': 3.0.4
|
|
2891
|
-
'@types/d3-scale': 4.0.9
|
|
2892
|
-
'@types/d3-shape': 3.1.8
|
|
2893
|
-
'@types/d3-time': 3.0.4
|
|
2894
|
-
'@types/d3-timer': 3.0.2
|
|
2895
|
-
d3-array: 3.2.4
|
|
2896
|
-
d3-ease: 3.0.1
|
|
2897
|
-
d3-interpolate: 3.0.1
|
|
2898
|
-
d3-scale: 4.0.2
|
|
2899
|
-
d3-shape: 3.2.0
|
|
2900
|
-
d3-time: 3.1.0
|
|
2901
|
-
d3-timer: 3.0.1
|
|
2902
|
-
|
|
2903
2893
|
vite@6.4.2(@types/node@25.9.1)(jiti@2.7.0)(lightningcss@1.32.0):
|
|
2904
2894
|
dependencies:
|
|
2905
2895
|
esbuild: 0.25.12
|
|
@@ -2916,6 +2906,12 @@ snapshots:
|
|
|
2916
2906
|
|
|
2917
2907
|
which-module@2.0.1: {}
|
|
2918
2908
|
|
|
2909
|
+
which@2.0.2:
|
|
2910
|
+
dependencies:
|
|
2911
|
+
isexe: 2.0.0
|
|
2912
|
+
|
|
2913
|
+
word-wrap@1.2.5: {}
|
|
2914
|
+
|
|
2919
2915
|
wrap-ansi@6.2.0:
|
|
2920
2916
|
dependencies:
|
|
2921
2917
|
ansi-styles: 4.3.0
|
|
@@ -2944,3 +2940,5 @@ snapshots:
|
|
|
2944
2940
|
which-module: 2.0.1
|
|
2945
2941
|
y18n: 4.0.3
|
|
2946
2942
|
yargs-parser: 18.1.3
|
|
2943
|
+
|
|
2944
|
+
yocto-queue@0.1.0: {}
|