claude-smart 0.2.45 → 0.2.46
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/.claude-plugin/marketplace.json +3 -3
- package/README.md +34 -5
- package/bin/claude-smart.js +295 -5
- package/package.json +22 -3
- package/plugin/.claude-plugin/plugin.json +4 -2
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/README.md +22 -2
- package/plugin/commands/clear-all.md +1 -0
- package/plugin/commands/dashboard.md +1 -0
- package/plugin/commands/learn.md +1 -0
- package/plugin/commands/restart.md +1 -0
- package/plugin/commands/show.md +1 -0
- package/plugin/dashboard/app/configure/env/page.tsx +40 -14
- package/plugin/dashboard/app/configure/server/page.tsx +51 -1
- package/plugin/dashboard/app/preferences/[id]/page.tsx +8 -8
- package/plugin/dashboard/app/skills/project/[id]/page.tsx +7 -3
- package/plugin/dashboard/app/skills/shared/[id]/page.tsx +10 -3
- package/plugin/dashboard/lib/claude-settings-file.ts +20 -10
- package/plugin/dashboard/lib/reflexio-client.ts +16 -0
- package/plugin/dashboard/lib/status.ts +10 -3
- package/plugin/dashboard/lib/types.ts +18 -6
- package/plugin/hooks/codex-hooks.json +0 -1
- package/plugin/opencode/assistant-buffer.ts +108 -0
- package/plugin/opencode/dist/assistant-buffer.js +96 -0
- package/plugin/opencode/dist/internal.js +12 -0
- package/plugin/opencode/dist/payload.js +85 -0
- package/plugin/opencode/dist/server.mjs +158 -0
- package/plugin/opencode/internal.ts +18 -0
- package/plugin/opencode/package.json +3 -0
- package/plugin/opencode/payload.ts +90 -0
- package/plugin/opencode/server.mts +174 -0
- package/plugin/opencode/tsconfig.json +13 -0
- package/plugin/pyproject.toml +20 -3
- package/plugin/scripts/_lib.sh +5 -1
- package/plugin/scripts/backend-service.sh +22 -2
- package/plugin/scripts/ensure-plugin-root.sh +4 -4
- package/plugin/scripts/hook_entry.sh +1 -1
- package/plugin/scripts/opencode-claude-compat +4 -0
- package/plugin/scripts/opencode-claude-compat.cmd +3 -0
- package/plugin/scripts/opencode-claude-compat.js +225 -0
- package/plugin/scripts/smart-install.sh +10 -8
- package/plugin/src/README.md +1 -1
- package/plugin/src/claude_smart/cli.py +304 -6
- package/plugin/src/claude_smart/env_config.py +12 -4
- package/plugin/src/claude_smart/events/session_start.py +26 -7
- package/plugin/src/claude_smart/events/stop.py +1 -1
- package/plugin/src/claude_smart/ids.py +1 -1
- package/plugin/src/claude_smart/reflexio_adapter.py +5 -5
- package/plugin/src/claude_smart/runtime.py +7 -1
- package/plugin/uv.lock +1 -1
- package/plugin/vendor/reflexio/.env.example +54 -30
- package/plugin/vendor/reflexio/README.md +14 -8
- package/plugin/vendor/reflexio/pyproject.toml +13 -1
- package/plugin/vendor/reflexio/reflexio/README.md +1 -0
- package/plugin/vendor/reflexio/reflexio/cli/README.md +9 -7
- package/plugin/vendor/reflexio/reflexio/cli/__main__.py +10 -1
- package/plugin/vendor/reflexio/reflexio/cli/bootstrap_config.py +22 -5
- package/plugin/vendor/reflexio/reflexio/cli/commands/interactions.py +34 -4
- package/plugin/vendor/reflexio/reflexio/cli/commands/profiles.py +12 -7
- package/plugin/vendor/reflexio/reflexio/cli/commands/services.py +13 -6
- package/plugin/vendor/reflexio/reflexio/cli/commands/setup_cmd.py +210 -50
- package/plugin/vendor/reflexio/reflexio/cli/commands/shortcuts.py +15 -2
- package/plugin/vendor/reflexio/reflexio/cli/env_loader.py +292 -22
- package/plugin/vendor/reflexio/reflexio/cli/log_format.py +29 -4
- package/plugin/vendor/reflexio/reflexio/cli/run_services.py +17 -8
- package/plugin/vendor/reflexio/reflexio/cli/stop_services.py +13 -10
- package/plugin/vendor/reflexio/reflexio/client/client.py +57 -13
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/README.md +135 -257
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/npm/openclaw-smart/bin/openclaw-smart.js +13 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/npm/openclaw-smart/package.json +15 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/README.md +38 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/index.ts +151 -110
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/openclaw.plugin.json +20 -10
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/package.json +28 -6
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/pyproject.toml +42 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/_lib.sh +371 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/backend-log-runner.sh +33 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/backend-service.sh +271 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/cli.sh +68 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/dashboard-open.sh +15 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/ensure-plugin-root.sh +84 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/hook_entry.sh +106 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/npm-cli.js +219 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/scripts/smart-install.sh +269 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/clear-all/SKILL.md +8 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/dashboard/SKILL.md +8 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/learn/SKILL.md +10 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/reflexio/SKILL.md +15 -44
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/restart/SKILL.md +6 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/skills/show/SKILL.md +8 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/cli.py +634 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/context_format.py +224 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/context_inject.py +79 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/__init__.py +0 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/after_tool_call.py +160 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/agent_end.py +187 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/before_prompt_build.py +69 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/before_tool_call.py +30 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/session_end.py +36 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/events/session_start.py +130 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/hook.py +131 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/ids.py +94 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/internal_call.py +75 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/oc_cite.py +196 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/optimizer_assistant.py +272 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/publish.py +96 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/query_compose.py +66 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/reflexio_adapter.py +336 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/runtime.py +47 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/stall_banner.py +61 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/src/openclaw_smart/state.py +323 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/__init__.py +0 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/integration/__init__.py +0 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/integration/test_e2e_session_loop.py +190 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/integration/test_publish_to_local_reflexio_integration.py +112 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/integration/test_recursion_guard_integration.py +86 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/integration/test_search_inject_integration.py +144 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_cli.py +184 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_after_tool_call.py +142 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_agent_end.py +233 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_before_prompt_build.py +116 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_before_tool_call.py +35 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_session_end.py +47 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_events_session_start.py +109 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_hook_dispatch.py +117 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_ids.py +41 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_internal_call.py +50 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_oc_cite.py +88 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_publish.py +48 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_query_compose.py +48 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_reflexio_adapter.py +188 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_runtime.py +41 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests/test_state.py +235 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests-ts/__mocks__/plugin-entry-stub.ts +6 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests-ts/test_npm_cli.test.ts +56 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tests-ts/test_shim_dispatch.test.ts +171 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/tsconfig.build.json +18 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/{tsconfig.json → plugin/tsconfig.json} +2 -2
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/uv.lock +3835 -0
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/vitest.config.ts +18 -0
- package/plugin/vendor/reflexio/reflexio/lib/_agent_playbook.py +238 -10
- package/plugin/vendor/reflexio/reflexio/lib/_config.py +11 -4
- package/plugin/vendor/reflexio/reflexio/lib/_generation.py +16 -5
- package/plugin/vendor/reflexio/reflexio/lib/_lineage_parity_readers.py +187 -0
- package/plugin/vendor/reflexio/reflexio/lib/_profiles.py +198 -6
- package/plugin/vendor/reflexio/reflexio/lib/_reflection.py +1 -1
- package/plugin/vendor/reflexio/reflexio/lib/_search.py +29 -20
- package/plugin/vendor/reflexio/reflexio/lib/_user_playbook.py +2 -1
- package/plugin/vendor/reflexio/reflexio/models/api_schema/domain/entities.py +127 -38
- package/plugin/vendor/reflexio/reflexio/models/api_schema/domain/enums.py +4 -0
- package/plugin/vendor/reflexio/reflexio/models/api_schema/eval_overview_schema.py +64 -41
- package/plugin/vendor/reflexio/reflexio/models/api_schema/internal_schema.py +19 -0
- package/plugin/vendor/reflexio/reflexio/models/api_schema/pending_tool_call_schema.py +12 -5
- package/plugin/vendor/reflexio/reflexio/models/api_schema/retriever_schema.py +52 -0
- package/plugin/vendor/reflexio/reflexio/models/api_schema/ui/converters.py +5 -1
- package/plugin/vendor/reflexio/reflexio/models/api_schema/ui/entities.py +5 -1
- package/plugin/vendor/reflexio/reflexio/models/config_schema.py +88 -7
- package/plugin/vendor/reflexio/reflexio/models/structured_output.py +148 -0
- package/plugin/vendor/reflexio/reflexio/server/OVERVIEW.md +3 -3
- package/plugin/vendor/reflexio/reflexio/server/README.md +45 -32
- package/plugin/vendor/reflexio/reflexio/server/__init__.py +29 -5
- package/plugin/vendor/reflexio/reflexio/server/__main__.py +2 -2
- package/plugin/vendor/reflexio/reflexio/server/_auth.py +65 -2
- package/plugin/vendor/reflexio/reflexio/server/api.py +734 -85
- package/plugin/vendor/reflexio/reflexio/server/api_endpoints/precondition_checks.py +7 -0
- package/plugin/vendor/reflexio/reflexio/server/api_endpoints/request_context.py +3 -1
- package/plugin/vendor/reflexio/reflexio/server/billing_meter.py +173 -0
- package/plugin/vendor/reflexio/reflexio/server/billing_signals.py +64 -0
- package/plugin/vendor/reflexio/reflexio/server/cache/reflexio_cache.py +46 -16
- package/plugin/vendor/reflexio/reflexio/server/env_utils.py +65 -0
- package/plugin/vendor/reflexio/reflexio/server/llm/embedding_service.py +19 -4
- package/plugin/vendor/reflexio/reflexio/server/llm/litellm_client.py +264 -77
- package/plugin/vendor/reflexio/reflexio/server/llm/llm_utils.py +69 -7
- package/plugin/vendor/reflexio/reflexio/server/llm/providers/embedding_service_provider.py +75 -16
- package/plugin/vendor/reflexio/reflexio/server/llm/providers/openclaw_provider.py +280 -0
- package/plugin/vendor/reflexio/reflexio/server/llm/token_accounting.py +48 -0
- package/plugin/vendor/reflexio/reflexio/server/llm/tools.py +107 -17
- package/plugin/vendor/reflexio/reflexio/server/operation_limiter.py +360 -4
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/memory_reflection/v1.6.0.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/memory_reflection/v1.7.0.prompt.md +85 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_aggregation/v2.2.0.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_aggregation/v2.3.0.prompt.md +253 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_consolidation/v2.3.2.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_consolidation/v2.3.3.prompt.md +74 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_context/v4.2.3.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_context/v4.3.0.prompt.md +266 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_context/v4.4.0.prompt.md +266 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_context_expert/v3.3.0.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_context_expert/v3.4.0.prompt.md +137 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_main/v1.2.0.prompt.md +1 -1
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/playbook_extraction_main/v1.3.0.prompt.md +34 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/profile_update_instruction_start/v1.0.0.prompt.md +5 -12
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/profile_update_instruction_start/v1.1.0.prompt.md +5 -12
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/profile_update_instruction_start/v1.2.0.prompt.md +155 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_bank/tagging/v1.0.0.prompt.md +23 -0
- package/plugin/vendor/reflexio/reflexio/server/prompt/prompt_manager.py +89 -32
- package/plugin/vendor/reflexio/reflexio/server/services/README.md +26 -11
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/README.md +22 -0
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/__init__.py +1 -0
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/agent_success_evaluation_constants.py +4 -2
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/agent_success_evaluation_utils.py +1 -0
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/components/__init__.py +7 -0
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/{agent_success_evaluator.py → components/evaluator.py} +3 -16
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/regen_jobs.py +28 -72
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/{group_evaluation_runner.py → runner.py} +12 -10
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/{delayed_group_evaluator.py → scheduler.py} +10 -2
- package/plugin/vendor/reflexio/reflexio/server/services/agent_success_evaluation/{agent_success_evaluation_service.py → service.py} +36 -1
- package/plugin/vendor/reflexio/reflexio/server/services/base_generation_service.py +160 -0
- package/plugin/vendor/reflexio/reflexio/server/services/configurator/base_configurator.py +5 -0
- package/plugin/vendor/reflexio/reflexio/server/services/deduplication_utils.py +1 -1
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/README.md +9 -0
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/components/__init__.py +0 -0
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/{rule_attribution.py → components/rule_attribution.py} +10 -9
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/eval_sampler.py +15 -24
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/service.py +238 -164
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/README.md +31 -0
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/outcome.py +13 -3
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/pending_tool_call_dispatch.py +3 -2
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/resumable_agent.py +32 -118
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/resume_worker.py +39 -16
- package/plugin/vendor/reflexio/reflexio/server/services/generation_service.py +105 -23
- package/plugin/vendor/reflexio/reflexio/server/services/lineage/__init__.py +0 -0
- package/plugin/vendor/reflexio/reflexio/server/services/lineage/gc_scheduler.py +193 -0
- package/plugin/vendor/reflexio/reflexio/server/services/lineage/resolve.py +98 -0
- package/plugin/vendor/reflexio/reflexio/server/services/operation_state_utils.py +26 -0
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/README.md +11 -12
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/components/__init__.py +5 -0
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/{playbook_aggregator.py → components/aggregator.py} +316 -178
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/{playbook_consolidator.py → components/consolidator.py} +168 -62
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/{playbook_extractor.py → components/extractor.py} +5 -1
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/playbook_edit_apply.py +74 -0
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/playbook_service_utils.py +33 -3
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/{playbook_generation_service.py → service.py} +121 -19
- package/plugin/vendor/reflexio/reflexio/server/services/playbook/user_detail_stripping.py +84 -0
- package/plugin/vendor/reflexio/reflexio/server/services/playbook_optimizer/README.md +10 -0
- package/plugin/vendor/reflexio/reflexio/server/services/playbook_optimizer/models.py +2 -1
- package/plugin/vendor/reflexio/reflexio/server/services/playbook_optimizer/optimizer.py +178 -30
- package/plugin/vendor/reflexio/reflexio/server/services/pre_retrieval/README.md +9 -0
- package/plugin/vendor/reflexio/reflexio/server/services/profile/components/__init__.py +17 -0
- package/plugin/vendor/reflexio/reflexio/server/services/profile/{profile_deduplicator.py → components/consolidator.py} +7 -6
- package/plugin/vendor/reflexio/reflexio/server/services/profile/{profile_extractor.py → components/extractor.py} +30 -22
- package/plugin/vendor/reflexio/reflexio/server/services/profile/profile_generation_service_utils.py +6 -13
- package/plugin/vendor/reflexio/reflexio/server/services/profile/{profile_generation_service.py → service.py} +32 -50
- package/plugin/vendor/reflexio/reflexio/server/services/reflection/__init__.py +4 -8
- package/plugin/vendor/reflexio/reflexio/server/services/reflection/components/__init__.py +7 -0
- package/plugin/vendor/reflexio/reflexio/server/services/reflection/reflection_service_utils.py +12 -1
- package/plugin/vendor/reflexio/reflexio/server/services/reflection/{reflection_service.py → service.py} +36 -16
- package/plugin/vendor/reflexio/reflexio/server/services/retrieval/relevance_floor.py +83 -6
- package/plugin/vendor/reflexio/reflexio/server/services/service_utils.py +36 -1
- package/plugin/vendor/reflexio/reflexio/server/services/shadow_comparison/README.md +8 -0
- package/plugin/vendor/reflexio/reflexio/server/services/shadow_comparison/outcome.py +1 -2
- package/plugin/vendor/reflexio/reflexio/server/services/storage/error.py +27 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/retention.py +9 -9
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/__init__.py +2 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_agent_run.py +4 -1
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_base.py +642 -197
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_extras.py +61 -104
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_lineage.py +628 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_operations.py +38 -6
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_playbook.py +978 -184
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_profiles.py +519 -128
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_requests.py +77 -3
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_shadow_verdicts.py +23 -9
- package/plugin/vendor/reflexio/reflexio/server/services/storage/sqlite_storage/_stall_state.py +5 -2
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/__init__.py +131 -20
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_agent_run.py +2 -8
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_base.py +5 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_extras.py +36 -53
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_lineage.py +215 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_operations.py +20 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_playbook.py +243 -7
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_profiles.py +121 -1
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_requests.py +60 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_retrieval_log.py +51 -0
- package/plugin/vendor/reflexio/reflexio/server/services/storage/storage_base/_shadow_verdicts.py +17 -0
- package/plugin/vendor/reflexio/reflexio/server/services/tagging/README.md +8 -0
- package/plugin/vendor/reflexio/reflexio/server/services/tagging/__init__.py +1 -0
- package/plugin/vendor/reflexio/reflexio/server/services/tagging/service.py +200 -0
- package/plugin/vendor/reflexio/reflexio/server/services/tagging/tagging_scheduler.py +149 -0
- package/plugin/vendor/reflexio/reflexio/server/services/unified_search_service.py +229 -32
- package/plugin/vendor/reflexio/reflexio/server/site_var/README.md +2 -1
- package/plugin/vendor/reflexio/reflexio/server/site_var/feature_flags.py +120 -1
- package/plugin/vendor/reflexio/reflexio/server/site_var/site_var_sources/feature_flags.json +4 -0
- package/plugin/vendor/reflexio/reflexio/server/site_var/site_var_sources/search_settings.json +5 -0
- package/plugin/vendor/reflexio/reflexio/server/tracing.py +30 -0
- package/plugin/vendor/reflexio/reflexio/server/usage_metrics.py +18 -0
- package/plugin/vendor/reflexio/reflexio/test_support/llm_mock.py +61 -26
- package/plugin/vendor/reflexio/reflexio/test_support/llm_model_registry.py +41 -4
- package/scripts/setup-claude-smart.sh +8 -3
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/TESTING.md +0 -517
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/hook/handler.js +0 -473
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/package-lock.json +0 -2156
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/package.json +0 -18
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/hook/handler.ts +0 -241
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/hook/setup.ts +0 -140
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/lib/publish.ts +0 -113
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/lib/search.ts +0 -52
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/lib/server.ts +0 -103
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/lib/sqlite-buffer.ts +0 -156
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/lib/user-id.ts +0 -134
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/plugin/rules/reflexio.md +0 -24
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/publish_clawhub.sh +0 -278
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/references/HOOK.md +0 -164
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/scripts/install.sh +0 -36
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/scripts/uninstall.sh +0 -35
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/publish.test.ts +0 -27
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/search.test.ts +0 -31
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/server.test.ts +0 -42
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/setup.test.ts +0 -49
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/sqlite-buffer.test.ts +0 -91
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/tests/user-id.test.ts +0 -50
- package/plugin/vendor/reflexio/reflexio/integrations/openclaw/vitest.config.ts +0 -13
- package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/group_aggregation.py +0 -192
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/invariants.py +0 -303
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/plan.py +0 -138
- package/plugin/vendor/reflexio/reflexio/server/services/extraction/tools.py +0 -1125
- /package/plugin/vendor/reflexio/reflexio/integrations/{__init__.py → openclaw/plugin/src/openclaw_smart/__init__.py} +0 -0
- /package/plugin/vendor/reflexio/reflexio/integrations/openclaw/{types → plugin/types}/openclaw.d.ts +0 -0
- /package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/{distribution.py → components/distribution.py} +0 -0
- /package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/{hero_state.py → components/hero_state.py} +0 -0
- /package/plugin/vendor/reflexio/reflexio/server/services/evaluation_overview/{shadow_aggregation.py → components/shadow_aggregation.py} +0 -0
- /package/plugin/vendor/reflexio/reflexio/server/services/reflection/{reflection_extractor.py → components/extractor.py} +0 -0
|
@@ -1,2156 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "openclaw-federated-dev",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "openclaw-federated-dev",
|
|
9
|
-
"version": "0.1.0",
|
|
10
|
-
"devDependencies": {
|
|
11
|
-
"@types/better-sqlite3": "^7.0.0",
|
|
12
|
-
"@types/node": "^20.0.0",
|
|
13
|
-
"better-sqlite3": "^11.0.0",
|
|
14
|
-
"typescript": "^5.0.0",
|
|
15
|
-
"vitest": "^3.0.0"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"node_modules/@esbuild/aix-ppc64": {
|
|
19
|
-
"version": "0.27.7",
|
|
20
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
|
|
21
|
-
"integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
|
|
22
|
-
"cpu": [
|
|
23
|
-
"ppc64"
|
|
24
|
-
],
|
|
25
|
-
"dev": true,
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"optional": true,
|
|
28
|
-
"os": [
|
|
29
|
-
"aix"
|
|
30
|
-
],
|
|
31
|
-
"engines": {
|
|
32
|
-
"node": ">=18"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"node_modules/@esbuild/android-arm": {
|
|
36
|
-
"version": "0.27.7",
|
|
37
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
|
|
38
|
-
"integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
|
|
39
|
-
"cpu": [
|
|
40
|
-
"arm"
|
|
41
|
-
],
|
|
42
|
-
"dev": true,
|
|
43
|
-
"license": "MIT",
|
|
44
|
-
"optional": true,
|
|
45
|
-
"os": [
|
|
46
|
-
"android"
|
|
47
|
-
],
|
|
48
|
-
"engines": {
|
|
49
|
-
"node": ">=18"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"node_modules/@esbuild/android-arm64": {
|
|
53
|
-
"version": "0.27.7",
|
|
54
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
|
|
55
|
-
"integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
|
|
56
|
-
"cpu": [
|
|
57
|
-
"arm64"
|
|
58
|
-
],
|
|
59
|
-
"dev": true,
|
|
60
|
-
"license": "MIT",
|
|
61
|
-
"optional": true,
|
|
62
|
-
"os": [
|
|
63
|
-
"android"
|
|
64
|
-
],
|
|
65
|
-
"engines": {
|
|
66
|
-
"node": ">=18"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"node_modules/@esbuild/android-x64": {
|
|
70
|
-
"version": "0.27.7",
|
|
71
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
|
|
72
|
-
"integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
|
|
73
|
-
"cpu": [
|
|
74
|
-
"x64"
|
|
75
|
-
],
|
|
76
|
-
"dev": true,
|
|
77
|
-
"license": "MIT",
|
|
78
|
-
"optional": true,
|
|
79
|
-
"os": [
|
|
80
|
-
"android"
|
|
81
|
-
],
|
|
82
|
-
"engines": {
|
|
83
|
-
"node": ">=18"
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
"node_modules/@esbuild/darwin-arm64": {
|
|
87
|
-
"version": "0.27.7",
|
|
88
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
|
|
89
|
-
"integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
|
|
90
|
-
"cpu": [
|
|
91
|
-
"arm64"
|
|
92
|
-
],
|
|
93
|
-
"dev": true,
|
|
94
|
-
"license": "MIT",
|
|
95
|
-
"optional": true,
|
|
96
|
-
"os": [
|
|
97
|
-
"darwin"
|
|
98
|
-
],
|
|
99
|
-
"engines": {
|
|
100
|
-
"node": ">=18"
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"node_modules/@esbuild/darwin-x64": {
|
|
104
|
-
"version": "0.27.7",
|
|
105
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
|
|
106
|
-
"integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
|
|
107
|
-
"cpu": [
|
|
108
|
-
"x64"
|
|
109
|
-
],
|
|
110
|
-
"dev": true,
|
|
111
|
-
"license": "MIT",
|
|
112
|
-
"optional": true,
|
|
113
|
-
"os": [
|
|
114
|
-
"darwin"
|
|
115
|
-
],
|
|
116
|
-
"engines": {
|
|
117
|
-
"node": ">=18"
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"node_modules/@esbuild/freebsd-arm64": {
|
|
121
|
-
"version": "0.27.7",
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
|
|
123
|
-
"integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
|
|
124
|
-
"cpu": [
|
|
125
|
-
"arm64"
|
|
126
|
-
],
|
|
127
|
-
"dev": true,
|
|
128
|
-
"license": "MIT",
|
|
129
|
-
"optional": true,
|
|
130
|
-
"os": [
|
|
131
|
-
"freebsd"
|
|
132
|
-
],
|
|
133
|
-
"engines": {
|
|
134
|
-
"node": ">=18"
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"node_modules/@esbuild/freebsd-x64": {
|
|
138
|
-
"version": "0.27.7",
|
|
139
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
|
|
140
|
-
"integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
|
|
141
|
-
"cpu": [
|
|
142
|
-
"x64"
|
|
143
|
-
],
|
|
144
|
-
"dev": true,
|
|
145
|
-
"license": "MIT",
|
|
146
|
-
"optional": true,
|
|
147
|
-
"os": [
|
|
148
|
-
"freebsd"
|
|
149
|
-
],
|
|
150
|
-
"engines": {
|
|
151
|
-
"node": ">=18"
|
|
152
|
-
}
|
|
153
|
-
},
|
|
154
|
-
"node_modules/@esbuild/linux-arm": {
|
|
155
|
-
"version": "0.27.7",
|
|
156
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
|
|
157
|
-
"integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
|
|
158
|
-
"cpu": [
|
|
159
|
-
"arm"
|
|
160
|
-
],
|
|
161
|
-
"dev": true,
|
|
162
|
-
"license": "MIT",
|
|
163
|
-
"optional": true,
|
|
164
|
-
"os": [
|
|
165
|
-
"linux"
|
|
166
|
-
],
|
|
167
|
-
"engines": {
|
|
168
|
-
"node": ">=18"
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
"node_modules/@esbuild/linux-arm64": {
|
|
172
|
-
"version": "0.27.7",
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
|
|
174
|
-
"integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
|
|
175
|
-
"cpu": [
|
|
176
|
-
"arm64"
|
|
177
|
-
],
|
|
178
|
-
"dev": true,
|
|
179
|
-
"license": "MIT",
|
|
180
|
-
"optional": true,
|
|
181
|
-
"os": [
|
|
182
|
-
"linux"
|
|
183
|
-
],
|
|
184
|
-
"engines": {
|
|
185
|
-
"node": ">=18"
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
|
-
"node_modules/@esbuild/linux-ia32": {
|
|
189
|
-
"version": "0.27.7",
|
|
190
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
|
|
191
|
-
"integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
|
|
192
|
-
"cpu": [
|
|
193
|
-
"ia32"
|
|
194
|
-
],
|
|
195
|
-
"dev": true,
|
|
196
|
-
"license": "MIT",
|
|
197
|
-
"optional": true,
|
|
198
|
-
"os": [
|
|
199
|
-
"linux"
|
|
200
|
-
],
|
|
201
|
-
"engines": {
|
|
202
|
-
"node": ">=18"
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
"node_modules/@esbuild/linux-loong64": {
|
|
206
|
-
"version": "0.27.7",
|
|
207
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
|
|
208
|
-
"integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
|
|
209
|
-
"cpu": [
|
|
210
|
-
"loong64"
|
|
211
|
-
],
|
|
212
|
-
"dev": true,
|
|
213
|
-
"license": "MIT",
|
|
214
|
-
"optional": true,
|
|
215
|
-
"os": [
|
|
216
|
-
"linux"
|
|
217
|
-
],
|
|
218
|
-
"engines": {
|
|
219
|
-
"node": ">=18"
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
|
-
"node_modules/@esbuild/linux-mips64el": {
|
|
223
|
-
"version": "0.27.7",
|
|
224
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
|
|
225
|
-
"integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
|
|
226
|
-
"cpu": [
|
|
227
|
-
"mips64el"
|
|
228
|
-
],
|
|
229
|
-
"dev": true,
|
|
230
|
-
"license": "MIT",
|
|
231
|
-
"optional": true,
|
|
232
|
-
"os": [
|
|
233
|
-
"linux"
|
|
234
|
-
],
|
|
235
|
-
"engines": {
|
|
236
|
-
"node": ">=18"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
"node_modules/@esbuild/linux-ppc64": {
|
|
240
|
-
"version": "0.27.7",
|
|
241
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
|
|
242
|
-
"integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
|
|
243
|
-
"cpu": [
|
|
244
|
-
"ppc64"
|
|
245
|
-
],
|
|
246
|
-
"dev": true,
|
|
247
|
-
"license": "MIT",
|
|
248
|
-
"optional": true,
|
|
249
|
-
"os": [
|
|
250
|
-
"linux"
|
|
251
|
-
],
|
|
252
|
-
"engines": {
|
|
253
|
-
"node": ">=18"
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
"node_modules/@esbuild/linux-riscv64": {
|
|
257
|
-
"version": "0.27.7",
|
|
258
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
|
|
259
|
-
"integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
|
|
260
|
-
"cpu": [
|
|
261
|
-
"riscv64"
|
|
262
|
-
],
|
|
263
|
-
"dev": true,
|
|
264
|
-
"license": "MIT",
|
|
265
|
-
"optional": true,
|
|
266
|
-
"os": [
|
|
267
|
-
"linux"
|
|
268
|
-
],
|
|
269
|
-
"engines": {
|
|
270
|
-
"node": ">=18"
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
"node_modules/@esbuild/linux-s390x": {
|
|
274
|
-
"version": "0.27.7",
|
|
275
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
|
|
276
|
-
"integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
|
|
277
|
-
"cpu": [
|
|
278
|
-
"s390x"
|
|
279
|
-
],
|
|
280
|
-
"dev": true,
|
|
281
|
-
"license": "MIT",
|
|
282
|
-
"optional": true,
|
|
283
|
-
"os": [
|
|
284
|
-
"linux"
|
|
285
|
-
],
|
|
286
|
-
"engines": {
|
|
287
|
-
"node": ">=18"
|
|
288
|
-
}
|
|
289
|
-
},
|
|
290
|
-
"node_modules/@esbuild/linux-x64": {
|
|
291
|
-
"version": "0.27.7",
|
|
292
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
|
|
293
|
-
"integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
|
|
294
|
-
"cpu": [
|
|
295
|
-
"x64"
|
|
296
|
-
],
|
|
297
|
-
"dev": true,
|
|
298
|
-
"license": "MIT",
|
|
299
|
-
"optional": true,
|
|
300
|
-
"os": [
|
|
301
|
-
"linux"
|
|
302
|
-
],
|
|
303
|
-
"engines": {
|
|
304
|
-
"node": ">=18"
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
"node_modules/@esbuild/netbsd-arm64": {
|
|
308
|
-
"version": "0.27.7",
|
|
309
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
|
|
310
|
-
"integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
|
|
311
|
-
"cpu": [
|
|
312
|
-
"arm64"
|
|
313
|
-
],
|
|
314
|
-
"dev": true,
|
|
315
|
-
"license": "MIT",
|
|
316
|
-
"optional": true,
|
|
317
|
-
"os": [
|
|
318
|
-
"netbsd"
|
|
319
|
-
],
|
|
320
|
-
"engines": {
|
|
321
|
-
"node": ">=18"
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
"node_modules/@esbuild/netbsd-x64": {
|
|
325
|
-
"version": "0.27.7",
|
|
326
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
|
|
327
|
-
"integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
|
|
328
|
-
"cpu": [
|
|
329
|
-
"x64"
|
|
330
|
-
],
|
|
331
|
-
"dev": true,
|
|
332
|
-
"license": "MIT",
|
|
333
|
-
"optional": true,
|
|
334
|
-
"os": [
|
|
335
|
-
"netbsd"
|
|
336
|
-
],
|
|
337
|
-
"engines": {
|
|
338
|
-
"node": ">=18"
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
"node_modules/@esbuild/openbsd-arm64": {
|
|
342
|
-
"version": "0.27.7",
|
|
343
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
|
|
344
|
-
"integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
|
|
345
|
-
"cpu": [
|
|
346
|
-
"arm64"
|
|
347
|
-
],
|
|
348
|
-
"dev": true,
|
|
349
|
-
"license": "MIT",
|
|
350
|
-
"optional": true,
|
|
351
|
-
"os": [
|
|
352
|
-
"openbsd"
|
|
353
|
-
],
|
|
354
|
-
"engines": {
|
|
355
|
-
"node": ">=18"
|
|
356
|
-
}
|
|
357
|
-
},
|
|
358
|
-
"node_modules/@esbuild/openbsd-x64": {
|
|
359
|
-
"version": "0.27.7",
|
|
360
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
|
|
361
|
-
"integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
|
|
362
|
-
"cpu": [
|
|
363
|
-
"x64"
|
|
364
|
-
],
|
|
365
|
-
"dev": true,
|
|
366
|
-
"license": "MIT",
|
|
367
|
-
"optional": true,
|
|
368
|
-
"os": [
|
|
369
|
-
"openbsd"
|
|
370
|
-
],
|
|
371
|
-
"engines": {
|
|
372
|
-
"node": ">=18"
|
|
373
|
-
}
|
|
374
|
-
},
|
|
375
|
-
"node_modules/@esbuild/openharmony-arm64": {
|
|
376
|
-
"version": "0.27.7",
|
|
377
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
|
|
378
|
-
"integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
|
|
379
|
-
"cpu": [
|
|
380
|
-
"arm64"
|
|
381
|
-
],
|
|
382
|
-
"dev": true,
|
|
383
|
-
"license": "MIT",
|
|
384
|
-
"optional": true,
|
|
385
|
-
"os": [
|
|
386
|
-
"openharmony"
|
|
387
|
-
],
|
|
388
|
-
"engines": {
|
|
389
|
-
"node": ">=18"
|
|
390
|
-
}
|
|
391
|
-
},
|
|
392
|
-
"node_modules/@esbuild/sunos-x64": {
|
|
393
|
-
"version": "0.27.7",
|
|
394
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
|
|
395
|
-
"integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
|
|
396
|
-
"cpu": [
|
|
397
|
-
"x64"
|
|
398
|
-
],
|
|
399
|
-
"dev": true,
|
|
400
|
-
"license": "MIT",
|
|
401
|
-
"optional": true,
|
|
402
|
-
"os": [
|
|
403
|
-
"sunos"
|
|
404
|
-
],
|
|
405
|
-
"engines": {
|
|
406
|
-
"node": ">=18"
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
"node_modules/@esbuild/win32-arm64": {
|
|
410
|
-
"version": "0.27.7",
|
|
411
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
|
|
412
|
-
"integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
|
|
413
|
-
"cpu": [
|
|
414
|
-
"arm64"
|
|
415
|
-
],
|
|
416
|
-
"dev": true,
|
|
417
|
-
"license": "MIT",
|
|
418
|
-
"optional": true,
|
|
419
|
-
"os": [
|
|
420
|
-
"win32"
|
|
421
|
-
],
|
|
422
|
-
"engines": {
|
|
423
|
-
"node": ">=18"
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
"node_modules/@esbuild/win32-ia32": {
|
|
427
|
-
"version": "0.27.7",
|
|
428
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
|
|
429
|
-
"integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
|
|
430
|
-
"cpu": [
|
|
431
|
-
"ia32"
|
|
432
|
-
],
|
|
433
|
-
"dev": true,
|
|
434
|
-
"license": "MIT",
|
|
435
|
-
"optional": true,
|
|
436
|
-
"os": [
|
|
437
|
-
"win32"
|
|
438
|
-
],
|
|
439
|
-
"engines": {
|
|
440
|
-
"node": ">=18"
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
"node_modules/@esbuild/win32-x64": {
|
|
444
|
-
"version": "0.27.7",
|
|
445
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
|
|
446
|
-
"integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
|
|
447
|
-
"cpu": [
|
|
448
|
-
"x64"
|
|
449
|
-
],
|
|
450
|
-
"dev": true,
|
|
451
|
-
"license": "MIT",
|
|
452
|
-
"optional": true,
|
|
453
|
-
"os": [
|
|
454
|
-
"win32"
|
|
455
|
-
],
|
|
456
|
-
"engines": {
|
|
457
|
-
"node": ">=18"
|
|
458
|
-
}
|
|
459
|
-
},
|
|
460
|
-
"node_modules/@jridgewell/sourcemap-codec": {
|
|
461
|
-
"version": "1.5.5",
|
|
462
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
463
|
-
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
464
|
-
"dev": true,
|
|
465
|
-
"license": "MIT"
|
|
466
|
-
},
|
|
467
|
-
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
468
|
-
"version": "4.60.2",
|
|
469
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
|
|
470
|
-
"integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
|
|
471
|
-
"cpu": [
|
|
472
|
-
"arm"
|
|
473
|
-
],
|
|
474
|
-
"dev": true,
|
|
475
|
-
"license": "MIT",
|
|
476
|
-
"optional": true,
|
|
477
|
-
"os": [
|
|
478
|
-
"android"
|
|
479
|
-
]
|
|
480
|
-
},
|
|
481
|
-
"node_modules/@rollup/rollup-android-arm64": {
|
|
482
|
-
"version": "4.60.2",
|
|
483
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
|
|
484
|
-
"integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
|
|
485
|
-
"cpu": [
|
|
486
|
-
"arm64"
|
|
487
|
-
],
|
|
488
|
-
"dev": true,
|
|
489
|
-
"license": "MIT",
|
|
490
|
-
"optional": true,
|
|
491
|
-
"os": [
|
|
492
|
-
"android"
|
|
493
|
-
]
|
|
494
|
-
},
|
|
495
|
-
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
496
|
-
"version": "4.60.2",
|
|
497
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.2.tgz",
|
|
498
|
-
"integrity": "sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==",
|
|
499
|
-
"cpu": [
|
|
500
|
-
"arm64"
|
|
501
|
-
],
|
|
502
|
-
"dev": true,
|
|
503
|
-
"license": "MIT",
|
|
504
|
-
"optional": true,
|
|
505
|
-
"os": [
|
|
506
|
-
"darwin"
|
|
507
|
-
]
|
|
508
|
-
},
|
|
509
|
-
"node_modules/@rollup/rollup-darwin-x64": {
|
|
510
|
-
"version": "4.60.2",
|
|
511
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
|
|
512
|
-
"integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
|
|
513
|
-
"cpu": [
|
|
514
|
-
"x64"
|
|
515
|
-
],
|
|
516
|
-
"dev": true,
|
|
517
|
-
"license": "MIT",
|
|
518
|
-
"optional": true,
|
|
519
|
-
"os": [
|
|
520
|
-
"darwin"
|
|
521
|
-
]
|
|
522
|
-
},
|
|
523
|
-
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
524
|
-
"version": "4.60.2",
|
|
525
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
|
|
526
|
-
"integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
|
|
527
|
-
"cpu": [
|
|
528
|
-
"arm64"
|
|
529
|
-
],
|
|
530
|
-
"dev": true,
|
|
531
|
-
"license": "MIT",
|
|
532
|
-
"optional": true,
|
|
533
|
-
"os": [
|
|
534
|
-
"freebsd"
|
|
535
|
-
]
|
|
536
|
-
},
|
|
537
|
-
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
538
|
-
"version": "4.60.2",
|
|
539
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
|
|
540
|
-
"integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
|
|
541
|
-
"cpu": [
|
|
542
|
-
"x64"
|
|
543
|
-
],
|
|
544
|
-
"dev": true,
|
|
545
|
-
"license": "MIT",
|
|
546
|
-
"optional": true,
|
|
547
|
-
"os": [
|
|
548
|
-
"freebsd"
|
|
549
|
-
]
|
|
550
|
-
},
|
|
551
|
-
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
552
|
-
"version": "4.60.2",
|
|
553
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
|
|
554
|
-
"integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
|
|
555
|
-
"cpu": [
|
|
556
|
-
"arm"
|
|
557
|
-
],
|
|
558
|
-
"dev": true,
|
|
559
|
-
"libc": [
|
|
560
|
-
"glibc"
|
|
561
|
-
],
|
|
562
|
-
"license": "MIT",
|
|
563
|
-
"optional": true,
|
|
564
|
-
"os": [
|
|
565
|
-
"linux"
|
|
566
|
-
]
|
|
567
|
-
},
|
|
568
|
-
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
569
|
-
"version": "4.60.2",
|
|
570
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
|
|
571
|
-
"integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
|
|
572
|
-
"cpu": [
|
|
573
|
-
"arm"
|
|
574
|
-
],
|
|
575
|
-
"dev": true,
|
|
576
|
-
"libc": [
|
|
577
|
-
"musl"
|
|
578
|
-
],
|
|
579
|
-
"license": "MIT",
|
|
580
|
-
"optional": true,
|
|
581
|
-
"os": [
|
|
582
|
-
"linux"
|
|
583
|
-
]
|
|
584
|
-
},
|
|
585
|
-
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
586
|
-
"version": "4.60.2",
|
|
587
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
|
|
588
|
-
"integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
|
|
589
|
-
"cpu": [
|
|
590
|
-
"arm64"
|
|
591
|
-
],
|
|
592
|
-
"dev": true,
|
|
593
|
-
"libc": [
|
|
594
|
-
"glibc"
|
|
595
|
-
],
|
|
596
|
-
"license": "MIT",
|
|
597
|
-
"optional": true,
|
|
598
|
-
"os": [
|
|
599
|
-
"linux"
|
|
600
|
-
]
|
|
601
|
-
},
|
|
602
|
-
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
603
|
-
"version": "4.60.2",
|
|
604
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
|
|
605
|
-
"integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
|
|
606
|
-
"cpu": [
|
|
607
|
-
"arm64"
|
|
608
|
-
],
|
|
609
|
-
"dev": true,
|
|
610
|
-
"libc": [
|
|
611
|
-
"musl"
|
|
612
|
-
],
|
|
613
|
-
"license": "MIT",
|
|
614
|
-
"optional": true,
|
|
615
|
-
"os": [
|
|
616
|
-
"linux"
|
|
617
|
-
]
|
|
618
|
-
},
|
|
619
|
-
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
620
|
-
"version": "4.60.2",
|
|
621
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
|
|
622
|
-
"integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
|
|
623
|
-
"cpu": [
|
|
624
|
-
"loong64"
|
|
625
|
-
],
|
|
626
|
-
"dev": true,
|
|
627
|
-
"libc": [
|
|
628
|
-
"glibc"
|
|
629
|
-
],
|
|
630
|
-
"license": "MIT",
|
|
631
|
-
"optional": true,
|
|
632
|
-
"os": [
|
|
633
|
-
"linux"
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
637
|
-
"version": "4.60.2",
|
|
638
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
|
|
639
|
-
"integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
|
|
640
|
-
"cpu": [
|
|
641
|
-
"loong64"
|
|
642
|
-
],
|
|
643
|
-
"dev": true,
|
|
644
|
-
"libc": [
|
|
645
|
-
"musl"
|
|
646
|
-
],
|
|
647
|
-
"license": "MIT",
|
|
648
|
-
"optional": true,
|
|
649
|
-
"os": [
|
|
650
|
-
"linux"
|
|
651
|
-
]
|
|
652
|
-
},
|
|
653
|
-
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
654
|
-
"version": "4.60.2",
|
|
655
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
|
|
656
|
-
"integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
|
|
657
|
-
"cpu": [
|
|
658
|
-
"ppc64"
|
|
659
|
-
],
|
|
660
|
-
"dev": true,
|
|
661
|
-
"libc": [
|
|
662
|
-
"glibc"
|
|
663
|
-
],
|
|
664
|
-
"license": "MIT",
|
|
665
|
-
"optional": true,
|
|
666
|
-
"os": [
|
|
667
|
-
"linux"
|
|
668
|
-
]
|
|
669
|
-
},
|
|
670
|
-
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
671
|
-
"version": "4.60.2",
|
|
672
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
|
|
673
|
-
"integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
|
|
674
|
-
"cpu": [
|
|
675
|
-
"ppc64"
|
|
676
|
-
],
|
|
677
|
-
"dev": true,
|
|
678
|
-
"libc": [
|
|
679
|
-
"musl"
|
|
680
|
-
],
|
|
681
|
-
"license": "MIT",
|
|
682
|
-
"optional": true,
|
|
683
|
-
"os": [
|
|
684
|
-
"linux"
|
|
685
|
-
]
|
|
686
|
-
},
|
|
687
|
-
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
688
|
-
"version": "4.60.2",
|
|
689
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
|
|
690
|
-
"integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
|
|
691
|
-
"cpu": [
|
|
692
|
-
"riscv64"
|
|
693
|
-
],
|
|
694
|
-
"dev": true,
|
|
695
|
-
"libc": [
|
|
696
|
-
"glibc"
|
|
697
|
-
],
|
|
698
|
-
"license": "MIT",
|
|
699
|
-
"optional": true,
|
|
700
|
-
"os": [
|
|
701
|
-
"linux"
|
|
702
|
-
]
|
|
703
|
-
},
|
|
704
|
-
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
705
|
-
"version": "4.60.2",
|
|
706
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
|
|
707
|
-
"integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
|
|
708
|
-
"cpu": [
|
|
709
|
-
"riscv64"
|
|
710
|
-
],
|
|
711
|
-
"dev": true,
|
|
712
|
-
"libc": [
|
|
713
|
-
"musl"
|
|
714
|
-
],
|
|
715
|
-
"license": "MIT",
|
|
716
|
-
"optional": true,
|
|
717
|
-
"os": [
|
|
718
|
-
"linux"
|
|
719
|
-
]
|
|
720
|
-
},
|
|
721
|
-
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
722
|
-
"version": "4.60.2",
|
|
723
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
|
|
724
|
-
"integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
|
|
725
|
-
"cpu": [
|
|
726
|
-
"s390x"
|
|
727
|
-
],
|
|
728
|
-
"dev": true,
|
|
729
|
-
"libc": [
|
|
730
|
-
"glibc"
|
|
731
|
-
],
|
|
732
|
-
"license": "MIT",
|
|
733
|
-
"optional": true,
|
|
734
|
-
"os": [
|
|
735
|
-
"linux"
|
|
736
|
-
]
|
|
737
|
-
},
|
|
738
|
-
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
739
|
-
"version": "4.60.2",
|
|
740
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
|
|
741
|
-
"integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
|
|
742
|
-
"cpu": [
|
|
743
|
-
"x64"
|
|
744
|
-
],
|
|
745
|
-
"dev": true,
|
|
746
|
-
"libc": [
|
|
747
|
-
"glibc"
|
|
748
|
-
],
|
|
749
|
-
"license": "MIT",
|
|
750
|
-
"optional": true,
|
|
751
|
-
"os": [
|
|
752
|
-
"linux"
|
|
753
|
-
]
|
|
754
|
-
},
|
|
755
|
-
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
756
|
-
"version": "4.60.2",
|
|
757
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
|
|
758
|
-
"integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
|
|
759
|
-
"cpu": [
|
|
760
|
-
"x64"
|
|
761
|
-
],
|
|
762
|
-
"dev": true,
|
|
763
|
-
"libc": [
|
|
764
|
-
"musl"
|
|
765
|
-
],
|
|
766
|
-
"license": "MIT",
|
|
767
|
-
"optional": true,
|
|
768
|
-
"os": [
|
|
769
|
-
"linux"
|
|
770
|
-
]
|
|
771
|
-
},
|
|
772
|
-
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
773
|
-
"version": "4.60.2",
|
|
774
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
|
|
775
|
-
"integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
|
|
776
|
-
"cpu": [
|
|
777
|
-
"x64"
|
|
778
|
-
],
|
|
779
|
-
"dev": true,
|
|
780
|
-
"license": "MIT",
|
|
781
|
-
"optional": true,
|
|
782
|
-
"os": [
|
|
783
|
-
"openbsd"
|
|
784
|
-
]
|
|
785
|
-
},
|
|
786
|
-
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
787
|
-
"version": "4.60.2",
|
|
788
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
|
|
789
|
-
"integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
|
|
790
|
-
"cpu": [
|
|
791
|
-
"arm64"
|
|
792
|
-
],
|
|
793
|
-
"dev": true,
|
|
794
|
-
"license": "MIT",
|
|
795
|
-
"optional": true,
|
|
796
|
-
"os": [
|
|
797
|
-
"openharmony"
|
|
798
|
-
]
|
|
799
|
-
},
|
|
800
|
-
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
801
|
-
"version": "4.60.2",
|
|
802
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
|
|
803
|
-
"integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
|
|
804
|
-
"cpu": [
|
|
805
|
-
"arm64"
|
|
806
|
-
],
|
|
807
|
-
"dev": true,
|
|
808
|
-
"license": "MIT",
|
|
809
|
-
"optional": true,
|
|
810
|
-
"os": [
|
|
811
|
-
"win32"
|
|
812
|
-
]
|
|
813
|
-
},
|
|
814
|
-
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
815
|
-
"version": "4.60.2",
|
|
816
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
|
|
817
|
-
"integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
|
|
818
|
-
"cpu": [
|
|
819
|
-
"ia32"
|
|
820
|
-
],
|
|
821
|
-
"dev": true,
|
|
822
|
-
"license": "MIT",
|
|
823
|
-
"optional": true,
|
|
824
|
-
"os": [
|
|
825
|
-
"win32"
|
|
826
|
-
]
|
|
827
|
-
},
|
|
828
|
-
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
829
|
-
"version": "4.60.2",
|
|
830
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
|
|
831
|
-
"integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
|
|
832
|
-
"cpu": [
|
|
833
|
-
"x64"
|
|
834
|
-
],
|
|
835
|
-
"dev": true,
|
|
836
|
-
"license": "MIT",
|
|
837
|
-
"optional": true,
|
|
838
|
-
"os": [
|
|
839
|
-
"win32"
|
|
840
|
-
]
|
|
841
|
-
},
|
|
842
|
-
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
843
|
-
"version": "4.60.2",
|
|
844
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
|
|
845
|
-
"integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
|
|
846
|
-
"cpu": [
|
|
847
|
-
"x64"
|
|
848
|
-
],
|
|
849
|
-
"dev": true,
|
|
850
|
-
"license": "MIT",
|
|
851
|
-
"optional": true,
|
|
852
|
-
"os": [
|
|
853
|
-
"win32"
|
|
854
|
-
]
|
|
855
|
-
},
|
|
856
|
-
"node_modules/@types/better-sqlite3": {
|
|
857
|
-
"version": "7.6.13",
|
|
858
|
-
"resolved": "https://registry.npmjs.org/@types/better-sqlite3/-/better-sqlite3-7.6.13.tgz",
|
|
859
|
-
"integrity": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==",
|
|
860
|
-
"dev": true,
|
|
861
|
-
"license": "MIT",
|
|
862
|
-
"dependencies": {
|
|
863
|
-
"@types/node": "*"
|
|
864
|
-
}
|
|
865
|
-
},
|
|
866
|
-
"node_modules/@types/chai": {
|
|
867
|
-
"version": "5.2.3",
|
|
868
|
-
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
|
|
869
|
-
"integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
|
|
870
|
-
"dev": true,
|
|
871
|
-
"license": "MIT",
|
|
872
|
-
"dependencies": {
|
|
873
|
-
"@types/deep-eql": "*",
|
|
874
|
-
"assertion-error": "^2.0.1"
|
|
875
|
-
}
|
|
876
|
-
},
|
|
877
|
-
"node_modules/@types/deep-eql": {
|
|
878
|
-
"version": "4.0.2",
|
|
879
|
-
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
880
|
-
"integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
|
|
881
|
-
"dev": true,
|
|
882
|
-
"license": "MIT"
|
|
883
|
-
},
|
|
884
|
-
"node_modules/@types/estree": {
|
|
885
|
-
"version": "1.0.8",
|
|
886
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
887
|
-
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
888
|
-
"dev": true,
|
|
889
|
-
"license": "MIT"
|
|
890
|
-
},
|
|
891
|
-
"node_modules/@types/node": {
|
|
892
|
-
"version": "20.19.39",
|
|
893
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
894
|
-
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
895
|
-
"dev": true,
|
|
896
|
-
"license": "MIT",
|
|
897
|
-
"dependencies": {
|
|
898
|
-
"undici-types": "~6.21.0"
|
|
899
|
-
}
|
|
900
|
-
},
|
|
901
|
-
"node_modules/@vitest/expect": {
|
|
902
|
-
"version": "3.2.4",
|
|
903
|
-
"resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz",
|
|
904
|
-
"integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==",
|
|
905
|
-
"dev": true,
|
|
906
|
-
"license": "MIT",
|
|
907
|
-
"dependencies": {
|
|
908
|
-
"@types/chai": "^5.2.2",
|
|
909
|
-
"@vitest/spy": "3.2.4",
|
|
910
|
-
"@vitest/utils": "3.2.4",
|
|
911
|
-
"chai": "^5.2.0",
|
|
912
|
-
"tinyrainbow": "^2.0.0"
|
|
913
|
-
},
|
|
914
|
-
"funding": {
|
|
915
|
-
"url": "https://opencollective.com/vitest"
|
|
916
|
-
}
|
|
917
|
-
},
|
|
918
|
-
"node_modules/@vitest/mocker": {
|
|
919
|
-
"version": "3.2.4",
|
|
920
|
-
"resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz",
|
|
921
|
-
"integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==",
|
|
922
|
-
"dev": true,
|
|
923
|
-
"license": "MIT",
|
|
924
|
-
"dependencies": {
|
|
925
|
-
"@vitest/spy": "3.2.4",
|
|
926
|
-
"estree-walker": "^3.0.3",
|
|
927
|
-
"magic-string": "^0.30.17"
|
|
928
|
-
},
|
|
929
|
-
"funding": {
|
|
930
|
-
"url": "https://opencollective.com/vitest"
|
|
931
|
-
},
|
|
932
|
-
"peerDependencies": {
|
|
933
|
-
"msw": "^2.4.9",
|
|
934
|
-
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
|
|
935
|
-
},
|
|
936
|
-
"peerDependenciesMeta": {
|
|
937
|
-
"msw": {
|
|
938
|
-
"optional": true
|
|
939
|
-
},
|
|
940
|
-
"vite": {
|
|
941
|
-
"optional": true
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
|
-
},
|
|
945
|
-
"node_modules/@vitest/pretty-format": {
|
|
946
|
-
"version": "3.2.4",
|
|
947
|
-
"resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz",
|
|
948
|
-
"integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==",
|
|
949
|
-
"dev": true,
|
|
950
|
-
"license": "MIT",
|
|
951
|
-
"dependencies": {
|
|
952
|
-
"tinyrainbow": "^2.0.0"
|
|
953
|
-
},
|
|
954
|
-
"funding": {
|
|
955
|
-
"url": "https://opencollective.com/vitest"
|
|
956
|
-
}
|
|
957
|
-
},
|
|
958
|
-
"node_modules/@vitest/runner": {
|
|
959
|
-
"version": "3.2.4",
|
|
960
|
-
"resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz",
|
|
961
|
-
"integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==",
|
|
962
|
-
"dev": true,
|
|
963
|
-
"license": "MIT",
|
|
964
|
-
"dependencies": {
|
|
965
|
-
"@vitest/utils": "3.2.4",
|
|
966
|
-
"pathe": "^2.0.3",
|
|
967
|
-
"strip-literal": "^3.0.0"
|
|
968
|
-
},
|
|
969
|
-
"funding": {
|
|
970
|
-
"url": "https://opencollective.com/vitest"
|
|
971
|
-
}
|
|
972
|
-
},
|
|
973
|
-
"node_modules/@vitest/snapshot": {
|
|
974
|
-
"version": "3.2.4",
|
|
975
|
-
"resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz",
|
|
976
|
-
"integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==",
|
|
977
|
-
"dev": true,
|
|
978
|
-
"license": "MIT",
|
|
979
|
-
"dependencies": {
|
|
980
|
-
"@vitest/pretty-format": "3.2.4",
|
|
981
|
-
"magic-string": "^0.30.17",
|
|
982
|
-
"pathe": "^2.0.3"
|
|
983
|
-
},
|
|
984
|
-
"funding": {
|
|
985
|
-
"url": "https://opencollective.com/vitest"
|
|
986
|
-
}
|
|
987
|
-
},
|
|
988
|
-
"node_modules/@vitest/spy": {
|
|
989
|
-
"version": "3.2.4",
|
|
990
|
-
"resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz",
|
|
991
|
-
"integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==",
|
|
992
|
-
"dev": true,
|
|
993
|
-
"license": "MIT",
|
|
994
|
-
"dependencies": {
|
|
995
|
-
"tinyspy": "^4.0.3"
|
|
996
|
-
},
|
|
997
|
-
"funding": {
|
|
998
|
-
"url": "https://opencollective.com/vitest"
|
|
999
|
-
}
|
|
1000
|
-
},
|
|
1001
|
-
"node_modules/@vitest/utils": {
|
|
1002
|
-
"version": "3.2.4",
|
|
1003
|
-
"resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz",
|
|
1004
|
-
"integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==",
|
|
1005
|
-
"dev": true,
|
|
1006
|
-
"license": "MIT",
|
|
1007
|
-
"dependencies": {
|
|
1008
|
-
"@vitest/pretty-format": "3.2.4",
|
|
1009
|
-
"loupe": "^3.1.4",
|
|
1010
|
-
"tinyrainbow": "^2.0.0"
|
|
1011
|
-
},
|
|
1012
|
-
"funding": {
|
|
1013
|
-
"url": "https://opencollective.com/vitest"
|
|
1014
|
-
}
|
|
1015
|
-
},
|
|
1016
|
-
"node_modules/assertion-error": {
|
|
1017
|
-
"version": "2.0.1",
|
|
1018
|
-
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
|
|
1019
|
-
"integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
|
|
1020
|
-
"dev": true,
|
|
1021
|
-
"license": "MIT",
|
|
1022
|
-
"engines": {
|
|
1023
|
-
"node": ">=12"
|
|
1024
|
-
}
|
|
1025
|
-
},
|
|
1026
|
-
"node_modules/base64-js": {
|
|
1027
|
-
"version": "1.5.1",
|
|
1028
|
-
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
1029
|
-
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
1030
|
-
"dev": true,
|
|
1031
|
-
"funding": [
|
|
1032
|
-
{
|
|
1033
|
-
"type": "github",
|
|
1034
|
-
"url": "https://github.com/sponsors/feross"
|
|
1035
|
-
},
|
|
1036
|
-
{
|
|
1037
|
-
"type": "patreon",
|
|
1038
|
-
"url": "https://www.patreon.com/feross"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"type": "consulting",
|
|
1042
|
-
"url": "https://feross.org/support"
|
|
1043
|
-
}
|
|
1044
|
-
],
|
|
1045
|
-
"license": "MIT"
|
|
1046
|
-
},
|
|
1047
|
-
"node_modules/better-sqlite3": {
|
|
1048
|
-
"version": "11.10.0",
|
|
1049
|
-
"resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-11.10.0.tgz",
|
|
1050
|
-
"integrity": "sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==",
|
|
1051
|
-
"dev": true,
|
|
1052
|
-
"hasInstallScript": true,
|
|
1053
|
-
"license": "MIT",
|
|
1054
|
-
"dependencies": {
|
|
1055
|
-
"bindings": "^1.5.0",
|
|
1056
|
-
"prebuild-install": "^7.1.1"
|
|
1057
|
-
}
|
|
1058
|
-
},
|
|
1059
|
-
"node_modules/bindings": {
|
|
1060
|
-
"version": "1.5.0",
|
|
1061
|
-
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
|
|
1062
|
-
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
|
|
1063
|
-
"dev": true,
|
|
1064
|
-
"license": "MIT",
|
|
1065
|
-
"dependencies": {
|
|
1066
|
-
"file-uri-to-path": "1.0.0"
|
|
1067
|
-
}
|
|
1068
|
-
},
|
|
1069
|
-
"node_modules/bl": {
|
|
1070
|
-
"version": "4.1.0",
|
|
1071
|
-
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
|
|
1072
|
-
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
|
|
1073
|
-
"dev": true,
|
|
1074
|
-
"license": "MIT",
|
|
1075
|
-
"dependencies": {
|
|
1076
|
-
"buffer": "^5.5.0",
|
|
1077
|
-
"inherits": "^2.0.4",
|
|
1078
|
-
"readable-stream": "^3.4.0"
|
|
1079
|
-
}
|
|
1080
|
-
},
|
|
1081
|
-
"node_modules/buffer": {
|
|
1082
|
-
"version": "5.7.1",
|
|
1083
|
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
1084
|
-
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
1085
|
-
"dev": true,
|
|
1086
|
-
"funding": [
|
|
1087
|
-
{
|
|
1088
|
-
"type": "github",
|
|
1089
|
-
"url": "https://github.com/sponsors/feross"
|
|
1090
|
-
},
|
|
1091
|
-
{
|
|
1092
|
-
"type": "patreon",
|
|
1093
|
-
"url": "https://www.patreon.com/feross"
|
|
1094
|
-
},
|
|
1095
|
-
{
|
|
1096
|
-
"type": "consulting",
|
|
1097
|
-
"url": "https://feross.org/support"
|
|
1098
|
-
}
|
|
1099
|
-
],
|
|
1100
|
-
"license": "MIT",
|
|
1101
|
-
"dependencies": {
|
|
1102
|
-
"base64-js": "^1.3.1",
|
|
1103
|
-
"ieee754": "^1.1.13"
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
"node_modules/cac": {
|
|
1107
|
-
"version": "6.7.14",
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
|
|
1109
|
-
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
|
|
1110
|
-
"dev": true,
|
|
1111
|
-
"license": "MIT",
|
|
1112
|
-
"engines": {
|
|
1113
|
-
"node": ">=8"
|
|
1114
|
-
}
|
|
1115
|
-
},
|
|
1116
|
-
"node_modules/chai": {
|
|
1117
|
-
"version": "5.3.3",
|
|
1118
|
-
"resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz",
|
|
1119
|
-
"integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==",
|
|
1120
|
-
"dev": true,
|
|
1121
|
-
"license": "MIT",
|
|
1122
|
-
"dependencies": {
|
|
1123
|
-
"assertion-error": "^2.0.1",
|
|
1124
|
-
"check-error": "^2.1.1",
|
|
1125
|
-
"deep-eql": "^5.0.1",
|
|
1126
|
-
"loupe": "^3.1.0",
|
|
1127
|
-
"pathval": "^2.0.0"
|
|
1128
|
-
},
|
|
1129
|
-
"engines": {
|
|
1130
|
-
"node": ">=18"
|
|
1131
|
-
}
|
|
1132
|
-
},
|
|
1133
|
-
"node_modules/check-error": {
|
|
1134
|
-
"version": "2.1.3",
|
|
1135
|
-
"resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz",
|
|
1136
|
-
"integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==",
|
|
1137
|
-
"dev": true,
|
|
1138
|
-
"license": "MIT",
|
|
1139
|
-
"engines": {
|
|
1140
|
-
"node": ">= 16"
|
|
1141
|
-
}
|
|
1142
|
-
},
|
|
1143
|
-
"node_modules/chownr": {
|
|
1144
|
-
"version": "1.1.4",
|
|
1145
|
-
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
|
|
1146
|
-
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
|
|
1147
|
-
"dev": true,
|
|
1148
|
-
"license": "ISC"
|
|
1149
|
-
},
|
|
1150
|
-
"node_modules/debug": {
|
|
1151
|
-
"version": "4.4.3",
|
|
1152
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1153
|
-
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1154
|
-
"dev": true,
|
|
1155
|
-
"license": "MIT",
|
|
1156
|
-
"dependencies": {
|
|
1157
|
-
"ms": "^2.1.3"
|
|
1158
|
-
},
|
|
1159
|
-
"engines": {
|
|
1160
|
-
"node": ">=6.0"
|
|
1161
|
-
},
|
|
1162
|
-
"peerDependenciesMeta": {
|
|
1163
|
-
"supports-color": {
|
|
1164
|
-
"optional": true
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
},
|
|
1168
|
-
"node_modules/decompress-response": {
|
|
1169
|
-
"version": "6.0.0",
|
|
1170
|
-
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
|
|
1171
|
-
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
|
|
1172
|
-
"dev": true,
|
|
1173
|
-
"license": "MIT",
|
|
1174
|
-
"dependencies": {
|
|
1175
|
-
"mimic-response": "^3.1.0"
|
|
1176
|
-
},
|
|
1177
|
-
"engines": {
|
|
1178
|
-
"node": ">=10"
|
|
1179
|
-
},
|
|
1180
|
-
"funding": {
|
|
1181
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
1182
|
-
}
|
|
1183
|
-
},
|
|
1184
|
-
"node_modules/deep-eql": {
|
|
1185
|
-
"version": "5.0.2",
|
|
1186
|
-
"resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz",
|
|
1187
|
-
"integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==",
|
|
1188
|
-
"dev": true,
|
|
1189
|
-
"license": "MIT",
|
|
1190
|
-
"engines": {
|
|
1191
|
-
"node": ">=6"
|
|
1192
|
-
}
|
|
1193
|
-
},
|
|
1194
|
-
"node_modules/deep-extend": {
|
|
1195
|
-
"version": "0.6.0",
|
|
1196
|
-
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
|
1197
|
-
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
|
1198
|
-
"dev": true,
|
|
1199
|
-
"license": "MIT",
|
|
1200
|
-
"engines": {
|
|
1201
|
-
"node": ">=4.0.0"
|
|
1202
|
-
}
|
|
1203
|
-
},
|
|
1204
|
-
"node_modules/detect-libc": {
|
|
1205
|
-
"version": "2.1.2",
|
|
1206
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1207
|
-
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1208
|
-
"dev": true,
|
|
1209
|
-
"license": "Apache-2.0",
|
|
1210
|
-
"engines": {
|
|
1211
|
-
"node": ">=8"
|
|
1212
|
-
}
|
|
1213
|
-
},
|
|
1214
|
-
"node_modules/end-of-stream": {
|
|
1215
|
-
"version": "1.4.5",
|
|
1216
|
-
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
1217
|
-
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
1218
|
-
"dev": true,
|
|
1219
|
-
"license": "MIT",
|
|
1220
|
-
"dependencies": {
|
|
1221
|
-
"once": "^1.4.0"
|
|
1222
|
-
}
|
|
1223
|
-
},
|
|
1224
|
-
"node_modules/es-module-lexer": {
|
|
1225
|
-
"version": "1.7.0",
|
|
1226
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
|
|
1227
|
-
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
|
|
1228
|
-
"dev": true,
|
|
1229
|
-
"license": "MIT"
|
|
1230
|
-
},
|
|
1231
|
-
"node_modules/esbuild": {
|
|
1232
|
-
"version": "0.27.7",
|
|
1233
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
|
|
1234
|
-
"integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
|
|
1235
|
-
"dev": true,
|
|
1236
|
-
"hasInstallScript": true,
|
|
1237
|
-
"license": "MIT",
|
|
1238
|
-
"bin": {
|
|
1239
|
-
"esbuild": "bin/esbuild"
|
|
1240
|
-
},
|
|
1241
|
-
"engines": {
|
|
1242
|
-
"node": ">=18"
|
|
1243
|
-
},
|
|
1244
|
-
"optionalDependencies": {
|
|
1245
|
-
"@esbuild/aix-ppc64": "0.27.7",
|
|
1246
|
-
"@esbuild/android-arm": "0.27.7",
|
|
1247
|
-
"@esbuild/android-arm64": "0.27.7",
|
|
1248
|
-
"@esbuild/android-x64": "0.27.7",
|
|
1249
|
-
"@esbuild/darwin-arm64": "0.27.7",
|
|
1250
|
-
"@esbuild/darwin-x64": "0.27.7",
|
|
1251
|
-
"@esbuild/freebsd-arm64": "0.27.7",
|
|
1252
|
-
"@esbuild/freebsd-x64": "0.27.7",
|
|
1253
|
-
"@esbuild/linux-arm": "0.27.7",
|
|
1254
|
-
"@esbuild/linux-arm64": "0.27.7",
|
|
1255
|
-
"@esbuild/linux-ia32": "0.27.7",
|
|
1256
|
-
"@esbuild/linux-loong64": "0.27.7",
|
|
1257
|
-
"@esbuild/linux-mips64el": "0.27.7",
|
|
1258
|
-
"@esbuild/linux-ppc64": "0.27.7",
|
|
1259
|
-
"@esbuild/linux-riscv64": "0.27.7",
|
|
1260
|
-
"@esbuild/linux-s390x": "0.27.7",
|
|
1261
|
-
"@esbuild/linux-x64": "0.27.7",
|
|
1262
|
-
"@esbuild/netbsd-arm64": "0.27.7",
|
|
1263
|
-
"@esbuild/netbsd-x64": "0.27.7",
|
|
1264
|
-
"@esbuild/openbsd-arm64": "0.27.7",
|
|
1265
|
-
"@esbuild/openbsd-x64": "0.27.7",
|
|
1266
|
-
"@esbuild/openharmony-arm64": "0.27.7",
|
|
1267
|
-
"@esbuild/sunos-x64": "0.27.7",
|
|
1268
|
-
"@esbuild/win32-arm64": "0.27.7",
|
|
1269
|
-
"@esbuild/win32-ia32": "0.27.7",
|
|
1270
|
-
"@esbuild/win32-x64": "0.27.7"
|
|
1271
|
-
}
|
|
1272
|
-
},
|
|
1273
|
-
"node_modules/estree-walker": {
|
|
1274
|
-
"version": "3.0.3",
|
|
1275
|
-
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
1276
|
-
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
1277
|
-
"dev": true,
|
|
1278
|
-
"license": "MIT",
|
|
1279
|
-
"dependencies": {
|
|
1280
|
-
"@types/estree": "^1.0.0"
|
|
1281
|
-
}
|
|
1282
|
-
},
|
|
1283
|
-
"node_modules/expand-template": {
|
|
1284
|
-
"version": "2.0.3",
|
|
1285
|
-
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
|
|
1286
|
-
"integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
|
|
1287
|
-
"dev": true,
|
|
1288
|
-
"license": "(MIT OR WTFPL)",
|
|
1289
|
-
"engines": {
|
|
1290
|
-
"node": ">=6"
|
|
1291
|
-
}
|
|
1292
|
-
},
|
|
1293
|
-
"node_modules/expect-type": {
|
|
1294
|
-
"version": "1.3.0",
|
|
1295
|
-
"resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz",
|
|
1296
|
-
"integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==",
|
|
1297
|
-
"dev": true,
|
|
1298
|
-
"license": "Apache-2.0",
|
|
1299
|
-
"engines": {
|
|
1300
|
-
"node": ">=12.0.0"
|
|
1301
|
-
}
|
|
1302
|
-
},
|
|
1303
|
-
"node_modules/fdir": {
|
|
1304
|
-
"version": "6.5.0",
|
|
1305
|
-
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
1306
|
-
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
1307
|
-
"dev": true,
|
|
1308
|
-
"license": "MIT",
|
|
1309
|
-
"engines": {
|
|
1310
|
-
"node": ">=12.0.0"
|
|
1311
|
-
},
|
|
1312
|
-
"peerDependencies": {
|
|
1313
|
-
"picomatch": "^3 || ^4"
|
|
1314
|
-
},
|
|
1315
|
-
"peerDependenciesMeta": {
|
|
1316
|
-
"picomatch": {
|
|
1317
|
-
"optional": true
|
|
1318
|
-
}
|
|
1319
|
-
}
|
|
1320
|
-
},
|
|
1321
|
-
"node_modules/file-uri-to-path": {
|
|
1322
|
-
"version": "1.0.0",
|
|
1323
|
-
"resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
|
|
1324
|
-
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
|
|
1325
|
-
"dev": true,
|
|
1326
|
-
"license": "MIT"
|
|
1327
|
-
},
|
|
1328
|
-
"node_modules/fs-constants": {
|
|
1329
|
-
"version": "1.0.0",
|
|
1330
|
-
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
|
1331
|
-
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
1332
|
-
"dev": true,
|
|
1333
|
-
"license": "MIT"
|
|
1334
|
-
},
|
|
1335
|
-
"node_modules/fsevents": {
|
|
1336
|
-
"version": "2.3.3",
|
|
1337
|
-
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1338
|
-
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1339
|
-
"dev": true,
|
|
1340
|
-
"hasInstallScript": true,
|
|
1341
|
-
"license": "MIT",
|
|
1342
|
-
"optional": true,
|
|
1343
|
-
"os": [
|
|
1344
|
-
"darwin"
|
|
1345
|
-
],
|
|
1346
|
-
"engines": {
|
|
1347
|
-
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1348
|
-
}
|
|
1349
|
-
},
|
|
1350
|
-
"node_modules/github-from-package": {
|
|
1351
|
-
"version": "0.0.0",
|
|
1352
|
-
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
|
|
1353
|
-
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
|
|
1354
|
-
"dev": true,
|
|
1355
|
-
"license": "MIT"
|
|
1356
|
-
},
|
|
1357
|
-
"node_modules/ieee754": {
|
|
1358
|
-
"version": "1.2.1",
|
|
1359
|
-
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
1360
|
-
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
1361
|
-
"dev": true,
|
|
1362
|
-
"funding": [
|
|
1363
|
-
{
|
|
1364
|
-
"type": "github",
|
|
1365
|
-
"url": "https://github.com/sponsors/feross"
|
|
1366
|
-
},
|
|
1367
|
-
{
|
|
1368
|
-
"type": "patreon",
|
|
1369
|
-
"url": "https://www.patreon.com/feross"
|
|
1370
|
-
},
|
|
1371
|
-
{
|
|
1372
|
-
"type": "consulting",
|
|
1373
|
-
"url": "https://feross.org/support"
|
|
1374
|
-
}
|
|
1375
|
-
],
|
|
1376
|
-
"license": "BSD-3-Clause"
|
|
1377
|
-
},
|
|
1378
|
-
"node_modules/inherits": {
|
|
1379
|
-
"version": "2.0.4",
|
|
1380
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
1381
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
1382
|
-
"dev": true,
|
|
1383
|
-
"license": "ISC"
|
|
1384
|
-
},
|
|
1385
|
-
"node_modules/ini": {
|
|
1386
|
-
"version": "1.3.8",
|
|
1387
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
1388
|
-
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
|
|
1389
|
-
"dev": true,
|
|
1390
|
-
"license": "ISC"
|
|
1391
|
-
},
|
|
1392
|
-
"node_modules/js-tokens": {
|
|
1393
|
-
"version": "9.0.1",
|
|
1394
|
-
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz",
|
|
1395
|
-
"integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
|
|
1396
|
-
"dev": true,
|
|
1397
|
-
"license": "MIT"
|
|
1398
|
-
},
|
|
1399
|
-
"node_modules/loupe": {
|
|
1400
|
-
"version": "3.2.1",
|
|
1401
|
-
"resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz",
|
|
1402
|
-
"integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==",
|
|
1403
|
-
"dev": true,
|
|
1404
|
-
"license": "MIT"
|
|
1405
|
-
},
|
|
1406
|
-
"node_modules/magic-string": {
|
|
1407
|
-
"version": "0.30.21",
|
|
1408
|
-
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
1409
|
-
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
1410
|
-
"dev": true,
|
|
1411
|
-
"license": "MIT",
|
|
1412
|
-
"dependencies": {
|
|
1413
|
-
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1414
|
-
}
|
|
1415
|
-
},
|
|
1416
|
-
"node_modules/mimic-response": {
|
|
1417
|
-
"version": "3.1.0",
|
|
1418
|
-
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
|
|
1419
|
-
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
|
|
1420
|
-
"dev": true,
|
|
1421
|
-
"license": "MIT",
|
|
1422
|
-
"engines": {
|
|
1423
|
-
"node": ">=10"
|
|
1424
|
-
},
|
|
1425
|
-
"funding": {
|
|
1426
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
1427
|
-
}
|
|
1428
|
-
},
|
|
1429
|
-
"node_modules/minimist": {
|
|
1430
|
-
"version": "1.2.8",
|
|
1431
|
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
1432
|
-
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
1433
|
-
"dev": true,
|
|
1434
|
-
"license": "MIT",
|
|
1435
|
-
"funding": {
|
|
1436
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
1437
|
-
}
|
|
1438
|
-
},
|
|
1439
|
-
"node_modules/mkdirp-classic": {
|
|
1440
|
-
"version": "0.5.3",
|
|
1441
|
-
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
|
|
1442
|
-
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
|
|
1443
|
-
"dev": true,
|
|
1444
|
-
"license": "MIT"
|
|
1445
|
-
},
|
|
1446
|
-
"node_modules/ms": {
|
|
1447
|
-
"version": "2.1.3",
|
|
1448
|
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1449
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1450
|
-
"dev": true,
|
|
1451
|
-
"license": "MIT"
|
|
1452
|
-
},
|
|
1453
|
-
"node_modules/nanoid": {
|
|
1454
|
-
"version": "3.3.11",
|
|
1455
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
1456
|
-
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
1457
|
-
"dev": true,
|
|
1458
|
-
"funding": [
|
|
1459
|
-
{
|
|
1460
|
-
"type": "github",
|
|
1461
|
-
"url": "https://github.com/sponsors/ai"
|
|
1462
|
-
}
|
|
1463
|
-
],
|
|
1464
|
-
"license": "MIT",
|
|
1465
|
-
"bin": {
|
|
1466
|
-
"nanoid": "bin/nanoid.cjs"
|
|
1467
|
-
},
|
|
1468
|
-
"engines": {
|
|
1469
|
-
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1470
|
-
}
|
|
1471
|
-
},
|
|
1472
|
-
"node_modules/napi-build-utils": {
|
|
1473
|
-
"version": "2.0.0",
|
|
1474
|
-
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
|
|
1475
|
-
"integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
|
|
1476
|
-
"dev": true,
|
|
1477
|
-
"license": "MIT"
|
|
1478
|
-
},
|
|
1479
|
-
"node_modules/node-abi": {
|
|
1480
|
-
"version": "3.89.0",
|
|
1481
|
-
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.89.0.tgz",
|
|
1482
|
-
"integrity": "sha512-6u9UwL0HlAl21+agMN3YAMXcKByMqwGx+pq+P76vii5f7hTPtKDp08/H9py6DY+cfDw7kQNTGEj/rly3IgbNQA==",
|
|
1483
|
-
"dev": true,
|
|
1484
|
-
"license": "MIT",
|
|
1485
|
-
"dependencies": {
|
|
1486
|
-
"semver": "^7.3.5"
|
|
1487
|
-
},
|
|
1488
|
-
"engines": {
|
|
1489
|
-
"node": ">=10"
|
|
1490
|
-
}
|
|
1491
|
-
},
|
|
1492
|
-
"node_modules/once": {
|
|
1493
|
-
"version": "1.4.0",
|
|
1494
|
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
1495
|
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
1496
|
-
"dev": true,
|
|
1497
|
-
"license": "ISC",
|
|
1498
|
-
"dependencies": {
|
|
1499
|
-
"wrappy": "1"
|
|
1500
|
-
}
|
|
1501
|
-
},
|
|
1502
|
-
"node_modules/pathe": {
|
|
1503
|
-
"version": "2.0.3",
|
|
1504
|
-
"resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
|
|
1505
|
-
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
|
|
1506
|
-
"dev": true,
|
|
1507
|
-
"license": "MIT"
|
|
1508
|
-
},
|
|
1509
|
-
"node_modules/pathval": {
|
|
1510
|
-
"version": "2.0.1",
|
|
1511
|
-
"resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz",
|
|
1512
|
-
"integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==",
|
|
1513
|
-
"dev": true,
|
|
1514
|
-
"license": "MIT",
|
|
1515
|
-
"engines": {
|
|
1516
|
-
"node": ">= 14.16"
|
|
1517
|
-
}
|
|
1518
|
-
},
|
|
1519
|
-
"node_modules/picocolors": {
|
|
1520
|
-
"version": "1.1.1",
|
|
1521
|
-
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1522
|
-
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1523
|
-
"dev": true,
|
|
1524
|
-
"license": "ISC"
|
|
1525
|
-
},
|
|
1526
|
-
"node_modules/picomatch": {
|
|
1527
|
-
"version": "4.0.4",
|
|
1528
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
1529
|
-
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
1530
|
-
"dev": true,
|
|
1531
|
-
"license": "MIT",
|
|
1532
|
-
"engines": {
|
|
1533
|
-
"node": ">=12"
|
|
1534
|
-
},
|
|
1535
|
-
"funding": {
|
|
1536
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1537
|
-
}
|
|
1538
|
-
},
|
|
1539
|
-
"node_modules/postcss": {
|
|
1540
|
-
"version": "8.5.10",
|
|
1541
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
1542
|
-
"integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
|
|
1543
|
-
"dev": true,
|
|
1544
|
-
"funding": [
|
|
1545
|
-
{
|
|
1546
|
-
"type": "opencollective",
|
|
1547
|
-
"url": "https://opencollective.com/postcss/"
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"type": "tidelift",
|
|
1551
|
-
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1552
|
-
},
|
|
1553
|
-
{
|
|
1554
|
-
"type": "github",
|
|
1555
|
-
"url": "https://github.com/sponsors/ai"
|
|
1556
|
-
}
|
|
1557
|
-
],
|
|
1558
|
-
"license": "MIT",
|
|
1559
|
-
"dependencies": {
|
|
1560
|
-
"nanoid": "^3.3.11",
|
|
1561
|
-
"picocolors": "^1.1.1",
|
|
1562
|
-
"source-map-js": "^1.2.1"
|
|
1563
|
-
},
|
|
1564
|
-
"engines": {
|
|
1565
|
-
"node": "^10 || ^12 || >=14"
|
|
1566
|
-
}
|
|
1567
|
-
},
|
|
1568
|
-
"node_modules/prebuild-install": {
|
|
1569
|
-
"version": "7.1.3",
|
|
1570
|
-
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
|
|
1571
|
-
"integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
|
|
1572
|
-
"deprecated": "No longer maintained. Please contact the author of the relevant native addon; alternatives are available.",
|
|
1573
|
-
"dev": true,
|
|
1574
|
-
"license": "MIT",
|
|
1575
|
-
"dependencies": {
|
|
1576
|
-
"detect-libc": "^2.0.0",
|
|
1577
|
-
"expand-template": "^2.0.3",
|
|
1578
|
-
"github-from-package": "0.0.0",
|
|
1579
|
-
"minimist": "^1.2.3",
|
|
1580
|
-
"mkdirp-classic": "^0.5.3",
|
|
1581
|
-
"napi-build-utils": "^2.0.0",
|
|
1582
|
-
"node-abi": "^3.3.0",
|
|
1583
|
-
"pump": "^3.0.0",
|
|
1584
|
-
"rc": "^1.2.7",
|
|
1585
|
-
"simple-get": "^4.0.0",
|
|
1586
|
-
"tar-fs": "^2.0.0",
|
|
1587
|
-
"tunnel-agent": "^0.6.0"
|
|
1588
|
-
},
|
|
1589
|
-
"bin": {
|
|
1590
|
-
"prebuild-install": "bin.js"
|
|
1591
|
-
},
|
|
1592
|
-
"engines": {
|
|
1593
|
-
"node": ">=10"
|
|
1594
|
-
}
|
|
1595
|
-
},
|
|
1596
|
-
"node_modules/pump": {
|
|
1597
|
-
"version": "3.0.4",
|
|
1598
|
-
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
|
|
1599
|
-
"integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
|
|
1600
|
-
"dev": true,
|
|
1601
|
-
"license": "MIT",
|
|
1602
|
-
"dependencies": {
|
|
1603
|
-
"end-of-stream": "^1.1.0",
|
|
1604
|
-
"once": "^1.3.1"
|
|
1605
|
-
}
|
|
1606
|
-
},
|
|
1607
|
-
"node_modules/rc": {
|
|
1608
|
-
"version": "1.2.8",
|
|
1609
|
-
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
|
|
1610
|
-
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
|
|
1611
|
-
"dev": true,
|
|
1612
|
-
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
|
|
1613
|
-
"dependencies": {
|
|
1614
|
-
"deep-extend": "^0.6.0",
|
|
1615
|
-
"ini": "~1.3.0",
|
|
1616
|
-
"minimist": "^1.2.0",
|
|
1617
|
-
"strip-json-comments": "~2.0.1"
|
|
1618
|
-
},
|
|
1619
|
-
"bin": {
|
|
1620
|
-
"rc": "cli.js"
|
|
1621
|
-
}
|
|
1622
|
-
},
|
|
1623
|
-
"node_modules/readable-stream": {
|
|
1624
|
-
"version": "3.6.2",
|
|
1625
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
|
|
1626
|
-
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
|
1627
|
-
"dev": true,
|
|
1628
|
-
"license": "MIT",
|
|
1629
|
-
"dependencies": {
|
|
1630
|
-
"inherits": "^2.0.3",
|
|
1631
|
-
"string_decoder": "^1.1.1",
|
|
1632
|
-
"util-deprecate": "^1.0.1"
|
|
1633
|
-
},
|
|
1634
|
-
"engines": {
|
|
1635
|
-
"node": ">= 6"
|
|
1636
|
-
}
|
|
1637
|
-
},
|
|
1638
|
-
"node_modules/rollup": {
|
|
1639
|
-
"version": "4.60.2",
|
|
1640
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.2.tgz",
|
|
1641
|
-
"integrity": "sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==",
|
|
1642
|
-
"dev": true,
|
|
1643
|
-
"license": "MIT",
|
|
1644
|
-
"dependencies": {
|
|
1645
|
-
"@types/estree": "1.0.8"
|
|
1646
|
-
},
|
|
1647
|
-
"bin": {
|
|
1648
|
-
"rollup": "dist/bin/rollup"
|
|
1649
|
-
},
|
|
1650
|
-
"engines": {
|
|
1651
|
-
"node": ">=18.0.0",
|
|
1652
|
-
"npm": ">=8.0.0"
|
|
1653
|
-
},
|
|
1654
|
-
"optionalDependencies": {
|
|
1655
|
-
"@rollup/rollup-android-arm-eabi": "4.60.2",
|
|
1656
|
-
"@rollup/rollup-android-arm64": "4.60.2",
|
|
1657
|
-
"@rollup/rollup-darwin-arm64": "4.60.2",
|
|
1658
|
-
"@rollup/rollup-darwin-x64": "4.60.2",
|
|
1659
|
-
"@rollup/rollup-freebsd-arm64": "4.60.2",
|
|
1660
|
-
"@rollup/rollup-freebsd-x64": "4.60.2",
|
|
1661
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
|
|
1662
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.60.2",
|
|
1663
|
-
"@rollup/rollup-linux-arm64-gnu": "4.60.2",
|
|
1664
|
-
"@rollup/rollup-linux-arm64-musl": "4.60.2",
|
|
1665
|
-
"@rollup/rollup-linux-loong64-gnu": "4.60.2",
|
|
1666
|
-
"@rollup/rollup-linux-loong64-musl": "4.60.2",
|
|
1667
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.60.2",
|
|
1668
|
-
"@rollup/rollup-linux-ppc64-musl": "4.60.2",
|
|
1669
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.60.2",
|
|
1670
|
-
"@rollup/rollup-linux-riscv64-musl": "4.60.2",
|
|
1671
|
-
"@rollup/rollup-linux-s390x-gnu": "4.60.2",
|
|
1672
|
-
"@rollup/rollup-linux-x64-gnu": "4.60.2",
|
|
1673
|
-
"@rollup/rollup-linux-x64-musl": "4.60.2",
|
|
1674
|
-
"@rollup/rollup-openbsd-x64": "4.60.2",
|
|
1675
|
-
"@rollup/rollup-openharmony-arm64": "4.60.2",
|
|
1676
|
-
"@rollup/rollup-win32-arm64-msvc": "4.60.2",
|
|
1677
|
-
"@rollup/rollup-win32-ia32-msvc": "4.60.2",
|
|
1678
|
-
"@rollup/rollup-win32-x64-gnu": "4.60.2",
|
|
1679
|
-
"@rollup/rollup-win32-x64-msvc": "4.60.2",
|
|
1680
|
-
"fsevents": "~2.3.2"
|
|
1681
|
-
}
|
|
1682
|
-
},
|
|
1683
|
-
"node_modules/safe-buffer": {
|
|
1684
|
-
"version": "5.2.1",
|
|
1685
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1686
|
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1687
|
-
"dev": true,
|
|
1688
|
-
"funding": [
|
|
1689
|
-
{
|
|
1690
|
-
"type": "github",
|
|
1691
|
-
"url": "https://github.com/sponsors/feross"
|
|
1692
|
-
},
|
|
1693
|
-
{
|
|
1694
|
-
"type": "patreon",
|
|
1695
|
-
"url": "https://www.patreon.com/feross"
|
|
1696
|
-
},
|
|
1697
|
-
{
|
|
1698
|
-
"type": "consulting",
|
|
1699
|
-
"url": "https://feross.org/support"
|
|
1700
|
-
}
|
|
1701
|
-
],
|
|
1702
|
-
"license": "MIT"
|
|
1703
|
-
},
|
|
1704
|
-
"node_modules/semver": {
|
|
1705
|
-
"version": "7.7.4",
|
|
1706
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1707
|
-
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1708
|
-
"dev": true,
|
|
1709
|
-
"license": "ISC",
|
|
1710
|
-
"bin": {
|
|
1711
|
-
"semver": "bin/semver.js"
|
|
1712
|
-
},
|
|
1713
|
-
"engines": {
|
|
1714
|
-
"node": ">=10"
|
|
1715
|
-
}
|
|
1716
|
-
},
|
|
1717
|
-
"node_modules/siginfo": {
|
|
1718
|
-
"version": "2.0.0",
|
|
1719
|
-
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
1720
|
-
"integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
|
|
1721
|
-
"dev": true,
|
|
1722
|
-
"license": "ISC"
|
|
1723
|
-
},
|
|
1724
|
-
"node_modules/simple-concat": {
|
|
1725
|
-
"version": "1.0.1",
|
|
1726
|
-
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
|
|
1727
|
-
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
|
|
1728
|
-
"dev": true,
|
|
1729
|
-
"funding": [
|
|
1730
|
-
{
|
|
1731
|
-
"type": "github",
|
|
1732
|
-
"url": "https://github.com/sponsors/feross"
|
|
1733
|
-
},
|
|
1734
|
-
{
|
|
1735
|
-
"type": "patreon",
|
|
1736
|
-
"url": "https://www.patreon.com/feross"
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"type": "consulting",
|
|
1740
|
-
"url": "https://feross.org/support"
|
|
1741
|
-
}
|
|
1742
|
-
],
|
|
1743
|
-
"license": "MIT"
|
|
1744
|
-
},
|
|
1745
|
-
"node_modules/simple-get": {
|
|
1746
|
-
"version": "4.0.1",
|
|
1747
|
-
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
|
|
1748
|
-
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
|
|
1749
|
-
"dev": true,
|
|
1750
|
-
"funding": [
|
|
1751
|
-
{
|
|
1752
|
-
"type": "github",
|
|
1753
|
-
"url": "https://github.com/sponsors/feross"
|
|
1754
|
-
},
|
|
1755
|
-
{
|
|
1756
|
-
"type": "patreon",
|
|
1757
|
-
"url": "https://www.patreon.com/feross"
|
|
1758
|
-
},
|
|
1759
|
-
{
|
|
1760
|
-
"type": "consulting",
|
|
1761
|
-
"url": "https://feross.org/support"
|
|
1762
|
-
}
|
|
1763
|
-
],
|
|
1764
|
-
"license": "MIT",
|
|
1765
|
-
"dependencies": {
|
|
1766
|
-
"decompress-response": "^6.0.0",
|
|
1767
|
-
"once": "^1.3.1",
|
|
1768
|
-
"simple-concat": "^1.0.0"
|
|
1769
|
-
}
|
|
1770
|
-
},
|
|
1771
|
-
"node_modules/source-map-js": {
|
|
1772
|
-
"version": "1.2.1",
|
|
1773
|
-
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1774
|
-
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1775
|
-
"dev": true,
|
|
1776
|
-
"license": "BSD-3-Clause",
|
|
1777
|
-
"engines": {
|
|
1778
|
-
"node": ">=0.10.0"
|
|
1779
|
-
}
|
|
1780
|
-
},
|
|
1781
|
-
"node_modules/stackback": {
|
|
1782
|
-
"version": "0.0.2",
|
|
1783
|
-
"resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
|
|
1784
|
-
"integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
|
|
1785
|
-
"dev": true,
|
|
1786
|
-
"license": "MIT"
|
|
1787
|
-
},
|
|
1788
|
-
"node_modules/std-env": {
|
|
1789
|
-
"version": "3.10.0",
|
|
1790
|
-
"resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz",
|
|
1791
|
-
"integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==",
|
|
1792
|
-
"dev": true,
|
|
1793
|
-
"license": "MIT"
|
|
1794
|
-
},
|
|
1795
|
-
"node_modules/string_decoder": {
|
|
1796
|
-
"version": "1.3.0",
|
|
1797
|
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
1798
|
-
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
|
1799
|
-
"dev": true,
|
|
1800
|
-
"license": "MIT",
|
|
1801
|
-
"dependencies": {
|
|
1802
|
-
"safe-buffer": "~5.2.0"
|
|
1803
|
-
}
|
|
1804
|
-
},
|
|
1805
|
-
"node_modules/strip-json-comments": {
|
|
1806
|
-
"version": "2.0.1",
|
|
1807
|
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
|
|
1808
|
-
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
|
|
1809
|
-
"dev": true,
|
|
1810
|
-
"license": "MIT",
|
|
1811
|
-
"engines": {
|
|
1812
|
-
"node": ">=0.10.0"
|
|
1813
|
-
}
|
|
1814
|
-
},
|
|
1815
|
-
"node_modules/strip-literal": {
|
|
1816
|
-
"version": "3.1.0",
|
|
1817
|
-
"resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz",
|
|
1818
|
-
"integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==",
|
|
1819
|
-
"dev": true,
|
|
1820
|
-
"license": "MIT",
|
|
1821
|
-
"dependencies": {
|
|
1822
|
-
"js-tokens": "^9.0.1"
|
|
1823
|
-
},
|
|
1824
|
-
"funding": {
|
|
1825
|
-
"url": "https://github.com/sponsors/antfu"
|
|
1826
|
-
}
|
|
1827
|
-
},
|
|
1828
|
-
"node_modules/tar-fs": {
|
|
1829
|
-
"version": "2.1.4",
|
|
1830
|
-
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz",
|
|
1831
|
-
"integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==",
|
|
1832
|
-
"dev": true,
|
|
1833
|
-
"license": "MIT",
|
|
1834
|
-
"dependencies": {
|
|
1835
|
-
"chownr": "^1.1.1",
|
|
1836
|
-
"mkdirp-classic": "^0.5.2",
|
|
1837
|
-
"pump": "^3.0.0",
|
|
1838
|
-
"tar-stream": "^2.1.4"
|
|
1839
|
-
}
|
|
1840
|
-
},
|
|
1841
|
-
"node_modules/tar-stream": {
|
|
1842
|
-
"version": "2.2.0",
|
|
1843
|
-
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
|
|
1844
|
-
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
|
|
1845
|
-
"dev": true,
|
|
1846
|
-
"license": "MIT",
|
|
1847
|
-
"dependencies": {
|
|
1848
|
-
"bl": "^4.0.3",
|
|
1849
|
-
"end-of-stream": "^1.4.1",
|
|
1850
|
-
"fs-constants": "^1.0.0",
|
|
1851
|
-
"inherits": "^2.0.3",
|
|
1852
|
-
"readable-stream": "^3.1.1"
|
|
1853
|
-
},
|
|
1854
|
-
"engines": {
|
|
1855
|
-
"node": ">=6"
|
|
1856
|
-
}
|
|
1857
|
-
},
|
|
1858
|
-
"node_modules/tinybench": {
|
|
1859
|
-
"version": "2.9.0",
|
|
1860
|
-
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
|
|
1861
|
-
"integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==",
|
|
1862
|
-
"dev": true,
|
|
1863
|
-
"license": "MIT"
|
|
1864
|
-
},
|
|
1865
|
-
"node_modules/tinyexec": {
|
|
1866
|
-
"version": "0.3.2",
|
|
1867
|
-
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
|
|
1868
|
-
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
|
|
1869
|
-
"dev": true,
|
|
1870
|
-
"license": "MIT"
|
|
1871
|
-
},
|
|
1872
|
-
"node_modules/tinyglobby": {
|
|
1873
|
-
"version": "0.2.16",
|
|
1874
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
|
|
1875
|
-
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
|
1876
|
-
"dev": true,
|
|
1877
|
-
"license": "MIT",
|
|
1878
|
-
"dependencies": {
|
|
1879
|
-
"fdir": "^6.5.0",
|
|
1880
|
-
"picomatch": "^4.0.4"
|
|
1881
|
-
},
|
|
1882
|
-
"engines": {
|
|
1883
|
-
"node": ">=12.0.0"
|
|
1884
|
-
},
|
|
1885
|
-
"funding": {
|
|
1886
|
-
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
1887
|
-
}
|
|
1888
|
-
},
|
|
1889
|
-
"node_modules/tinypool": {
|
|
1890
|
-
"version": "1.1.1",
|
|
1891
|
-
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz",
|
|
1892
|
-
"integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==",
|
|
1893
|
-
"dev": true,
|
|
1894
|
-
"license": "MIT",
|
|
1895
|
-
"engines": {
|
|
1896
|
-
"node": "^18.0.0 || >=20.0.0"
|
|
1897
|
-
}
|
|
1898
|
-
},
|
|
1899
|
-
"node_modules/tinyrainbow": {
|
|
1900
|
-
"version": "2.0.0",
|
|
1901
|
-
"resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz",
|
|
1902
|
-
"integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==",
|
|
1903
|
-
"dev": true,
|
|
1904
|
-
"license": "MIT",
|
|
1905
|
-
"engines": {
|
|
1906
|
-
"node": ">=14.0.0"
|
|
1907
|
-
}
|
|
1908
|
-
},
|
|
1909
|
-
"node_modules/tinyspy": {
|
|
1910
|
-
"version": "4.0.4",
|
|
1911
|
-
"resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz",
|
|
1912
|
-
"integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==",
|
|
1913
|
-
"dev": true,
|
|
1914
|
-
"license": "MIT",
|
|
1915
|
-
"engines": {
|
|
1916
|
-
"node": ">=14.0.0"
|
|
1917
|
-
}
|
|
1918
|
-
},
|
|
1919
|
-
"node_modules/tunnel-agent": {
|
|
1920
|
-
"version": "0.6.0",
|
|
1921
|
-
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
|
1922
|
-
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
|
|
1923
|
-
"dev": true,
|
|
1924
|
-
"license": "Apache-2.0",
|
|
1925
|
-
"dependencies": {
|
|
1926
|
-
"safe-buffer": "^5.0.1"
|
|
1927
|
-
},
|
|
1928
|
-
"engines": {
|
|
1929
|
-
"node": "*"
|
|
1930
|
-
}
|
|
1931
|
-
},
|
|
1932
|
-
"node_modules/typescript": {
|
|
1933
|
-
"version": "5.9.3",
|
|
1934
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
1935
|
-
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
1936
|
-
"dev": true,
|
|
1937
|
-
"license": "Apache-2.0",
|
|
1938
|
-
"bin": {
|
|
1939
|
-
"tsc": "bin/tsc",
|
|
1940
|
-
"tsserver": "bin/tsserver"
|
|
1941
|
-
},
|
|
1942
|
-
"engines": {
|
|
1943
|
-
"node": ">=14.17"
|
|
1944
|
-
}
|
|
1945
|
-
},
|
|
1946
|
-
"node_modules/undici-types": {
|
|
1947
|
-
"version": "6.21.0",
|
|
1948
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
1949
|
-
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
1950
|
-
"dev": true,
|
|
1951
|
-
"license": "MIT"
|
|
1952
|
-
},
|
|
1953
|
-
"node_modules/util-deprecate": {
|
|
1954
|
-
"version": "1.0.2",
|
|
1955
|
-
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
1956
|
-
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
1957
|
-
"dev": true,
|
|
1958
|
-
"license": "MIT"
|
|
1959
|
-
},
|
|
1960
|
-
"node_modules/vite": {
|
|
1961
|
-
"version": "7.3.2",
|
|
1962
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
|
|
1963
|
-
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
|
|
1964
|
-
"dev": true,
|
|
1965
|
-
"license": "MIT",
|
|
1966
|
-
"dependencies": {
|
|
1967
|
-
"esbuild": "^0.27.0",
|
|
1968
|
-
"fdir": "^6.5.0",
|
|
1969
|
-
"picomatch": "^4.0.3",
|
|
1970
|
-
"postcss": "^8.5.6",
|
|
1971
|
-
"rollup": "^4.43.0",
|
|
1972
|
-
"tinyglobby": "^0.2.15"
|
|
1973
|
-
},
|
|
1974
|
-
"bin": {
|
|
1975
|
-
"vite": "bin/vite.js"
|
|
1976
|
-
},
|
|
1977
|
-
"engines": {
|
|
1978
|
-
"node": "^20.19.0 || >=22.12.0"
|
|
1979
|
-
},
|
|
1980
|
-
"funding": {
|
|
1981
|
-
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
1982
|
-
},
|
|
1983
|
-
"optionalDependencies": {
|
|
1984
|
-
"fsevents": "~2.3.3"
|
|
1985
|
-
},
|
|
1986
|
-
"peerDependencies": {
|
|
1987
|
-
"@types/node": "^20.19.0 || >=22.12.0",
|
|
1988
|
-
"jiti": ">=1.21.0",
|
|
1989
|
-
"less": "^4.0.0",
|
|
1990
|
-
"lightningcss": "^1.21.0",
|
|
1991
|
-
"sass": "^1.70.0",
|
|
1992
|
-
"sass-embedded": "^1.70.0",
|
|
1993
|
-
"stylus": ">=0.54.8",
|
|
1994
|
-
"sugarss": "^5.0.0",
|
|
1995
|
-
"terser": "^5.16.0",
|
|
1996
|
-
"tsx": "^4.8.1",
|
|
1997
|
-
"yaml": "^2.4.2"
|
|
1998
|
-
},
|
|
1999
|
-
"peerDependenciesMeta": {
|
|
2000
|
-
"@types/node": {
|
|
2001
|
-
"optional": true
|
|
2002
|
-
},
|
|
2003
|
-
"jiti": {
|
|
2004
|
-
"optional": true
|
|
2005
|
-
},
|
|
2006
|
-
"less": {
|
|
2007
|
-
"optional": true
|
|
2008
|
-
},
|
|
2009
|
-
"lightningcss": {
|
|
2010
|
-
"optional": true
|
|
2011
|
-
},
|
|
2012
|
-
"sass": {
|
|
2013
|
-
"optional": true
|
|
2014
|
-
},
|
|
2015
|
-
"sass-embedded": {
|
|
2016
|
-
"optional": true
|
|
2017
|
-
},
|
|
2018
|
-
"stylus": {
|
|
2019
|
-
"optional": true
|
|
2020
|
-
},
|
|
2021
|
-
"sugarss": {
|
|
2022
|
-
"optional": true
|
|
2023
|
-
},
|
|
2024
|
-
"terser": {
|
|
2025
|
-
"optional": true
|
|
2026
|
-
},
|
|
2027
|
-
"tsx": {
|
|
2028
|
-
"optional": true
|
|
2029
|
-
},
|
|
2030
|
-
"yaml": {
|
|
2031
|
-
"optional": true
|
|
2032
|
-
}
|
|
2033
|
-
}
|
|
2034
|
-
},
|
|
2035
|
-
"node_modules/vite-node": {
|
|
2036
|
-
"version": "3.2.4",
|
|
2037
|
-
"resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz",
|
|
2038
|
-
"integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==",
|
|
2039
|
-
"dev": true,
|
|
2040
|
-
"license": "MIT",
|
|
2041
|
-
"dependencies": {
|
|
2042
|
-
"cac": "^6.7.14",
|
|
2043
|
-
"debug": "^4.4.1",
|
|
2044
|
-
"es-module-lexer": "^1.7.0",
|
|
2045
|
-
"pathe": "^2.0.3",
|
|
2046
|
-
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
|
|
2047
|
-
},
|
|
2048
|
-
"bin": {
|
|
2049
|
-
"vite-node": "vite-node.mjs"
|
|
2050
|
-
},
|
|
2051
|
-
"engines": {
|
|
2052
|
-
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
2053
|
-
},
|
|
2054
|
-
"funding": {
|
|
2055
|
-
"url": "https://opencollective.com/vitest"
|
|
2056
|
-
}
|
|
2057
|
-
},
|
|
2058
|
-
"node_modules/vitest": {
|
|
2059
|
-
"version": "3.2.4",
|
|
2060
|
-
"resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz",
|
|
2061
|
-
"integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==",
|
|
2062
|
-
"dev": true,
|
|
2063
|
-
"license": "MIT",
|
|
2064
|
-
"dependencies": {
|
|
2065
|
-
"@types/chai": "^5.2.2",
|
|
2066
|
-
"@vitest/expect": "3.2.4",
|
|
2067
|
-
"@vitest/mocker": "3.2.4",
|
|
2068
|
-
"@vitest/pretty-format": "^3.2.4",
|
|
2069
|
-
"@vitest/runner": "3.2.4",
|
|
2070
|
-
"@vitest/snapshot": "3.2.4",
|
|
2071
|
-
"@vitest/spy": "3.2.4",
|
|
2072
|
-
"@vitest/utils": "3.2.4",
|
|
2073
|
-
"chai": "^5.2.0",
|
|
2074
|
-
"debug": "^4.4.1",
|
|
2075
|
-
"expect-type": "^1.2.1",
|
|
2076
|
-
"magic-string": "^0.30.17",
|
|
2077
|
-
"pathe": "^2.0.3",
|
|
2078
|
-
"picomatch": "^4.0.2",
|
|
2079
|
-
"std-env": "^3.9.0",
|
|
2080
|
-
"tinybench": "^2.9.0",
|
|
2081
|
-
"tinyexec": "^0.3.2",
|
|
2082
|
-
"tinyglobby": "^0.2.14",
|
|
2083
|
-
"tinypool": "^1.1.1",
|
|
2084
|
-
"tinyrainbow": "^2.0.0",
|
|
2085
|
-
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0",
|
|
2086
|
-
"vite-node": "3.2.4",
|
|
2087
|
-
"why-is-node-running": "^2.3.0"
|
|
2088
|
-
},
|
|
2089
|
-
"bin": {
|
|
2090
|
-
"vitest": "vitest.mjs"
|
|
2091
|
-
},
|
|
2092
|
-
"engines": {
|
|
2093
|
-
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
2094
|
-
},
|
|
2095
|
-
"funding": {
|
|
2096
|
-
"url": "https://opencollective.com/vitest"
|
|
2097
|
-
},
|
|
2098
|
-
"peerDependencies": {
|
|
2099
|
-
"@edge-runtime/vm": "*",
|
|
2100
|
-
"@types/debug": "^4.1.12",
|
|
2101
|
-
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
2102
|
-
"@vitest/browser": "3.2.4",
|
|
2103
|
-
"@vitest/ui": "3.2.4",
|
|
2104
|
-
"happy-dom": "*",
|
|
2105
|
-
"jsdom": "*"
|
|
2106
|
-
},
|
|
2107
|
-
"peerDependenciesMeta": {
|
|
2108
|
-
"@edge-runtime/vm": {
|
|
2109
|
-
"optional": true
|
|
2110
|
-
},
|
|
2111
|
-
"@types/debug": {
|
|
2112
|
-
"optional": true
|
|
2113
|
-
},
|
|
2114
|
-
"@types/node": {
|
|
2115
|
-
"optional": true
|
|
2116
|
-
},
|
|
2117
|
-
"@vitest/browser": {
|
|
2118
|
-
"optional": true
|
|
2119
|
-
},
|
|
2120
|
-
"@vitest/ui": {
|
|
2121
|
-
"optional": true
|
|
2122
|
-
},
|
|
2123
|
-
"happy-dom": {
|
|
2124
|
-
"optional": true
|
|
2125
|
-
},
|
|
2126
|
-
"jsdom": {
|
|
2127
|
-
"optional": true
|
|
2128
|
-
}
|
|
2129
|
-
}
|
|
2130
|
-
},
|
|
2131
|
-
"node_modules/why-is-node-running": {
|
|
2132
|
-
"version": "2.3.0",
|
|
2133
|
-
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
2134
|
-
"integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
|
|
2135
|
-
"dev": true,
|
|
2136
|
-
"license": "MIT",
|
|
2137
|
-
"dependencies": {
|
|
2138
|
-
"siginfo": "^2.0.0",
|
|
2139
|
-
"stackback": "0.0.2"
|
|
2140
|
-
},
|
|
2141
|
-
"bin": {
|
|
2142
|
-
"why-is-node-running": "cli.js"
|
|
2143
|
-
},
|
|
2144
|
-
"engines": {
|
|
2145
|
-
"node": ">=8"
|
|
2146
|
-
}
|
|
2147
|
-
},
|
|
2148
|
-
"node_modules/wrappy": {
|
|
2149
|
-
"version": "1.0.2",
|
|
2150
|
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
2151
|
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
2152
|
-
"dev": true,
|
|
2153
|
-
"license": "ISC"
|
|
2154
|
-
}
|
|
2155
|
-
}
|
|
2156
|
-
}
|