calvyn-code 0.14.0
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/LICENSE +21 -0
- package/README.md +217 -0
- package/README.zh-CN.md +180 -0
- package/acp_adapter/__init__.py +1 -0
- package/acp_adapter/__main__.py +5 -0
- package/acp_adapter/auth.py +68 -0
- package/acp_adapter/bootstrap/__init__.py +0 -0
- package/acp_adapter/bootstrap/bootstrap_browser_tools.ps1 +288 -0
- package/acp_adapter/bootstrap/bootstrap_browser_tools.sh +399 -0
- package/acp_adapter/entry.py +292 -0
- package/acp_adapter/events.py +265 -0
- package/acp_adapter/permissions.py +148 -0
- package/acp_adapter/server.py +1713 -0
- package/acp_adapter/session.py +629 -0
- package/acp_adapter/tools.py +1180 -0
- package/agent/__init__.py +6 -0
- package/agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/__pycache__/account_usage.cpython-312.pyc +0 -0
- package/agent/__pycache__/anthropic_adapter.cpython-312.pyc +0 -0
- package/agent/__pycache__/async_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/auxiliary_client.cpython-312.pyc +0 -0
- package/agent/__pycache__/codex_responses_adapter.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_compressor.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_engine.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_references.cpython-312.pyc +0 -0
- package/agent/__pycache__/credential_pool.cpython-312.pyc +0 -0
- package/agent/__pycache__/curator.cpython-312.pyc +0 -0
- package/agent/__pycache__/display.cpython-312.pyc +0 -0
- package/agent/__pycache__/error_classifier.cpython-312.pyc +0 -0
- package/agent/__pycache__/file_safety.cpython-312.pyc +0 -0
- package/agent/__pycache__/google_code_assist.cpython-312.pyc +0 -0
- package/agent/__pycache__/google_oauth.cpython-312.pyc +0 -0
- package/agent/__pycache__/i18n.cpython-312.pyc +0 -0
- package/agent/__pycache__/image_gen_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/image_gen_registry.cpython-312.pyc +0 -0
- package/agent/__pycache__/insights.cpython-312.pyc +0 -0
- package/agent/__pycache__/lmstudio_reasoning.cpython-312.pyc +0 -0
- package/agent/__pycache__/manual_compression_feedback.cpython-312.pyc +0 -0
- package/agent/__pycache__/markdown_tables.cpython-312.pyc +0 -0
- package/agent/__pycache__/memory_manager.cpython-312.pyc +0 -0
- package/agent/__pycache__/memory_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/model_metadata.cpython-312.pyc +0 -0
- package/agent/__pycache__/models_dev.cpython-312.pyc +0 -0
- package/agent/__pycache__/moonshot_schema.cpython-312.pyc +0 -0
- package/agent/__pycache__/onboarding.cpython-312.pyc +0 -0
- package/agent/__pycache__/portal_tags.cpython-312.pyc +0 -0
- package/agent/__pycache__/prompt_builder.cpython-312.pyc +0 -0
- package/agent/__pycache__/prompt_caching.cpython-312.pyc +0 -0
- package/agent/__pycache__/redact.cpython-312.pyc +0 -0
- package/agent/__pycache__/retry_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/shell_hooks.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_commands.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_preprocessing.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/subdirectory_hints.cpython-312.pyc +0 -0
- package/agent/__pycache__/think_scrubber.cpython-312.pyc +0 -0
- package/agent/__pycache__/title_generator.cpython-312.pyc +0 -0
- package/agent/__pycache__/tool_guardrails.cpython-312.pyc +0 -0
- package/agent/__pycache__/tool_result_classification.cpython-312.pyc +0 -0
- package/agent/__pycache__/trajectory.cpython-312.pyc +0 -0
- package/agent/__pycache__/usage_pricing.cpython-312.pyc +0 -0
- package/agent/__pycache__/video_gen_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/video_gen_registry.cpython-312.pyc +0 -0
- package/agent/__pycache__/web_search_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/web_search_registry.cpython-312.pyc +0 -0
- package/agent/account_usage.py +326 -0
- package/agent/anthropic_adapter.py +2087 -0
- package/agent/async_utils.py +68 -0
- package/agent/auxiliary_client.py +4893 -0
- package/agent/bedrock_adapter.py +1276 -0
- package/agent/codex_responses_adapter.py +1084 -0
- package/agent/context_compressor.py +1583 -0
- package/agent/context_engine.py +211 -0
- package/agent/context_references.py +519 -0
- package/agent/copilot_acp_client.py +684 -0
- package/agent/credential_pool.py +1780 -0
- package/agent/credential_sources.py +449 -0
- package/agent/curator.py +1782 -0
- package/agent/curator_backup.py +694 -0
- package/agent/display.py +987 -0
- package/agent/error_classifier.py +1058 -0
- package/agent/file_safety.py +112 -0
- package/agent/gemini_cloudcode_adapter.py +909 -0
- package/agent/gemini_native_adapter.py +971 -0
- package/agent/gemini_schema.py +99 -0
- package/agent/google_code_assist.py +452 -0
- package/agent/google_oauth.py +1062 -0
- package/agent/i18n.py +258 -0
- package/agent/image_gen_provider.py +243 -0
- package/agent/image_gen_registry.py +145 -0
- package/agent/image_routing.py +301 -0
- package/agent/insights.py +931 -0
- package/agent/lmstudio_reasoning.py +48 -0
- package/agent/lsp/__init__.py +106 -0
- package/agent/lsp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/cli.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/client.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/eventlog.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/manager.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/protocol.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/servers.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/workspace.cpython-312.pyc +0 -0
- package/agent/lsp/cli.py +308 -0
- package/agent/lsp/client.py +930 -0
- package/agent/lsp/eventlog.py +213 -0
- package/agent/lsp/install.py +376 -0
- package/agent/lsp/manager.py +644 -0
- package/agent/lsp/protocol.py +196 -0
- package/agent/lsp/range_shift.py +149 -0
- package/agent/lsp/reporter.py +78 -0
- package/agent/lsp/servers.py +1040 -0
- package/agent/lsp/workspace.py +223 -0
- package/agent/manual_compression_feedback.py +49 -0
- package/agent/markdown_tables.py +309 -0
- package/agent/memory_manager.py +556 -0
- package/agent/memory_provider.py +279 -0
- package/agent/model_metadata.py +1827 -0
- package/agent/models_dev.py +724 -0
- package/agent/moonshot_schema.py +231 -0
- package/agent/nous_rate_guard.py +326 -0
- package/agent/onboarding.py +193 -0
- package/agent/plugin_llm.py +1046 -0
- package/agent/portal_tags.py +64 -0
- package/agent/prompt_builder.py +1457 -0
- package/agent/prompt_caching.py +79 -0
- package/agent/rate_limit_tracker.py +246 -0
- package/agent/redact.py +403 -0
- package/agent/retry_utils.py +57 -0
- package/agent/shell_hooks.py +837 -0
- package/agent/skill_commands.py +502 -0
- package/agent/skill_preprocessing.py +131 -0
- package/agent/skill_utils.py +512 -0
- package/agent/subdirectory_hints.py +224 -0
- package/agent/think_scrubber.py +386 -0
- package/agent/title_generator.py +171 -0
- package/agent/tool_guardrails.py +458 -0
- package/agent/tool_result_classification.py +26 -0
- package/agent/trajectory.py +56 -0
- package/agent/transports/__init__.py +68 -0
- package/agent/transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/anthropic.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/base.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/bedrock.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/chat_completions.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/codex.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/types.cpython-312.pyc +0 -0
- package/agent/transports/anthropic.py +179 -0
- package/agent/transports/base.py +89 -0
- package/agent/transports/bedrock.py +154 -0
- package/agent/transports/chat_completions.py +614 -0
- package/agent/transports/codex.py +283 -0
- package/agent/transports/codex_app_server.py +368 -0
- package/agent/transports/codex_app_server_session.py +810 -0
- package/agent/transports/codex_event_projector.py +312 -0
- package/agent/transports/hermes_tools_mcp_server.py +233 -0
- package/agent/transports/types.py +162 -0
- package/agent/usage_pricing.py +877 -0
- package/agent/video_gen_provider.py +300 -0
- package/agent/video_gen_registry.py +117 -0
- package/agent/web_search_provider.py +221 -0
- package/agent/web_search_registry.py +262 -0
- package/assets/banner.png +0 -0
- package/batch_runner.py +1303 -0
- package/bin/calvyn.js +67 -0
- package/calvyn_bootstrap.py +130 -0
- package/calvyn_constants.py +346 -0
- package/calvyn_logging.py +390 -0
- package/calvyn_state.py +2967 -0
- package/calvyn_time.py +105 -0
- package/cli.py +14160 -0
- package/cron/__init__.py +42 -0
- package/cron/__pycache__/__init__.cpython-312.pyc +0 -0
- package/cron/__pycache__/jobs.cpython-312.pyc +0 -0
- package/cron/__pycache__/scheduler.cpython-312.pyc +0 -0
- package/cron/jobs.py +1160 -0
- package/cron/scheduler.py +1832 -0
- package/gateway/__init__.py +35 -0
- package/gateway/__pycache__/__init__.cpython-312.pyc +0 -0
- package/gateway/__pycache__/channel_directory.cpython-312.pyc +0 -0
- package/gateway/__pycache__/config.cpython-312.pyc +0 -0
- package/gateway/__pycache__/delivery.cpython-312.pyc +0 -0
- package/gateway/__pycache__/display_config.cpython-312.pyc +0 -0
- package/gateway/__pycache__/hooks.cpython-312.pyc +0 -0
- package/gateway/__pycache__/pairing.cpython-312.pyc +0 -0
- package/gateway/__pycache__/platform_registry.cpython-312.pyc +0 -0
- package/gateway/__pycache__/restart.cpython-312.pyc +0 -0
- package/gateway/__pycache__/run.cpython-312.pyc +0 -0
- package/gateway/__pycache__/runtime_footer.cpython-312.pyc +0 -0
- package/gateway/__pycache__/session.cpython-312.pyc +0 -0
- package/gateway/__pycache__/session_context.cpython-312.pyc +0 -0
- package/gateway/__pycache__/shutdown_forensics.cpython-312.pyc +0 -0
- package/gateway/__pycache__/slash_access.cpython-312.pyc +0 -0
- package/gateway/__pycache__/status.cpython-312.pyc +0 -0
- package/gateway/__pycache__/stream_consumer.cpython-312.pyc +0 -0
- package/gateway/__pycache__/whatsapp_identity.cpython-312.pyc +0 -0
- package/gateway/assets/telegram-botfather-threads-settings.jpg +0 -0
- package/gateway/builtin_hooks/__init__.py +1 -0
- package/gateway/channel_directory.py +357 -0
- package/gateway/config.py +1873 -0
- package/gateway/delivery.py +258 -0
- package/gateway/display_config.py +206 -0
- package/gateway/hooks.py +210 -0
- package/gateway/mirror.py +179 -0
- package/gateway/pairing.py +322 -0
- package/gateway/platform_registry.py +260 -0
- package/gateway/platforms/ADDING_A_PLATFORM.md +374 -0
- package/gateway/platforms/__init__.py +45 -0
- package/gateway/platforms/__pycache__/__init__.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/base.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/helpers.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/telegram.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/telegram_network.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao_media.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao_proto.cpython-312.pyc +0 -0
- package/gateway/platforms/_http_client_limits.py +84 -0
- package/gateway/platforms/api_server.py +3488 -0
- package/gateway/platforms/base.py +3747 -0
- package/gateway/platforms/bluebubbles.py +937 -0
- package/gateway/platforms/dingtalk.py +1473 -0
- package/gateway/platforms/discord.py +5584 -0
- package/gateway/platforms/email.py +773 -0
- package/gateway/platforms/feishu.py +5059 -0
- package/gateway/platforms/feishu_comment.py +1382 -0
- package/gateway/platforms/feishu_comment_rules.py +430 -0
- package/gateway/platforms/helpers.py +279 -0
- package/gateway/platforms/homeassistant.py +449 -0
- package/gateway/platforms/matrix.py +2777 -0
- package/gateway/platforms/mattermost.py +852 -0
- package/gateway/platforms/msgraph_webhook.py +397 -0
- package/gateway/platforms/qqbot/__init__.py +91 -0
- package/gateway/platforms/qqbot/adapter.py +3072 -0
- package/gateway/platforms/qqbot/chunked_upload.py +602 -0
- package/gateway/platforms/qqbot/constants.py +74 -0
- package/gateway/platforms/qqbot/crypto.py +45 -0
- package/gateway/platforms/qqbot/keyboards.py +473 -0
- package/gateway/platforms/qqbot/onboard.py +220 -0
- package/gateway/platforms/qqbot/utils.py +71 -0
- package/gateway/platforms/signal.py +1518 -0
- package/gateway/platforms/signal_rate_limit.py +369 -0
- package/gateway/platforms/slack.py +3028 -0
- package/gateway/platforms/sms.py +377 -0
- package/gateway/platforms/telegram.py +4836 -0
- package/gateway/platforms/telegram_network.py +249 -0
- package/gateway/platforms/webhook.py +806 -0
- package/gateway/platforms/wecom.py +1610 -0
- package/gateway/platforms/wecom_callback.py +403 -0
- package/gateway/platforms/wecom_crypto.py +142 -0
- package/gateway/platforms/weixin.py +2170 -0
- package/gateway/platforms/whatsapp.py +1283 -0
- package/gateway/platforms/yuanbao.py +4873 -0
- package/gateway/platforms/yuanbao_media.py +645 -0
- package/gateway/platforms/yuanbao_proto.py +1209 -0
- package/gateway/platforms/yuanbao_sticker.py +558 -0
- package/gateway/restart.py +20 -0
- package/gateway/run.py +17074 -0
- package/gateway/runtime_footer.py +150 -0
- package/gateway/session.py +1399 -0
- package/gateway/session_context.py +156 -0
- package/gateway/shutdown_forensics.py +462 -0
- package/gateway/slash_access.py +229 -0
- package/gateway/status.py +972 -0
- package/gateway/sticker_cache.py +111 -0
- package/gateway/stream_consumer.py +1286 -0
- package/gateway/whatsapp_identity.py +156 -0
- package/hermes_cli/__init__.py +47 -0
- package/hermes_cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/auth.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/banner.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/browser_connect.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/callbacks.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/checkpoints.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/cli_output.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/codex_models.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/codex_runtime_switch.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/colors.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/commands.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/config.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/copilot_auth.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/curator.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/curses_ui.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/debug.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/default_soul.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/env_loader.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/fallback_cmd.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/gateway.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/gateway_windows.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/goals.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/inventory.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/kanban.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/kanban_db.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/main.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_catalog.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_normalize.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_switch.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/models.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/nous_subscription.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/pairing.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/platforms.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/plugins.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/profiles.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/providers.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/pt_input_extras.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/runtime_provider.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/security_advisories.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/setup.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/skills_hub.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/skin_engine.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/stdio.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/timeouts.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/tips.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/tools_config.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/voice.cpython-312.pyc +0 -0
- package/hermes_cli/_parser.py +365 -0
- package/hermes_cli/_subprocess_compat.py +175 -0
- package/hermes_cli/auth.py +6299 -0
- package/hermes_cli/auth_commands.py +749 -0
- package/hermes_cli/azure_detect.py +300 -0
- package/hermes_cli/backup.py +938 -0
- package/hermes_cli/banner.py +703 -0
- package/hermes_cli/browser_connect.py +139 -0
- package/hermes_cli/callbacks.py +243 -0
- package/hermes_cli/checkpoints.py +244 -0
- package/hermes_cli/claw.py +810 -0
- package/hermes_cli/cli_output.py +78 -0
- package/hermes_cli/clipboard.py +495 -0
- package/hermes_cli/codex_models.py +198 -0
- package/hermes_cli/codex_runtime_plugin_migration.py +757 -0
- package/hermes_cli/codex_runtime_switch.py +266 -0
- package/hermes_cli/colors.py +38 -0
- package/hermes_cli/commands.py +1728 -0
- package/hermes_cli/completion.py +315 -0
- package/hermes_cli/config.py +5382 -0
- package/hermes_cli/copilot_auth.py +392 -0
- package/hermes_cli/cron.py +313 -0
- package/hermes_cli/curator.py +598 -0
- package/hermes_cli/curses_ui.py +472 -0
- package/hermes_cli/debug.py +747 -0
- package/hermes_cli/default_soul.py +11 -0
- package/hermes_cli/dep_ensure.py +107 -0
- package/hermes_cli/dingtalk_auth.py +293 -0
- package/hermes_cli/doctor.py +1863 -0
- package/hermes_cli/dump.py +326 -0
- package/hermes_cli/env_loader.py +175 -0
- package/hermes_cli/fallback_cmd.py +361 -0
- package/hermes_cli/gateway.py +5422 -0
- package/hermes_cli/gateway_windows.py +692 -0
- package/hermes_cli/goals.py +757 -0
- package/hermes_cli/hooks.py +385 -0
- package/hermes_cli/inventory.py +240 -0
- package/hermes_cli/kanban.py +2252 -0
- package/hermes_cli/kanban_db.py +4840 -0
- package/hermes_cli/kanban_diagnostics.py +776 -0
- package/hermes_cli/kanban_specify.py +266 -0
- package/hermes_cli/logs.py +391 -0
- package/hermes_cli/main.py +12396 -0
- package/hermes_cli/mcp_config.py +781 -0
- package/hermes_cli/memory_setup.py +465 -0
- package/hermes_cli/model_catalog.py +330 -0
- package/hermes_cli/model_normalize.py +473 -0
- package/hermes_cli/model_switch.py +1777 -0
- package/hermes_cli/models.py +3789 -0
- package/hermes_cli/nous_subscription.py +799 -0
- package/hermes_cli/oneshot.py +351 -0
- package/hermes_cli/pairing.py +115 -0
- package/hermes_cli/platforms.py +83 -0
- package/hermes_cli/plugins.py +1562 -0
- package/hermes_cli/plugins_cmd.py +1587 -0
- package/hermes_cli/profile_distribution.py +703 -0
- package/hermes_cli/profiles.py +1319 -0
- package/hermes_cli/providers.py +720 -0
- package/hermes_cli/proxy/__init__.py +20 -0
- package/hermes_cli/proxy/adapters/__init__.py +35 -0
- package/hermes_cli/proxy/adapters/base.py +94 -0
- package/hermes_cli/proxy/adapters/nous_portal.py +137 -0
- package/hermes_cli/proxy/cli.py +141 -0
- package/hermes_cli/proxy/server.py +265 -0
- package/hermes_cli/pt_input_extras.py +83 -0
- package/hermes_cli/pty_bridge.py +237 -0
- package/hermes_cli/relaunch.py +205 -0
- package/hermes_cli/runtime_provider.py +1428 -0
- package/hermes_cli/security_advisories.py +452 -0
- package/hermes_cli/setup.py +3559 -0
- package/hermes_cli/skills_config.py +177 -0
- package/hermes_cli/skills_hub.py +1595 -0
- package/hermes_cli/skin_engine.py +929 -0
- package/hermes_cli/slack_cli.py +160 -0
- package/hermes_cli/status.py +550 -0
- package/hermes_cli/stdio.py +252 -0
- package/hermes_cli/timeouts.py +82 -0
- package/hermes_cli/tips.py +487 -0
- package/hermes_cli/tools_config.py +3151 -0
- package/hermes_cli/uninstall.py +681 -0
- package/hermes_cli/vercel_auth.py +70 -0
- package/hermes_cli/voice.py +846 -0
- package/hermes_cli/web_server.py +4438 -0
- package/hermes_cli/webhook.py +275 -0
- package/locales/af.yaml +350 -0
- package/locales/de.yaml +350 -0
- package/locales/en.yaml +365 -0
- package/locales/es.yaml +350 -0
- package/locales/fr.yaml +350 -0
- package/locales/ga.yaml +354 -0
- package/locales/hu.yaml +350 -0
- package/locales/it.yaml +350 -0
- package/locales/ja.yaml +350 -0
- package/locales/ko.yaml +350 -0
- package/locales/pt.yaml +350 -0
- package/locales/ru.yaml +350 -0
- package/locales/tr.yaml +350 -0
- package/locales/uk.yaml +350 -0
- package/locales/zh-hant.yaml +350 -0
- package/locales/zh.yaml +350 -0
- package/mcp_serve.py +898 -0
- package/model_tools.py +899 -0
- package/optional-skills/DESCRIPTION.md +24 -0
- package/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
- package/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +144 -0
- package/optional-skills/autonomous-ai-agents/honcho/SKILL.md +431 -0
- package/optional-skills/blockchain/evm/SKILL.md +211 -0
- package/optional-skills/blockchain/evm/scripts/evm_client.py +1508 -0
- package/optional-skills/blockchain/hyperliquid/SKILL.md +211 -0
- package/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1660 -0
- package/optional-skills/blockchain/solana/SKILL.md +208 -0
- package/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
- package/optional-skills/communication/DESCRIPTION.md +1 -0
- package/optional-skills/communication/one-three-one-rule/SKILL.md +104 -0
- package/optional-skills/creative/blender-mcp/SKILL.md +117 -0
- package/optional-skills/creative/concept-diagrams/SKILL.md +362 -0
- package/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
- package/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
- package/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
- package/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
- package/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
- package/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
- package/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
- package/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
- package/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
- package/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
- package/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
- package/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
- package/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
- package/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
- package/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
- package/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
- package/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
- package/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
- package/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
- package/optional-skills/creative/hyperframes/SKILL.md +191 -0
- package/optional-skills/creative/hyperframes/references/cli.md +185 -0
- package/optional-skills/creative/hyperframes/references/composition.md +129 -0
- package/optional-skills/creative/hyperframes/references/features.md +289 -0
- package/optional-skills/creative/hyperframes/references/gsap.md +136 -0
- package/optional-skills/creative/hyperframes/references/troubleshooting.md +137 -0
- package/optional-skills/creative/hyperframes/references/website-to-video.md +145 -0
- package/optional-skills/creative/hyperframes/scripts/setup.sh +135 -0
- package/optional-skills/creative/kanban-video-orchestrator/SKILL.md +207 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/brief.md.tmpl +79 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +185 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/soul.md.tmpl +38 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/examples.md +227 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/intake.md +166 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +276 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/monitoring.md +180 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/role-archetypes.md +298 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +317 -0
- package/optional-skills/creative/kanban-video-orchestrator/scripts/bootstrap_pipeline.py +501 -0
- package/optional-skills/creative/kanban-video-orchestrator/scripts/monitor.py +195 -0
- package/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
- package/optional-skills/creative/meme-generation/SKILL.md +130 -0
- package/optional-skills/creative/meme-generation/scripts/generate_meme.py +471 -0
- package/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
- package/optional-skills/devops/cli/SKILL.md +156 -0
- package/optional-skills/devops/cli/references/app-discovery.md +112 -0
- package/optional-skills/devops/cli/references/authentication.md +59 -0
- package/optional-skills/devops/cli/references/cli-reference.md +104 -0
- package/optional-skills/devops/cli/references/running-apps.md +171 -0
- package/optional-skills/devops/docker-management/SKILL.md +281 -0
- package/optional-skills/devops/pinggy-tunnel/SKILL.md +309 -0
- package/optional-skills/devops/watchers/SKILL.md +112 -0
- package/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
- package/optional-skills/devops/watchers/scripts/watch_github.py +168 -0
- package/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
- package/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
- package/optional-skills/dogfood/DESCRIPTION.md +3 -0
- package/optional-skills/dogfood/adversarial-ux-test/SKILL.md +191 -0
- package/optional-skills/email/agentmail/SKILL.md +126 -0
- package/optional-skills/finance/3-statement-model/SKILL.md +433 -0
- package/optional-skills/finance/3-statement-model/references/formatting.md +118 -0
- package/optional-skills/finance/3-statement-model/references/formulas.md +292 -0
- package/optional-skills/finance/3-statement-model/references/sec-filings.md +125 -0
- package/optional-skills/finance/comps-analysis/SKILL.md +662 -0
- package/optional-skills/finance/dcf-model/SKILL.md +1270 -0
- package/optional-skills/finance/dcf-model/TROUBLESHOOTING.md +40 -0
- package/optional-skills/finance/dcf-model/requirements.txt +7 -0
- package/optional-skills/finance/dcf-model/scripts/validate_dcf.py +292 -0
- package/optional-skills/finance/excel-author/SKILL.md +244 -0
- package/optional-skills/finance/excel-author/scripts/recalc.py +88 -0
- package/optional-skills/finance/lbo-model/SKILL.md +291 -0
- package/optional-skills/finance/merger-model/SKILL.md +144 -0
- package/optional-skills/finance/pptx-author/SKILL.md +173 -0
- package/optional-skills/finance/stocks/SKILL.md +95 -0
- package/optional-skills/finance/stocks/scripts/stocks_client.py +755 -0
- package/optional-skills/health/DESCRIPTION.md +1 -0
- package/optional-skills/health/fitness-nutrition/SKILL.md +256 -0
- package/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
- package/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
- package/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +86 -0
- package/optional-skills/health/neuroskill-bci/SKILL.md +459 -0
- package/optional-skills/health/neuroskill-bci/references/api.md +286 -0
- package/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
- package/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
- package/optional-skills/mcp/DESCRIPTION.md +3 -0
- package/optional-skills/mcp/fastmcp/SKILL.md +300 -0
- package/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
- package/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
- package/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
- package/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
- package/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
- package/optional-skills/mcp/mcporter/SKILL.md +123 -0
- package/optional-skills/migration/DESCRIPTION.md +2 -0
- package/optional-skills/migration/openclaw-migration/SKILL.md +298 -0
- package/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
- package/optional-skills/mlops/accelerate/SKILL.md +336 -0
- package/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
- package/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
- package/optional-skills/mlops/accelerate/references/performance.md +525 -0
- package/optional-skills/mlops/chroma/SKILL.md +410 -0
- package/optional-skills/mlops/chroma/references/integration.md +38 -0
- package/optional-skills/mlops/clip/SKILL.md +257 -0
- package/optional-skills/mlops/clip/references/applications.md +207 -0
- package/optional-skills/mlops/faiss/SKILL.md +225 -0
- package/optional-skills/mlops/faiss/references/index_types.md +280 -0
- package/optional-skills/mlops/flash-attention/SKILL.md +367 -0
- package/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
- package/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
- package/optional-skills/mlops/guidance/SKILL.md +576 -0
- package/optional-skills/mlops/guidance/references/backends.md +554 -0
- package/optional-skills/mlops/guidance/references/constraints.md +674 -0
- package/optional-skills/mlops/guidance/references/examples.md +767 -0
- package/optional-skills/mlops/huggingface-tokenizers/SKILL.md +520 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
- package/optional-skills/mlops/inference/outlines/SKILL.md +656 -0
- package/optional-skills/mlops/inference/outlines/references/backends.md +615 -0
- package/optional-skills/mlops/inference/outlines/references/examples.md +773 -0
- package/optional-skills/mlops/inference/outlines/references/json_generation.md +652 -0
- package/optional-skills/mlops/instructor/SKILL.md +744 -0
- package/optional-skills/mlops/instructor/references/examples.md +107 -0
- package/optional-skills/mlops/instructor/references/providers.md +70 -0
- package/optional-skills/mlops/instructor/references/validation.md +606 -0
- package/optional-skills/mlops/lambda-labs/SKILL.md +549 -0
- package/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
- package/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
- package/optional-skills/mlops/llava/SKILL.md +308 -0
- package/optional-skills/mlops/llava/references/training.md +197 -0
- package/optional-skills/mlops/modal/SKILL.md +345 -0
- package/optional-skills/mlops/modal/references/advanced-usage.md +503 -0
- package/optional-skills/mlops/modal/references/troubleshooting.md +494 -0
- package/optional-skills/mlops/nemo-curator/SKILL.md +387 -0
- package/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
- package/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
- package/optional-skills/mlops/peft/SKILL.md +435 -0
- package/optional-skills/mlops/peft/references/advanced-usage.md +514 -0
- package/optional-skills/mlops/peft/references/troubleshooting.md +480 -0
- package/optional-skills/mlops/pinecone/SKILL.md +362 -0
- package/optional-skills/mlops/pinecone/references/deployment.md +181 -0
- package/optional-skills/mlops/pytorch-fsdp/SKILL.md +130 -0
- package/optional-skills/mlops/pytorch-fsdp/references/index.md +7 -0
- package/optional-skills/mlops/pytorch-fsdp/references/other.md +4261 -0
- package/optional-skills/mlops/pytorch-lightning/SKILL.md +350 -0
- package/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
- package/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
- package/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
- package/optional-skills/mlops/qdrant/SKILL.md +497 -0
- package/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
- package/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
- package/optional-skills/mlops/saelens/SKILL.md +390 -0
- package/optional-skills/mlops/saelens/references/README.md +69 -0
- package/optional-skills/mlops/saelens/references/api.md +333 -0
- package/optional-skills/mlops/saelens/references/tutorials.md +318 -0
- package/optional-skills/mlops/simpo/SKILL.md +223 -0
- package/optional-skills/mlops/simpo/references/datasets.md +478 -0
- package/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
- package/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
- package/optional-skills/mlops/slime/SKILL.md +468 -0
- package/optional-skills/mlops/slime/references/api-reference.md +392 -0
- package/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
- package/optional-skills/mlops/stable-diffusion/SKILL.md +523 -0
- package/optional-skills/mlops/stable-diffusion/references/advanced-usage.md +716 -0
- package/optional-skills/mlops/stable-diffusion/references/troubleshooting.md +555 -0
- package/optional-skills/mlops/tensorrt-llm/SKILL.md +191 -0
- package/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
- package/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
- package/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
- package/optional-skills/mlops/torchtitan/SKILL.md +362 -0
- package/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
- package/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
- package/optional-skills/mlops/torchtitan/references/float8.md +133 -0
- package/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
- package/optional-skills/mlops/training/axolotl/SKILL.md +166 -0
- package/optional-skills/mlops/training/axolotl/references/api.md +5548 -0
- package/optional-skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
- package/optional-skills/mlops/training/axolotl/references/index.md +15 -0
- package/optional-skills/mlops/training/axolotl/references/other.md +3563 -0
- package/optional-skills/mlops/training/trl-fine-tuning/SKILL.md +463 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/grpo-training.md +504 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
- package/optional-skills/mlops/training/trl-fine-tuning/templates/basic_grpo_training.py +228 -0
- package/optional-skills/mlops/training/unsloth/SKILL.md +84 -0
- package/optional-skills/mlops/training/unsloth/references/index.md +7 -0
- package/optional-skills/mlops/training/unsloth/references/llms-full.md +16799 -0
- package/optional-skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
- package/optional-skills/mlops/training/unsloth/references/llms.md +82 -0
- package/optional-skills/mlops/whisper/SKILL.md +321 -0
- package/optional-skills/mlops/whisper/references/languages.md +189 -0
- package/optional-skills/productivity/canvas/SKILL.md +98 -0
- package/optional-skills/productivity/canvas/scripts/canvas_api.py +157 -0
- package/optional-skills/productivity/here-now/SKILL.md +217 -0
- package/optional-skills/productivity/here-now/scripts/drive.sh +406 -0
- package/optional-skills/productivity/here-now/scripts/publish.sh +445 -0
- package/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
- package/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
- package/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
- package/optional-skills/productivity/shop-app/SKILL.md +340 -0
- package/optional-skills/productivity/shopify/SKILL.md +373 -0
- package/optional-skills/productivity/siyuan/SKILL.md +298 -0
- package/optional-skills/productivity/telephony/SKILL.md +418 -0
- package/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
- package/optional-skills/research/bioinformatics/SKILL.md +235 -0
- package/optional-skills/research/darwinian-evolver/SKILL.md +199 -0
- package/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
- package/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +69 -0
- package/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
- package/optional-skills/research/domain-intel/SKILL.md +97 -0
- package/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
- package/optional-skills/research/drug-discovery/SKILL.md +227 -0
- package/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
- package/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
- package/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
- package/optional-skills/research/duckduckgo-search/SKILL.md +238 -0
- package/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
- package/optional-skills/research/gitnexus-explorer/SKILL.md +214 -0
- package/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
- package/optional-skills/research/osint-investigation/SKILL.md +277 -0
- package/optional-skills/research/osint-investigation/references/sources/courtlistener.md +98 -0
- package/optional-skills/research/osint-investigation/references/sources/gdelt.md +104 -0
- package/optional-skills/research/osint-investigation/references/sources/icij-offshore.md +104 -0
- package/optional-skills/research/osint-investigation/references/sources/nyc-acris.md +90 -0
- package/optional-skills/research/osint-investigation/references/sources/ofac-sdn.md +92 -0
- package/optional-skills/research/osint-investigation/references/sources/opencorporates.md +103 -0
- package/optional-skills/research/osint-investigation/references/sources/sec-edgar.md +83 -0
- package/optional-skills/research/osint-investigation/references/sources/senate-ld.md +89 -0
- package/optional-skills/research/osint-investigation/references/sources/usaspending.md +97 -0
- package/optional-skills/research/osint-investigation/references/sources/wayback.md +93 -0
- package/optional-skills/research/osint-investigation/references/sources/wikipedia.md +107 -0
- package/optional-skills/research/osint-investigation/scripts/_http.py +82 -0
- package/optional-skills/research/osint-investigation/scripts/_normalize.py +67 -0
- package/optional-skills/research/osint-investigation/scripts/build_findings.py +221 -0
- package/optional-skills/research/osint-investigation/scripts/entity_resolution.py +228 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_courtlistener.py +149 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_gdelt.py +162 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_icij_offshore.py +234 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_nyc_acris.py +203 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_ofac_sdn.py +175 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_opencorporates.py +192 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_sec_edgar.py +184 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_senate_ld.py +146 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_usaspending.py +170 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_wayback.py +142 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_wikipedia.py +267 -0
- package/optional-skills/research/osint-investigation/scripts/timing_analysis.py +253 -0
- package/optional-skills/research/osint-investigation/templates/source-template.md +59 -0
- package/optional-skills/research/parallel-cli/SKILL.md +391 -0
- package/optional-skills/research/qmd/SKILL.md +441 -0
- package/optional-skills/research/scrapling/SKILL.md +336 -0
- package/optional-skills/research/searxng-search/SKILL.md +212 -0
- package/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
- package/optional-skills/security/1password/SKILL.md +163 -0
- package/optional-skills/security/1password/references/cli-examples.md +31 -0
- package/optional-skills/security/1password/references/get-started.md +21 -0
- package/optional-skills/security/DESCRIPTION.md +3 -0
- package/optional-skills/security/oss-forensics/SKILL.md +423 -0
- package/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
- package/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
- package/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
- package/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
- package/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
- package/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
- package/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
- package/optional-skills/security/sherlock/SKILL.md +193 -0
- package/optional-skills/software-development/rest-graphql-debug/SKILL.md +514 -0
- package/optional-skills/web-development/DESCRIPTION.md +5 -0
- package/optional-skills/web-development/page-agent/SKILL.md +190 -0
- package/package.json +78 -0
- package/plugins/__init__.py +1 -0
- package/plugins/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/context_engine/__init__.py +219 -0
- package/plugins/disk-cleanup/README.md +51 -0
- package/plugins/disk-cleanup/__init__.py +316 -0
- package/plugins/disk-cleanup/disk_cleanup.py +497 -0
- package/plugins/disk-cleanup/plugin.yaml +7 -0
- package/plugins/example-dashboard/dashboard/manifest.json +14 -0
- package/plugins/example-dashboard/dashboard/plugin_api.py +17 -0
- package/plugins/google_meet/README.md +131 -0
- package/plugins/google_meet/SKILL.md +148 -0
- package/plugins/google_meet/__init__.py +103 -0
- package/plugins/google_meet/audio_bridge.py +244 -0
- package/plugins/google_meet/cli.py +479 -0
- package/plugins/google_meet/meet_bot.py +852 -0
- package/plugins/google_meet/node/__init__.py +54 -0
- package/plugins/google_meet/node/cli.py +125 -0
- package/plugins/google_meet/node/client.py +107 -0
- package/plugins/google_meet/node/protocol.py +124 -0
- package/plugins/google_meet/node/registry.py +113 -0
- package/plugins/google_meet/node/server.py +201 -0
- package/plugins/google_meet/plugin.yaml +16 -0
- package/plugins/google_meet/process_manager.py +324 -0
- package/plugins/google_meet/realtime/__init__.py +10 -0
- package/plugins/google_meet/realtime/openai_client.py +332 -0
- package/plugins/google_meet/tools.py +348 -0
- package/plugins/hermes-achievements/LICENSE +21 -0
- package/plugins/hermes-achievements/README.md +150 -0
- package/plugins/hermes-achievements/dashboard/dist/index.js +732 -0
- package/plugins/hermes-achievements/dashboard/dist/style.css +146 -0
- package/plugins/hermes-achievements/dashboard/manifest.json +11 -0
- package/plugins/hermes-achievements/dashboard/plugin_api.py +1062 -0
- package/plugins/hermes-achievements/docs/achievements-performance-implementation-plan.md +157 -0
- package/plugins/hermes-achievements/docs/achievements-performance-implementation-spec.md +219 -0
- package/plugins/hermes-achievements/docs/achievements-performance-spec.md +174 -0
- package/plugins/hermes-achievements/docs/assets/achievements-dashboard-hd.png +0 -0
- package/plugins/hermes-achievements/docs/assets/achievements-tier-showcase-hd.png +0 -0
- package/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
- package/plugins/image_gen/openai/__init__.py +303 -0
- package/plugins/image_gen/openai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/openai/plugin.yaml +7 -0
- package/plugins/image_gen/openai-codex/__init__.py +378 -0
- package/plugins/image_gen/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/openai-codex/plugin.yaml +5 -0
- package/plugins/image_gen/xai/__init__.py +316 -0
- package/plugins/image_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/xai/plugin.yaml +7 -0
- package/plugins/kanban/dashboard/dist/index.js +3143 -0
- package/plugins/kanban/dashboard/dist/style.css +1500 -0
- package/plugins/kanban/dashboard/manifest.json +14 -0
- package/plugins/kanban/dashboard/plugin_api.py +1612 -0
- package/plugins/kanban/systemd/hermes-kanban-dispatcher.service +32 -0
- package/plugins/memory/__init__.py +408 -0
- package/plugins/memory/byterover/README.md +41 -0
- package/plugins/memory/byterover/__init__.py +384 -0
- package/plugins/memory/byterover/plugin.yaml +9 -0
- package/plugins/memory/hindsight/README.md +138 -0
- package/plugins/memory/hindsight/__init__.py +1758 -0
- package/plugins/memory/hindsight/plugin.yaml +8 -0
- package/plugins/memory/holographic/README.md +36 -0
- package/plugins/memory/holographic/__init__.py +409 -0
- package/plugins/memory/holographic/holographic.py +203 -0
- package/plugins/memory/holographic/plugin.yaml +5 -0
- package/plugins/memory/holographic/retrieval.py +593 -0
- package/plugins/memory/holographic/store.py +579 -0
- package/plugins/memory/honcho/README.md +328 -0
- package/plugins/memory/honcho/__init__.py +1329 -0
- package/plugins/memory/honcho/cli.py +1452 -0
- package/plugins/memory/honcho/client.py +784 -0
- package/plugins/memory/honcho/plugin.yaml +7 -0
- package/plugins/memory/honcho/session.py +1255 -0
- package/plugins/memory/mem0/README.md +38 -0
- package/plugins/memory/mem0/__init__.py +374 -0
- package/plugins/memory/mem0/plugin.yaml +5 -0
- package/plugins/memory/openviking/README.md +40 -0
- package/plugins/memory/openviking/__init__.py +945 -0
- package/plugins/memory/openviking/plugin.yaml +9 -0
- package/plugins/memory/retaindb/README.md +40 -0
- package/plugins/memory/retaindb/__init__.py +767 -0
- package/plugins/memory/retaindb/plugin.yaml +7 -0
- package/plugins/memory/supermemory/README.md +99 -0
- package/plugins/memory/supermemory/__init__.py +792 -0
- package/plugins/memory/supermemory/plugin.yaml +5 -0
- package/plugins/model-providers/README.md +70 -0
- package/plugins/model-providers/ai-gateway/__init__.py +43 -0
- package/plugins/model-providers/ai-gateway/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/ai-gateway/plugin.yaml +5 -0
- package/plugins/model-providers/alibaba/__init__.py +13 -0
- package/plugins/model-providers/alibaba/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/alibaba/plugin.yaml +5 -0
- package/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
- package/plugins/model-providers/alibaba-coding-plan/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
- package/plugins/model-providers/anthropic/__init__.py +52 -0
- package/plugins/model-providers/anthropic/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/anthropic/plugin.yaml +5 -0
- package/plugins/model-providers/arcee/__init__.py +13 -0
- package/plugins/model-providers/arcee/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/arcee/plugin.yaml +5 -0
- package/plugins/model-providers/azure-foundry/__init__.py +21 -0
- package/plugins/model-providers/azure-foundry/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
- package/plugins/model-providers/bedrock/__init__.py +29 -0
- package/plugins/model-providers/bedrock/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/bedrock/plugin.yaml +5 -0
- package/plugins/model-providers/copilot/__init__.py +58 -0
- package/plugins/model-providers/copilot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/copilot/plugin.yaml +5 -0
- package/plugins/model-providers/copilot-acp/__init__.py +34 -0
- package/plugins/model-providers/copilot-acp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
- package/plugins/model-providers/custom/__init__.py +68 -0
- package/plugins/model-providers/custom/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/custom/plugin.yaml +5 -0
- package/plugins/model-providers/deepseek/__init__.py +99 -0
- package/plugins/model-providers/deepseek/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/deepseek/plugin.yaml +5 -0
- package/plugins/model-providers/gemini/__init__.py +72 -0
- package/plugins/model-providers/gemini/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/gemini/plugin.yaml +5 -0
- package/plugins/model-providers/gmi/__init__.py +31 -0
- package/plugins/model-providers/gmi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/gmi/plugin.yaml +5 -0
- package/plugins/model-providers/huggingface/__init__.py +20 -0
- package/plugins/model-providers/huggingface/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/huggingface/plugin.yaml +5 -0
- package/plugins/model-providers/kilocode/__init__.py +14 -0
- package/plugins/model-providers/kilocode/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/kilocode/plugin.yaml +5 -0
- package/plugins/model-providers/kimi-coding/__init__.py +71 -0
- package/plugins/model-providers/kimi-coding/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
- package/plugins/model-providers/minimax/__init__.py +45 -0
- package/plugins/model-providers/minimax/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/minimax/plugin.yaml +5 -0
- package/plugins/model-providers/nous/__init__.py +54 -0
- package/plugins/model-providers/nous/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/nous/plugin.yaml +5 -0
- package/plugins/model-providers/novita/__init__.py +27 -0
- package/plugins/model-providers/novita/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/novita/plugin.yaml +5 -0
- package/plugins/model-providers/nvidia/__init__.py +21 -0
- package/plugins/model-providers/nvidia/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/nvidia/plugin.yaml +5 -0
- package/plugins/model-providers/ollama-cloud/__init__.py +14 -0
- package/plugins/model-providers/ollama-cloud/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
- package/plugins/model-providers/openai-codex/__init__.py +15 -0
- package/plugins/model-providers/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/openai-codex/plugin.yaml +5 -0
- package/plugins/model-providers/opencode-zen/__init__.py +30 -0
- package/plugins/model-providers/opencode-zen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
- package/plugins/model-providers/openrouter/__init__.py +115 -0
- package/plugins/model-providers/openrouter/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/openrouter/plugin.yaml +5 -0
- package/plugins/model-providers/qwen-oauth/__init__.py +82 -0
- package/plugins/model-providers/qwen-oauth/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
- package/plugins/model-providers/stepfun/__init__.py +14 -0
- package/plugins/model-providers/stepfun/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/stepfun/plugin.yaml +5 -0
- package/plugins/model-providers/xai/__init__.py +15 -0
- package/plugins/model-providers/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/xai/plugin.yaml +5 -0
- package/plugins/model-providers/xiaomi/__init__.py +14 -0
- package/plugins/model-providers/xiaomi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/xiaomi/plugin.yaml +5 -0
- package/plugins/model-providers/zai/__init__.py +21 -0
- package/plugins/model-providers/zai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/zai/plugin.yaml +5 -0
- package/plugins/observability/langfuse/README.md +53 -0
- package/plugins/observability/langfuse/__init__.py +1004 -0
- package/plugins/observability/langfuse/plugin.yaml +14 -0
- package/plugins/platforms/google_chat/__init__.py +3 -0
- package/plugins/platforms/google_chat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/google_chat/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/google_chat/adapter.py +3343 -0
- package/plugins/platforms/google_chat/oauth.py +639 -0
- package/plugins/platforms/google_chat/plugin.yaml +39 -0
- package/plugins/platforms/irc/__init__.py +3 -0
- package/plugins/platforms/irc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/irc/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/irc/adapter.py +969 -0
- package/plugins/platforms/irc/plugin.yaml +54 -0
- package/plugins/platforms/line/__init__.py +3 -0
- package/plugins/platforms/line/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/line/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/line/adapter.py +1639 -0
- package/plugins/platforms/line/plugin.yaml +65 -0
- package/plugins/platforms/simplex/__init__.py +3 -0
- package/plugins/platforms/simplex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/simplex/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/simplex/adapter.py +746 -0
- package/plugins/platforms/simplex/plugin.yaml +37 -0
- package/plugins/platforms/teams/__init__.py +3 -0
- package/plugins/platforms/teams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/teams/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/teams/adapter.py +1188 -0
- package/plugins/platforms/teams/plugin.yaml +48 -0
- package/plugins/spotify/__init__.py +66 -0
- package/plugins/spotify/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/spotify/__pycache__/client.cpython-312.pyc +0 -0
- package/plugins/spotify/__pycache__/tools.cpython-312.pyc +0 -0
- package/plugins/spotify/client.py +435 -0
- package/plugins/spotify/plugin.yaml +13 -0
- package/plugins/spotify/tools.py +454 -0
- package/plugins/teams_pipeline/__init__.py +23 -0
- package/plugins/teams_pipeline/cli.py +463 -0
- package/plugins/teams_pipeline/meetings.py +333 -0
- package/plugins/teams_pipeline/models.py +350 -0
- package/plugins/teams_pipeline/pipeline.py +692 -0
- package/plugins/teams_pipeline/plugin.yaml +9 -0
- package/plugins/teams_pipeline/runtime.py +135 -0
- package/plugins/teams_pipeline/store.py +194 -0
- package/plugins/teams_pipeline/subscriptions.py +249 -0
- package/plugins/video_gen/fal/__init__.py +523 -0
- package/plugins/video_gen/fal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/video_gen/fal/plugin.yaml +7 -0
- package/plugins/video_gen/xai/__init__.py +441 -0
- package/plugins/video_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/video_gen/xai/plugin.yaml +7 -0
- package/plugins/web/__init__.py +7 -0
- package/plugins/web/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/__init__.py +14 -0
- package/plugins/web/brave_free/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/plugin.yaml +7 -0
- package/plugins/web/brave_free/provider.py +137 -0
- package/plugins/web/ddgs/__init__.py +15 -0
- package/plugins/web/ddgs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/ddgs/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/ddgs/plugin.yaml +7 -0
- package/plugins/web/ddgs/provider.py +104 -0
- package/plugins/web/exa/__init__.py +15 -0
- package/plugins/web/exa/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/exa/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/exa/plugin.yaml +7 -0
- package/plugins/web/exa/provider.py +212 -0
- package/plugins/web/firecrawl/__init__.py +28 -0
- package/plugins/web/firecrawl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/firecrawl/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/firecrawl/plugin.yaml +7 -0
- package/plugins/web/firecrawl/provider.py +773 -0
- package/plugins/web/parallel/__init__.py +16 -0
- package/plugins/web/parallel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/parallel/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/parallel/plugin.yaml +7 -0
- package/plugins/web/parallel/provider.py +291 -0
- package/plugins/web/searxng/__init__.py +15 -0
- package/plugins/web/searxng/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/searxng/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/searxng/plugin.yaml +7 -0
- package/plugins/web/searxng/provider.py +140 -0
- package/plugins/web/tavily/__init__.py +15 -0
- package/plugins/web/tavily/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/tavily/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/tavily/plugin.yaml +7 -0
- package/plugins/web/tavily/provider.py +285 -0
- package/providers/README.md +78 -0
- package/providers/__init__.py +192 -0
- package/providers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/providers/__pycache__/base.cpython-312.pyc +0 -0
- package/providers/base.py +184 -0
- package/pyproject.toml +255 -0
- package/run_agent.py +16409 -0
- package/scripts/benchmark_browser_eval.py +138 -0
- package/scripts/build_model_catalog.py +95 -0
- package/scripts/build_skills_index.py +325 -0
- package/scripts/check-windows-footguns.py +624 -0
- package/scripts/contributor_audit.py +473 -0
- package/scripts/discord-voice-doctor.py +396 -0
- package/scripts/hermes-gateway +416 -0
- package/scripts/install.cmd +28 -0
- package/scripts/install.ps1 +1611 -0
- package/scripts/install.sh +2007 -0
- package/scripts/install_psutil_android.py +117 -0
- package/scripts/keystroke_diagnostic.py +81 -0
- package/scripts/kill_modal.sh +34 -0
- package/scripts/lib/node-bootstrap.sh +238 -0
- package/scripts/lint_diff.py +207 -0
- package/scripts/postinstall.js +150 -0
- package/scripts/profile-tui.py +626 -0
- package/scripts/release.py +1680 -0
- package/scripts/run_tests.sh +129 -0
- package/scripts/sample_and_compress.py +409 -0
- package/scripts/setup_open_webui.sh +349 -0
- package/scripts/whatsapp-bridge/allowlist.js +88 -0
- package/scripts/whatsapp-bridge/allowlist.test.mjs +80 -0
- package/scripts/whatsapp-bridge/bridge.js +729 -0
- package/scripts/whatsapp-bridge/package-lock.json +2141 -0
- package/scripts/whatsapp-bridge/package.json +19 -0
- package/skills/apple/DESCRIPTION.md +2 -0
- package/skills/apple/apple-notes/SKILL.md +90 -0
- package/skills/apple/apple-reminders/SKILL.md +98 -0
- package/skills/apple/findmy/SKILL.md +131 -0
- package/skills/apple/imessage/SKILL.md +102 -0
- package/skills/apple/macos-computer-use/SKILL.md +201 -0
- package/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
- package/skills/autonomous-ai-agents/claude-code/SKILL.md +745 -0
- package/skills/autonomous-ai-agents/codex/SKILL.md +130 -0
- package/skills/autonomous-ai-agents/hermes-agent/SKILL.md +1014 -0
- package/skills/autonomous-ai-agents/opencode/SKILL.md +219 -0
- package/skills/creative/DESCRIPTION.md +3 -0
- package/skills/creative/architecture-diagram/SKILL.md +148 -0
- package/skills/creative/architecture-diagram/templates/template.html +319 -0
- package/skills/creative/ascii-art/SKILL.md +322 -0
- package/skills/creative/ascii-video/README.md +290 -0
- package/skills/creative/ascii-video/SKILL.md +241 -0
- package/skills/creative/ascii-video/references/architecture.md +802 -0
- package/skills/creative/ascii-video/references/composition.md +892 -0
- package/skills/creative/ascii-video/references/effects.md +1865 -0
- package/skills/creative/ascii-video/references/inputs.md +685 -0
- package/skills/creative/ascii-video/references/optimization.md +688 -0
- package/skills/creative/ascii-video/references/scenes.md +1011 -0
- package/skills/creative/ascii-video/references/shaders.md +1385 -0
- package/skills/creative/ascii-video/references/troubleshooting.md +367 -0
- package/skills/creative/baoyu-comic/PORT_NOTES.md +77 -0
- package/skills/creative/baoyu-comic/SKILL.md +247 -0
- package/skills/creative/baoyu-comic/references/analysis-framework.md +176 -0
- package/skills/creative/baoyu-comic/references/art-styles/chalk.md +101 -0
- package/skills/creative/baoyu-comic/references/art-styles/ink-brush.md +97 -0
- package/skills/creative/baoyu-comic/references/art-styles/ligne-claire.md +75 -0
- package/skills/creative/baoyu-comic/references/art-styles/manga.md +93 -0
- package/skills/creative/baoyu-comic/references/art-styles/minimalist.md +84 -0
- package/skills/creative/baoyu-comic/references/art-styles/realistic.md +89 -0
- package/skills/creative/baoyu-comic/references/auto-selection.md +71 -0
- package/skills/creative/baoyu-comic/references/base-prompt.md +98 -0
- package/skills/creative/baoyu-comic/references/character-template.md +180 -0
- package/skills/creative/baoyu-comic/references/layouts/cinematic.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/dense.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/four-panel.md +40 -0
- package/skills/creative/baoyu-comic/references/layouts/mixed.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/splash.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/standard.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/webtoon.md +30 -0
- package/skills/creative/baoyu-comic/references/ohmsha-guide.md +85 -0
- package/skills/creative/baoyu-comic/references/partial-workflows.md +106 -0
- package/skills/creative/baoyu-comic/references/presets/concept-story.md +121 -0
- package/skills/creative/baoyu-comic/references/presets/four-panel.md +107 -0
- package/skills/creative/baoyu-comic/references/presets/ohmsha.md +114 -0
- package/skills/creative/baoyu-comic/references/presets/shoujo.md +116 -0
- package/skills/creative/baoyu-comic/references/presets/wuxia.md +110 -0
- package/skills/creative/baoyu-comic/references/storyboard-template.md +143 -0
- package/skills/creative/baoyu-comic/references/tones/action.md +110 -0
- package/skills/creative/baoyu-comic/references/tones/dramatic.md +95 -0
- package/skills/creative/baoyu-comic/references/tones/energetic.md +105 -0
- package/skills/creative/baoyu-comic/references/tones/neutral.md +63 -0
- package/skills/creative/baoyu-comic/references/tones/romantic.md +100 -0
- package/skills/creative/baoyu-comic/references/tones/vintage.md +104 -0
- package/skills/creative/baoyu-comic/references/tones/warm.md +94 -0
- package/skills/creative/baoyu-comic/references/workflow.md +401 -0
- package/skills/creative/baoyu-infographic/PORT_NOTES.md +43 -0
- package/skills/creative/baoyu-infographic/SKILL.md +237 -0
- package/skills/creative/baoyu-infographic/references/analysis-framework.md +182 -0
- package/skills/creative/baoyu-infographic/references/base-prompt.md +43 -0
- package/skills/creative/baoyu-infographic/references/layouts/bento-grid.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/binary-comparison.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/bridge.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/circular-flow.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/comic-strip.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/comparison-matrix.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/dashboard.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/dense-modules.md +72 -0
- package/skills/creative/baoyu-infographic/references/layouts/funnel.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/hierarchical-layers.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/hub-spoke.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/iceberg.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/isometric-map.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/jigsaw.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/linear-progression.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/periodic-table.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/story-mountain.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/structural-breakdown.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/tree-branching.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/venn-diagram.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/winding-roadmap.md +41 -0
- package/skills/creative/baoyu-infographic/references/structured-content-template.md +244 -0
- package/skills/creative/baoyu-infographic/references/styles/aged-academia.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/bold-graphic.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/chalkboard.md +61 -0
- package/skills/creative/baoyu-infographic/references/styles/claymation.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/corporate-memphis.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/craft-handmade.md +44 -0
- package/skills/creative/baoyu-infographic/references/styles/cyberpunk-neon.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/hand-drawn-edu.md +63 -0
- package/skills/creative/baoyu-infographic/references/styles/ikea-manual.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/kawaii.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/knolling.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/lego-brick.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/morandi-journal.md +60 -0
- package/skills/creative/baoyu-infographic/references/styles/origami.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/pixel-art.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/pop-laboratory.md +48 -0
- package/skills/creative/baoyu-infographic/references/styles/retro-pop-grid.md +47 -0
- package/skills/creative/baoyu-infographic/references/styles/storybook-watercolor.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/subway-map.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/technical-schematic.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/ui-wireframe.md +29 -0
- package/skills/creative/claude-design/SKILL.md +591 -0
- package/skills/creative/comfyui/SKILL.md +612 -0
- package/skills/creative/comfyui/references/official-cli.md +255 -0
- package/skills/creative/comfyui/references/rest-api.md +312 -0
- package/skills/creative/comfyui/references/template-integrity.md +243 -0
- package/skills/creative/comfyui/references/workflow-format.md +226 -0
- package/skills/creative/comfyui/scripts/_common.py +835 -0
- package/skills/creative/comfyui/scripts/auto_fix_deps.py +225 -0
- package/skills/creative/comfyui/scripts/check_deps.py +437 -0
- package/skills/creative/comfyui/scripts/comfyui_setup.sh +286 -0
- package/skills/creative/comfyui/scripts/extract_schema.py +315 -0
- package/skills/creative/comfyui/scripts/fetch_logs.py +158 -0
- package/skills/creative/comfyui/scripts/hardware_check.py +497 -0
- package/skills/creative/comfyui/scripts/health_check.py +223 -0
- package/skills/creative/comfyui/scripts/run_batch.py +243 -0
- package/skills/creative/comfyui/scripts/run_workflow.py +796 -0
- package/skills/creative/comfyui/scripts/ws_monitor.py +267 -0
- package/skills/creative/comfyui/tests/README.md +50 -0
- package/skills/creative/comfyui/tests/conftest.py +64 -0
- package/skills/creative/comfyui/tests/pytest.ini +5 -0
- package/skills/creative/comfyui/tests/test_check_deps.py +68 -0
- package/skills/creative/comfyui/tests/test_cloud_integration.py +95 -0
- package/skills/creative/comfyui/tests/test_common.py +447 -0
- package/skills/creative/comfyui/tests/test_extract_schema.py +185 -0
- package/skills/creative/comfyui/tests/test_run_workflow.py +213 -0
- package/skills/creative/comfyui/workflows/README.md +86 -0
- package/skills/creative/comfyui/workflows/animatediff_video.json +64 -0
- package/skills/creative/comfyui/workflows/flux_dev_txt2img.json +78 -0
- package/skills/creative/comfyui/workflows/sd15_txt2img.json +49 -0
- package/skills/creative/comfyui/workflows/sdxl_img2img.json +54 -0
- package/skills/creative/comfyui/workflows/sdxl_inpaint.json +59 -0
- package/skills/creative/comfyui/workflows/sdxl_txt2img.json +49 -0
- package/skills/creative/comfyui/workflows/upscale_4x.json +27 -0
- package/skills/creative/comfyui/workflows/wan_video_t2v.json +69 -0
- package/skills/creative/creative-ideation/SKILL.md +152 -0
- package/skills/creative/creative-ideation/references/full-prompt-library.md +110 -0
- package/skills/creative/design-md/SKILL.md +199 -0
- package/skills/creative/design-md/templates/starter.md +99 -0
- package/skills/creative/excalidraw/SKILL.md +199 -0
- package/skills/creative/excalidraw/references/colors.md +44 -0
- package/skills/creative/excalidraw/references/dark-mode.md +68 -0
- package/skills/creative/excalidraw/references/examples.md +141 -0
- package/skills/creative/excalidraw/scripts/upload.py +133 -0
- package/skills/creative/humanizer/LICENSE +21 -0
- package/skills/creative/humanizer/SKILL.md +578 -0
- package/skills/creative/manim-video/README.md +23 -0
- package/skills/creative/manim-video/SKILL.md +269 -0
- package/skills/creative/manim-video/references/animation-design-thinking.md +161 -0
- package/skills/creative/manim-video/references/animations.md +282 -0
- package/skills/creative/manim-video/references/camera-and-3d.md +135 -0
- package/skills/creative/manim-video/references/decorations.md +202 -0
- package/skills/creative/manim-video/references/equations.md +216 -0
- package/skills/creative/manim-video/references/graphs-and-data.md +163 -0
- package/skills/creative/manim-video/references/mobjects.md +333 -0
- package/skills/creative/manim-video/references/paper-explainer.md +255 -0
- package/skills/creative/manim-video/references/production-quality.md +190 -0
- package/skills/creative/manim-video/references/rendering.md +185 -0
- package/skills/creative/manim-video/references/scene-planning.md +118 -0
- package/skills/creative/manim-video/references/troubleshooting.md +135 -0
- package/skills/creative/manim-video/references/updaters-and-trackers.md +260 -0
- package/skills/creative/manim-video/references/visual-design.md +124 -0
- package/skills/creative/manim-video/scripts/setup.sh +14 -0
- package/skills/creative/p5js/README.md +64 -0
- package/skills/creative/p5js/SKILL.md +556 -0
- package/skills/creative/p5js/references/animation.md +439 -0
- package/skills/creative/p5js/references/color-systems.md +352 -0
- package/skills/creative/p5js/references/core-api.md +410 -0
- package/skills/creative/p5js/references/export-pipeline.md +566 -0
- package/skills/creative/p5js/references/interaction.md +398 -0
- package/skills/creative/p5js/references/shapes-and-geometry.md +300 -0
- package/skills/creative/p5js/references/troubleshooting.md +532 -0
- package/skills/creative/p5js/references/typography.md +302 -0
- package/skills/creative/p5js/references/visual-effects.md +895 -0
- package/skills/creative/p5js/references/webgl-and-3d.md +423 -0
- package/skills/creative/p5js/scripts/export-frames.js +179 -0
- package/skills/creative/p5js/scripts/render.sh +108 -0
- package/skills/creative/p5js/scripts/serve.sh +28 -0
- package/skills/creative/p5js/scripts/setup.sh +87 -0
- package/skills/creative/p5js/templates/viewer.html +395 -0
- package/skills/creative/pixel-art/ATTRIBUTION.md +54 -0
- package/skills/creative/pixel-art/SKILL.md +218 -0
- package/skills/creative/pixel-art/references/palettes.md +49 -0
- package/skills/creative/pixel-art/scripts/__init__.py +0 -0
- package/skills/creative/pixel-art/scripts/palettes.py +167 -0
- package/skills/creative/pixel-art/scripts/pixel_art.py +162 -0
- package/skills/creative/pixel-art/scripts/pixel_art_video.py +345 -0
- package/skills/creative/popular-web-designs/SKILL.md +214 -0
- package/skills/creative/popular-web-designs/templates/airbnb.md +259 -0
- package/skills/creative/popular-web-designs/templates/airtable.md +102 -0
- package/skills/creative/popular-web-designs/templates/apple.md +326 -0
- package/skills/creative/popular-web-designs/templates/bmw.md +193 -0
- package/skills/creative/popular-web-designs/templates/cal.md +272 -0
- package/skills/creative/popular-web-designs/templates/claude.md +325 -0
- package/skills/creative/popular-web-designs/templates/clay.md +317 -0
- package/skills/creative/popular-web-designs/templates/clickhouse.md +294 -0
- package/skills/creative/popular-web-designs/templates/cohere.md +279 -0
- package/skills/creative/popular-web-designs/templates/coinbase.md +142 -0
- package/skills/creative/popular-web-designs/templates/composio.md +320 -0
- package/skills/creative/popular-web-designs/templates/cursor.md +322 -0
- package/skills/creative/popular-web-designs/templates/elevenlabs.md +278 -0
- package/skills/creative/popular-web-designs/templates/expo.md +294 -0
- package/skills/creative/popular-web-designs/templates/figma.md +233 -0
- package/skills/creative/popular-web-designs/templates/framer.md +259 -0
- package/skills/creative/popular-web-designs/templates/hashicorp.md +291 -0
- package/skills/creative/popular-web-designs/templates/ibm.md +345 -0
- package/skills/creative/popular-web-designs/templates/intercom.md +159 -0
- package/skills/creative/popular-web-designs/templates/kraken.md +138 -0
- package/skills/creative/popular-web-designs/templates/linear.app.md +380 -0
- package/skills/creative/popular-web-designs/templates/lovable.md +311 -0
- package/skills/creative/popular-web-designs/templates/minimax.md +270 -0
- package/skills/creative/popular-web-designs/templates/mintlify.md +339 -0
- package/skills/creative/popular-web-designs/templates/miro.md +121 -0
- package/skills/creative/popular-web-designs/templates/mistral.ai.md +274 -0
- package/skills/creative/popular-web-designs/templates/mongodb.md +279 -0
- package/skills/creative/popular-web-designs/templates/notion.md +322 -0
- package/skills/creative/popular-web-designs/templates/nvidia.md +306 -0
- package/skills/creative/popular-web-designs/templates/ollama.md +280 -0
- package/skills/creative/popular-web-designs/templates/opencode.ai.md +294 -0
- package/skills/creative/popular-web-designs/templates/pinterest.md +243 -0
- package/skills/creative/popular-web-designs/templates/posthog.md +269 -0
- package/skills/creative/popular-web-designs/templates/raycast.md +281 -0
- package/skills/creative/popular-web-designs/templates/replicate.md +274 -0
- package/skills/creative/popular-web-designs/templates/resend.md +316 -0
- package/skills/creative/popular-web-designs/templates/revolut.md +198 -0
- package/skills/creative/popular-web-designs/templates/runwayml.md +257 -0
- package/skills/creative/popular-web-designs/templates/sanity.md +370 -0
- package/skills/creative/popular-web-designs/templates/sentry.md +275 -0
- package/skills/creative/popular-web-designs/templates/spacex.md +207 -0
- package/skills/creative/popular-web-designs/templates/spotify.md +259 -0
- package/skills/creative/popular-web-designs/templates/stripe.md +335 -0
- package/skills/creative/popular-web-designs/templates/supabase.md +268 -0
- package/skills/creative/popular-web-designs/templates/superhuman.md +265 -0
- package/skills/creative/popular-web-designs/templates/together.ai.md +276 -0
- package/skills/creative/popular-web-designs/templates/uber.md +308 -0
- package/skills/creative/popular-web-designs/templates/vercel.md +323 -0
- package/skills/creative/popular-web-designs/templates/voltagent.md +336 -0
- package/skills/creative/popular-web-designs/templates/warp.md +266 -0
- package/skills/creative/popular-web-designs/templates/webflow.md +105 -0
- package/skills/creative/popular-web-designs/templates/wise.md +186 -0
- package/skills/creative/popular-web-designs/templates/x.ai.md +270 -0
- package/skills/creative/popular-web-designs/templates/zapier.md +341 -0
- package/skills/creative/pretext/SKILL.md +220 -0
- package/skills/creative/pretext/references/patterns.md +258 -0
- package/skills/creative/pretext/templates/donut-orbit.html +1468 -0
- package/skills/creative/pretext/templates/hello-orb-flow.html +95 -0
- package/skills/creative/sketch/SKILL.md +218 -0
- package/skills/creative/songwriting-and-ai-music/SKILL.md +287 -0
- package/skills/creative/touchdesigner-mcp/SKILL.md +356 -0
- package/skills/creative/touchdesigner-mcp/references/3d-scene.md +275 -0
- package/skills/creative/touchdesigner-mcp/references/animation.md +221 -0
- package/skills/creative/touchdesigner-mcp/references/audio-reactive.md +175 -0
- package/skills/creative/touchdesigner-mcp/references/dat-scripting.md +352 -0
- package/skills/creative/touchdesigner-mcp/references/external-data.md +322 -0
- package/skills/creative/touchdesigner-mcp/references/geometry-comp.md +121 -0
- package/skills/creative/touchdesigner-mcp/references/glsl.md +151 -0
- package/skills/creative/touchdesigner-mcp/references/layout-compositor.md +131 -0
- package/skills/creative/touchdesigner-mcp/references/mcp-tools.md +382 -0
- package/skills/creative/touchdesigner-mcp/references/midi-osc.md +211 -0
- package/skills/creative/touchdesigner-mcp/references/network-patterns.md +966 -0
- package/skills/creative/touchdesigner-mcp/references/operator-tips.md +106 -0
- package/skills/creative/touchdesigner-mcp/references/operators.md +239 -0
- package/skills/creative/touchdesigner-mcp/references/panel-ui.md +281 -0
- package/skills/creative/touchdesigner-mcp/references/particles.md +245 -0
- package/skills/creative/touchdesigner-mcp/references/pitfalls.md +704 -0
- package/skills/creative/touchdesigner-mcp/references/postfx.md +183 -0
- package/skills/creative/touchdesigner-mcp/references/projection-mapping.md +211 -0
- package/skills/creative/touchdesigner-mcp/references/python-api.md +463 -0
- package/skills/creative/touchdesigner-mcp/references/replicator.md +198 -0
- package/skills/creative/touchdesigner-mcp/references/troubleshooting.md +244 -0
- package/skills/creative/touchdesigner-mcp/scripts/setup.sh +115 -0
- package/skills/data-science/DESCRIPTION.md +3 -0
- package/skills/data-science/jupyter-live-kernel/SKILL.md +167 -0
- package/skills/devops/kanban-orchestrator/SKILL.md +189 -0
- package/skills/devops/kanban-worker/SKILL.md +184 -0
- package/skills/devops/webhook-subscriptions/SKILL.md +204 -0
- package/skills/diagramming/DESCRIPTION.md +3 -0
- package/skills/dogfood/SKILL.md +162 -0
- package/skills/dogfood/references/issue-taxonomy.md +109 -0
- package/skills/dogfood/templates/dogfood-report-template.md +86 -0
- package/skills/domain/DESCRIPTION.md +24 -0
- package/skills/email/DESCRIPTION.md +3 -0
- package/skills/email/himalaya/SKILL.md +299 -0
- package/skills/email/himalaya/references/configuration.md +227 -0
- package/skills/email/himalaya/references/message-composition.md +199 -0
- package/skills/gaming/DESCRIPTION.md +3 -0
- package/skills/gaming/minecraft-modpack-server/SKILL.md +187 -0
- package/skills/gaming/pokemon-player/SKILL.md +216 -0
- package/skills/gifs/DESCRIPTION.md +3 -0
- package/skills/github/DESCRIPTION.md +3 -0
- package/skills/github/codebase-inspection/SKILL.md +116 -0
- package/skills/github/github-auth/SKILL.md +247 -0
- package/skills/github/github-auth/scripts/gh-env.sh +66 -0
- package/skills/github/github-code-review/SKILL.md +481 -0
- package/skills/github/github-code-review/references/review-output-template.md +74 -0
- package/skills/github/github-issues/SKILL.md +370 -0
- package/skills/github/github-issues/templates/bug-report.md +35 -0
- package/skills/github/github-issues/templates/feature-request.md +31 -0
- package/skills/github/github-pr-workflow/SKILL.md +367 -0
- package/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
- package/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
- package/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
- package/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
- package/skills/github/github-repo-management/SKILL.md +516 -0
- package/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
- package/skills/index-cache/anthropics_skills_skills_.json +1 -0
- package/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
- package/skills/index-cache/lobehub_index.json +1 -0
- package/skills/index-cache/openai_skills_skills_.json +1 -0
- package/skills/inference-sh/DESCRIPTION.md +19 -0
- package/skills/mcp/DESCRIPTION.md +3 -0
- package/skills/mcp/native-mcp/SKILL.md +357 -0
- package/skills/media/DESCRIPTION.md +3 -0
- package/skills/media/gif-search/SKILL.md +91 -0
- package/skills/media/heartmula/SKILL.md +171 -0
- package/skills/media/songsee/SKILL.md +83 -0
- package/skills/media/spotify/SKILL.md +135 -0
- package/skills/media/youtube-content/SKILL.md +73 -0
- package/skills/media/youtube-content/references/output-formats.md +56 -0
- package/skills/media/youtube-content/scripts/fetch_transcript.py +124 -0
- package/skills/mlops/DESCRIPTION.md +3 -0
- package/skills/mlops/evaluation/DESCRIPTION.md +3 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/SKILL.md +498 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
- package/skills/mlops/evaluation/weights-and-biases/SKILL.md +594 -0
- package/skills/mlops/evaluation/weights-and-biases/references/artifacts.md +584 -0
- package/skills/mlops/evaluation/weights-and-biases/references/integrations.md +700 -0
- package/skills/mlops/evaluation/weights-and-biases/references/sweeps.md +847 -0
- package/skills/mlops/huggingface-hub/SKILL.md +81 -0
- package/skills/mlops/inference/DESCRIPTION.md +3 -0
- package/skills/mlops/inference/llama-cpp/SKILL.md +249 -0
- package/skills/mlops/inference/llama-cpp/references/advanced-usage.md +504 -0
- package/skills/mlops/inference/llama-cpp/references/hub-discovery.md +168 -0
- package/skills/mlops/inference/llama-cpp/references/optimization.md +89 -0
- package/skills/mlops/inference/llama-cpp/references/quantization.md +243 -0
- package/skills/mlops/inference/llama-cpp/references/server.md +150 -0
- package/skills/mlops/inference/llama-cpp/references/troubleshooting.md +442 -0
- package/skills/mlops/inference/obliteratus/SKILL.md +342 -0
- package/skills/mlops/inference/obliteratus/references/analysis-modules.md +166 -0
- package/skills/mlops/inference/obliteratus/references/methods-guide.md +141 -0
- package/skills/mlops/inference/obliteratus/templates/abliteration-config.yaml +33 -0
- package/skills/mlops/inference/obliteratus/templates/analysis-study.yaml +40 -0
- package/skills/mlops/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
- package/skills/mlops/inference/vllm/SKILL.md +372 -0
- package/skills/mlops/inference/vllm/references/optimization.md +226 -0
- package/skills/mlops/inference/vllm/references/quantization.md +284 -0
- package/skills/mlops/inference/vllm/references/server-deployment.md +255 -0
- package/skills/mlops/inference/vllm/references/troubleshooting.md +447 -0
- package/skills/mlops/models/DESCRIPTION.md +3 -0
- package/skills/mlops/models/audiocraft/SKILL.md +568 -0
- package/skills/mlops/models/audiocraft/references/advanced-usage.md +666 -0
- package/skills/mlops/models/audiocraft/references/troubleshooting.md +504 -0
- package/skills/mlops/models/segment-anything/SKILL.md +506 -0
- package/skills/mlops/models/segment-anything/references/advanced-usage.md +589 -0
- package/skills/mlops/models/segment-anything/references/troubleshooting.md +484 -0
- package/skills/mlops/research/DESCRIPTION.md +3 -0
- package/skills/mlops/research/dspy/SKILL.md +594 -0
- package/skills/mlops/research/dspy/references/examples.md +663 -0
- package/skills/mlops/research/dspy/references/modules.md +475 -0
- package/skills/mlops/research/dspy/references/optimizers.md +566 -0
- package/skills/mlops/training/DESCRIPTION.md +3 -0
- package/skills/mlops/vector-databases/DESCRIPTION.md +3 -0
- package/skills/note-taking/DESCRIPTION.md +3 -0
- package/skills/note-taking/obsidian/SKILL.md +61 -0
- package/skills/productivity/DESCRIPTION.md +3 -0
- package/skills/productivity/airtable/SKILL.md +229 -0
- package/skills/productivity/google-workspace/SKILL.md +335 -0
- package/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
- package/skills/productivity/google-workspace/scripts/_hermes_home.py +43 -0
- package/skills/productivity/google-workspace/scripts/google_api.py +1221 -0
- package/skills/productivity/google-workspace/scripts/gws_bridge.py +108 -0
- package/skills/productivity/google-workspace/scripts/setup.py +454 -0
- package/skills/productivity/linear/SKILL.md +380 -0
- package/skills/productivity/linear/scripts/linear_api.py +445 -0
- package/skills/productivity/maps/SKILL.md +195 -0
- package/skills/productivity/maps/scripts/maps_client.py +1298 -0
- package/skills/productivity/nano-pdf/SKILL.md +52 -0
- package/skills/productivity/notion/SKILL.md +448 -0
- package/skills/productivity/notion/references/block-types.md +112 -0
- package/skills/productivity/ocr-and-documents/DESCRIPTION.md +3 -0
- package/skills/productivity/ocr-and-documents/SKILL.md +172 -0
- package/skills/productivity/ocr-and-documents/scripts/extract_marker.py +87 -0
- package/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +98 -0
- package/skills/productivity/powerpoint/LICENSE.txt +30 -0
- package/skills/productivity/powerpoint/SKILL.md +237 -0
- package/skills/productivity/powerpoint/editing.md +205 -0
- package/skills/productivity/powerpoint/pptxgenjs.md +420 -0
- package/skills/productivity/powerpoint/scripts/__init__.py +0 -0
- package/skills/productivity/powerpoint/scripts/add_slide.py +195 -0
- package/skills/productivity/powerpoint/scripts/clean.py +286 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +0 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +199 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +197 -0
- package/skills/productivity/powerpoint/scripts/office/pack.py +159 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/productivity/teams-meeting-pipeline/SKILL.md +116 -0
- package/skills/red-teaming/godmode/SKILL.md +404 -0
- package/skills/red-teaming/godmode/references/jailbreak-templates.md +128 -0
- package/skills/red-teaming/godmode/references/refusal-detection.md +142 -0
- package/skills/red-teaming/godmode/scripts/auto_jailbreak.py +769 -0
- package/skills/red-teaming/godmode/scripts/godmode_race.py +530 -0
- package/skills/red-teaming/godmode/scripts/load_godmode.py +45 -0
- package/skills/red-teaming/godmode/scripts/parseltongue.py +550 -0
- package/skills/red-teaming/godmode/templates/prefill-subtle.json +10 -0
- package/skills/red-teaming/godmode/templates/prefill.json +18 -0
- package/skills/research/DESCRIPTION.md +3 -0
- package/skills/research/arxiv/SKILL.md +282 -0
- package/skills/research/arxiv/scripts/search_arxiv.py +114 -0
- package/skills/research/blogwatcher/SKILL.md +137 -0
- package/skills/research/llm-wiki/SKILL.md +507 -0
- package/skills/research/polymarket/SKILL.md +77 -0
- package/skills/research/polymarket/references/api-endpoints.md +220 -0
- package/skills/research/polymarket/scripts/polymarket.py +284 -0
- package/skills/research/research-paper-writing/SKILL.md +2377 -0
- package/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
- package/skills/research/research-paper-writing/references/checklists.md +434 -0
- package/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
- package/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
- package/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
- package/skills/research/research-paper-writing/references/paper-types.md +481 -0
- package/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
- package/skills/research/research-paper-writing/references/sources.md +191 -0
- package/skills/research/research-paper-writing/references/writing-guide.md +474 -0
- package/skills/research/research-paper-writing/templates/README.md +251 -0
- package/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- package/skills/research/research-paper-writing/templates/acl/README.md +50 -0
- package/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
- package/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
- package/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- package/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- package/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
- package/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
- package/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
- package/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- package/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- package/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
- package/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
- package/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- package/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- package/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- package/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
- package/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
- package/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- package/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
- package/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- package/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
- package/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
- package/skills/smart-home/DESCRIPTION.md +3 -0
- package/skills/smart-home/openhue/SKILL.md +109 -0
- package/skills/social-media/DESCRIPTION.md +3 -0
- package/skills/social-media/xurl/SKILL.md +414 -0
- package/skills/software-development/debugging-hermes-tui-commands/SKILL.md +152 -0
- package/skills/software-development/hermes-agent-skill-authoring/SKILL.md +165 -0
- package/skills/software-development/node-inspect-debugger/SKILL.md +319 -0
- package/skills/software-development/plan/SKILL.md +58 -0
- package/skills/software-development/python-debugpy/SKILL.md +375 -0
- package/skills/software-development/requesting-code-review/SKILL.md +280 -0
- package/skills/software-development/spike/SKILL.md +197 -0
- package/skills/software-development/subagent-driven-development/SKILL.md +352 -0
- package/skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
- package/skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
- package/skills/software-development/systematic-debugging/SKILL.md +367 -0
- package/skills/software-development/test-driven-development/SKILL.md +343 -0
- package/skills/software-development/writing-plans/SKILL.md +297 -0
- package/skills/yuanbao/SKILL.md +108 -0
- package/tools/__init__.py +25 -0
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/approval.cpython-312.pyc +0 -0
- package/tools/__pycache__/binary_extensions.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_camofox.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_camofox_state.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_cdp_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_dialog_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_supervisor.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/budget_config.cpython-312.pyc +0 -0
- package/tools/__pycache__/checkpoint_manager.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_gateway.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/code_execution_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/computer_use_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/cronjob_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/debug_helpers.cpython-312.pyc +0 -0
- package/tools/__pycache__/delegate_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/discord_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/feishu_doc_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/feishu_drive_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_operations.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_state.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/homeassistant_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/image_generation_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/interrupt.cpython-312.pyc +0 -0
- package/tools/__pycache__/kanban_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/lazy_deps.cpython-312.pyc +0 -0
- package/tools/__pycache__/managed_tool_gateway.cpython-312.pyc +0 -0
- package/tools/__pycache__/mcp_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/memory_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/mixture_of_agents_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/openrouter_client.cpython-312.pyc +0 -0
- package/tools/__pycache__/process_registry.cpython-312.pyc +0 -0
- package/tools/__pycache__/registry.cpython-312.pyc +0 -0
- package/tools/__pycache__/schema_sanitizer.cpython-312.pyc +0 -0
- package/tools/__pycache__/send_message_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/session_search_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_manager_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_provenance.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_usage.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_guard.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_sync.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/slash_confirm.cpython-312.pyc +0 -0
- package/tools/__pycache__/terminal_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/tirith_security.cpython-312.pyc +0 -0
- package/tools/__pycache__/todo_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/tool_backend_helpers.cpython-312.pyc +0 -0
- package/tools/__pycache__/tool_result_storage.cpython-312.pyc +0 -0
- package/tools/__pycache__/tts_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/url_safety.cpython-312.pyc +0 -0
- package/tools/__pycache__/video_generation_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/vision_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/voice_mode.cpython-312.pyc +0 -0
- package/tools/__pycache__/web_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/website_policy.cpython-312.pyc +0 -0
- package/tools/__pycache__/x_search_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/xai_http.cpython-312.pyc +0 -0
- package/tools/__pycache__/yuanbao_tools.cpython-312.pyc +0 -0
- package/tools/ansi_strip.py +44 -0
- package/tools/approval.py +1392 -0
- package/tools/binary_extensions.py +42 -0
- package/tools/browser_camofox.py +700 -0
- package/tools/browser_camofox_state.py +48 -0
- package/tools/browser_cdp_tool.py +569 -0
- package/tools/browser_dialog_tool.py +148 -0
- package/tools/browser_providers/__init__.py +10 -0
- package/tools/browser_providers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/base.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/browser_use.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/browserbase.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/firecrawl.cpython-312.pyc +0 -0
- package/tools/browser_providers/base.py +59 -0
- package/tools/browser_providers/browser_use.py +225 -0
- package/tools/browser_providers/browserbase.py +222 -0
- package/tools/browser_providers/firecrawl.py +112 -0
- package/tools/browser_supervisor.py +1457 -0
- package/tools/browser_tool.py +3676 -0
- package/tools/budget_config.py +51 -0
- package/tools/checkpoint_manager.py +1639 -0
- package/tools/clarify_gateway.py +278 -0
- package/tools/clarify_tool.py +141 -0
- package/tools/code_execution_tool.py +1782 -0
- package/tools/computer_use/__init__.py +43 -0
- package/tools/computer_use/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/backend.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/schema.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/tool.cpython-312.pyc +0 -0
- package/tools/computer_use/backend.py +150 -0
- package/tools/computer_use/cua_backend.py +682 -0
- package/tools/computer_use/schema.py +191 -0
- package/tools/computer_use/tool.py +521 -0
- package/tools/computer_use_tool.py +39 -0
- package/tools/credential_files.py +437 -0
- package/tools/cronjob_tools.py +719 -0
- package/tools/debug_helpers.py +106 -0
- package/tools/delegate_tool.py +2797 -0
- package/tools/discord_tool.py +959 -0
- package/tools/env_passthrough.py +145 -0
- package/tools/environments/__init__.py +14 -0
- package/tools/environments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/base.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/docker.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/file_sync.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/local.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/managed_modal.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/modal.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/modal_utils.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/singularity.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/ssh.cpython-312.pyc +0 -0
- package/tools/environments/base.py +844 -0
- package/tools/environments/daytona.py +270 -0
- package/tools/environments/docker.py +656 -0
- package/tools/environments/file_sync.py +400 -0
- package/tools/environments/local.py +658 -0
- package/tools/environments/managed_modal.py +282 -0
- package/tools/environments/modal.py +479 -0
- package/tools/environments/modal_utils.py +199 -0
- package/tools/environments/singularity.py +263 -0
- package/tools/environments/ssh.py +295 -0
- package/tools/environments/vercel_sandbox.py +655 -0
- package/tools/feishu_doc_tool.py +138 -0
- package/tools/feishu_drive_tool.py +431 -0
- package/tools/file_operations.py +1825 -0
- package/tools/file_state.py +332 -0
- package/tools/file_tools.py +1172 -0
- package/tools/fuzzy_match.py +703 -0
- package/tools/homeassistant_tool.py +513 -0
- package/tools/image_generation_tool.py +1098 -0
- package/tools/interrupt.py +98 -0
- package/tools/kanban_tools.py +1139 -0
- package/tools/lazy_deps.py +608 -0
- package/tools/managed_tool_gateway.py +168 -0
- package/tools/mcp_oauth.py +633 -0
- package/tools/mcp_oauth_manager.py +607 -0
- package/tools/mcp_tool.py +3483 -0
- package/tools/memory_tool.py +584 -0
- package/tools/microsoft_graph_auth.py +245 -0
- package/tools/microsoft_graph_client.py +408 -0
- package/tools/mixture_of_agents_tool.py +542 -0
- package/tools/neutts_samples/jo.txt +1 -0
- package/tools/neutts_samples/jo.wav +0 -0
- package/tools/neutts_synth.py +104 -0
- package/tools/openrouter_client.py +33 -0
- package/tools/osv_check.py +155 -0
- package/tools/patch_parser.py +592 -0
- package/tools/path_security.py +43 -0
- package/tools/process_registry.py +1534 -0
- package/tools/registry.py +589 -0
- package/tools/schema_sanitizer.py +370 -0
- package/tools/send_message_tool.py +1900 -0
- package/tools/session_search_tool.py +613 -0
- package/tools/skill_manager_tool.py +932 -0
- package/tools/skill_provenance.py +78 -0
- package/tools/skill_usage.py +610 -0
- package/tools/skills_guard.py +932 -0
- package/tools/skills_hub.py +3263 -0
- package/tools/skills_sync.py +432 -0
- package/tools/skills_tool.py +1569 -0
- package/tools/slash_confirm.py +167 -0
- package/tools/terminal_tool.py +2376 -0
- package/tools/tirith_security.py +775 -0
- package/tools/todo_tool.py +277 -0
- package/tools/tool_backend_helpers.py +144 -0
- package/tools/tool_output_limits.py +92 -0
- package/tools/tool_result_storage.py +232 -0
- package/tools/transcription_tools.py +936 -0
- package/tools/tts_tool.py +2285 -0
- package/tools/url_safety.py +330 -0
- package/tools/video_generation_tool.py +561 -0
- package/tools/vision_tools.py +1422 -0
- package/tools/voice_mode.py +1019 -0
- package/tools/web_tools.py +1551 -0
- package/tools/website_policy.py +283 -0
- package/tools/x_search_tool.py +424 -0
- package/tools/xai_http.py +83 -0
- package/tools/yuanbao_tools.py +736 -0
- package/toolset_distributions.py +364 -0
- package/toolsets.py +866 -0
- package/trajectory_compressor.py +1509 -0
- package/tui_gateway/__init__.py +0 -0
- package/tui_gateway/entry.py +251 -0
- package/tui_gateway/event_publisher.py +126 -0
- package/tui_gateway/render.py +49 -0
- package/tui_gateway/server.py +6623 -0
- package/tui_gateway/slash_worker.py +76 -0
- package/tui_gateway/transport.py +219 -0
- package/tui_gateway/ws.py +178 -0
- package/utils.py +361 -0
|
@@ -0,0 +1,2141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hermes-whatsapp-bridge",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "hermes-whatsapp-bridge",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@whiskeysockets/baileys": "WhiskeySockets/Baileys#01047debd81beb20da7b7779b08edcb06aa03770",
|
|
12
|
+
"express": "^4.21.0",
|
|
13
|
+
"pino": "^9.0.0",
|
|
14
|
+
"qrcode-terminal": "^0.12.0"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"node_modules/@borewit/text-codec": {
|
|
18
|
+
"version": "0.2.2",
|
|
19
|
+
"resolved": "https://registry.npmjs.org/@borewit/text-codec/-/text-codec-0.2.2.tgz",
|
|
20
|
+
"integrity": "sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"funding": {
|
|
23
|
+
"type": "github",
|
|
24
|
+
"url": "https://github.com/sponsors/Borewit"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"node_modules/@cacheable/memory": {
|
|
28
|
+
"version": "2.0.8",
|
|
29
|
+
"resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.8.tgz",
|
|
30
|
+
"integrity": "sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@cacheable/utils": "^2.4.0",
|
|
34
|
+
"@keyv/bigmap": "^1.3.1",
|
|
35
|
+
"hookified": "^1.15.1",
|
|
36
|
+
"keyv": "^5.6.0"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"node_modules/@cacheable/node-cache": {
|
|
40
|
+
"version": "1.7.6",
|
|
41
|
+
"resolved": "https://registry.npmjs.org/@cacheable/node-cache/-/node-cache-1.7.6.tgz",
|
|
42
|
+
"integrity": "sha512-6Omk2SgNnjtxB5f/E6bTIWIt5xhdpx39fGNRQgU9lojvRxU68v+qY+SXXLsp3ZGukqoPjsK21wZ6XABFr/Ge3A==",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"cacheable": "^2.3.1",
|
|
46
|
+
"hookified": "^1.14.0",
|
|
47
|
+
"keyv": "^5.5.5"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"node_modules/@cacheable/utils": {
|
|
54
|
+
"version": "2.4.1",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/@cacheable/utils/-/utils-2.4.1.tgz",
|
|
56
|
+
"integrity": "sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"hashery": "^1.5.1",
|
|
60
|
+
"keyv": "^5.6.0"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"node_modules/@emnapi/runtime": {
|
|
64
|
+
"version": "1.10.0",
|
|
65
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
|
|
66
|
+
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
|
67
|
+
"license": "MIT",
|
|
68
|
+
"optional": true,
|
|
69
|
+
"peer": true,
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"tslib": "^2.4.0"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"node_modules/@hapi/boom": {
|
|
75
|
+
"version": "9.1.4",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz",
|
|
77
|
+
"integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==",
|
|
78
|
+
"license": "BSD-3-Clause",
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@hapi/hoek": "9.x.x"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"node_modules/@hapi/hoek": {
|
|
84
|
+
"version": "9.3.0",
|
|
85
|
+
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
|
|
86
|
+
"integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==",
|
|
87
|
+
"license": "BSD-3-Clause"
|
|
88
|
+
},
|
|
89
|
+
"node_modules/@img/colour": {
|
|
90
|
+
"version": "1.1.0",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
|
|
92
|
+
"integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
|
|
93
|
+
"license": "MIT",
|
|
94
|
+
"peer": true,
|
|
95
|
+
"engines": {
|
|
96
|
+
"node": ">=18"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
100
|
+
"version": "0.34.5",
|
|
101
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
|
|
102
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
103
|
+
"cpu": [
|
|
104
|
+
"arm64"
|
|
105
|
+
],
|
|
106
|
+
"license": "Apache-2.0",
|
|
107
|
+
"optional": true,
|
|
108
|
+
"os": [
|
|
109
|
+
"darwin"
|
|
110
|
+
],
|
|
111
|
+
"peer": true,
|
|
112
|
+
"engines": {
|
|
113
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
114
|
+
},
|
|
115
|
+
"funding": {
|
|
116
|
+
"url": "https://opencollective.com/libvips"
|
|
117
|
+
},
|
|
118
|
+
"optionalDependencies": {
|
|
119
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
123
|
+
"version": "0.34.5",
|
|
124
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
|
|
125
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
126
|
+
"cpu": [
|
|
127
|
+
"x64"
|
|
128
|
+
],
|
|
129
|
+
"license": "Apache-2.0",
|
|
130
|
+
"optional": true,
|
|
131
|
+
"os": [
|
|
132
|
+
"darwin"
|
|
133
|
+
],
|
|
134
|
+
"peer": true,
|
|
135
|
+
"engines": {
|
|
136
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
137
|
+
},
|
|
138
|
+
"funding": {
|
|
139
|
+
"url": "https://opencollective.com/libvips"
|
|
140
|
+
},
|
|
141
|
+
"optionalDependencies": {
|
|
142
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
146
|
+
"version": "1.2.4",
|
|
147
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
|
|
148
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
149
|
+
"cpu": [
|
|
150
|
+
"arm64"
|
|
151
|
+
],
|
|
152
|
+
"license": "LGPL-3.0-or-later",
|
|
153
|
+
"optional": true,
|
|
154
|
+
"os": [
|
|
155
|
+
"darwin"
|
|
156
|
+
],
|
|
157
|
+
"peer": true,
|
|
158
|
+
"funding": {
|
|
159
|
+
"url": "https://opencollective.com/libvips"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
163
|
+
"version": "1.2.4",
|
|
164
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
|
|
165
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
166
|
+
"cpu": [
|
|
167
|
+
"x64"
|
|
168
|
+
],
|
|
169
|
+
"license": "LGPL-3.0-or-later",
|
|
170
|
+
"optional": true,
|
|
171
|
+
"os": [
|
|
172
|
+
"darwin"
|
|
173
|
+
],
|
|
174
|
+
"peer": true,
|
|
175
|
+
"funding": {
|
|
176
|
+
"url": "https://opencollective.com/libvips"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
180
|
+
"version": "1.2.4",
|
|
181
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
|
|
182
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
183
|
+
"cpu": [
|
|
184
|
+
"arm"
|
|
185
|
+
],
|
|
186
|
+
"license": "LGPL-3.0-or-later",
|
|
187
|
+
"optional": true,
|
|
188
|
+
"os": [
|
|
189
|
+
"linux"
|
|
190
|
+
],
|
|
191
|
+
"peer": true,
|
|
192
|
+
"funding": {
|
|
193
|
+
"url": "https://opencollective.com/libvips"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
197
|
+
"version": "1.2.4",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
|
|
199
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
200
|
+
"cpu": [
|
|
201
|
+
"arm64"
|
|
202
|
+
],
|
|
203
|
+
"license": "LGPL-3.0-or-later",
|
|
204
|
+
"optional": true,
|
|
205
|
+
"os": [
|
|
206
|
+
"linux"
|
|
207
|
+
],
|
|
208
|
+
"peer": true,
|
|
209
|
+
"funding": {
|
|
210
|
+
"url": "https://opencollective.com/libvips"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
214
|
+
"version": "1.2.4",
|
|
215
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
|
|
216
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
217
|
+
"cpu": [
|
|
218
|
+
"ppc64"
|
|
219
|
+
],
|
|
220
|
+
"license": "LGPL-3.0-or-later",
|
|
221
|
+
"optional": true,
|
|
222
|
+
"os": [
|
|
223
|
+
"linux"
|
|
224
|
+
],
|
|
225
|
+
"peer": true,
|
|
226
|
+
"funding": {
|
|
227
|
+
"url": "https://opencollective.com/libvips"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@img/sharp-libvips-linux-riscv64": {
|
|
231
|
+
"version": "1.2.4",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
|
|
233
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
234
|
+
"cpu": [
|
|
235
|
+
"riscv64"
|
|
236
|
+
],
|
|
237
|
+
"license": "LGPL-3.0-or-later",
|
|
238
|
+
"optional": true,
|
|
239
|
+
"os": [
|
|
240
|
+
"linux"
|
|
241
|
+
],
|
|
242
|
+
"peer": true,
|
|
243
|
+
"funding": {
|
|
244
|
+
"url": "https://opencollective.com/libvips"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
248
|
+
"version": "1.2.4",
|
|
249
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
|
|
250
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
251
|
+
"cpu": [
|
|
252
|
+
"s390x"
|
|
253
|
+
],
|
|
254
|
+
"license": "LGPL-3.0-or-later",
|
|
255
|
+
"optional": true,
|
|
256
|
+
"os": [
|
|
257
|
+
"linux"
|
|
258
|
+
],
|
|
259
|
+
"peer": true,
|
|
260
|
+
"funding": {
|
|
261
|
+
"url": "https://opencollective.com/libvips"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
265
|
+
"version": "1.2.4",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
|
|
267
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
268
|
+
"cpu": [
|
|
269
|
+
"x64"
|
|
270
|
+
],
|
|
271
|
+
"license": "LGPL-3.0-or-later",
|
|
272
|
+
"optional": true,
|
|
273
|
+
"os": [
|
|
274
|
+
"linux"
|
|
275
|
+
],
|
|
276
|
+
"peer": true,
|
|
277
|
+
"funding": {
|
|
278
|
+
"url": "https://opencollective.com/libvips"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
282
|
+
"version": "1.2.4",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
|
|
284
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
285
|
+
"cpu": [
|
|
286
|
+
"arm64"
|
|
287
|
+
],
|
|
288
|
+
"license": "LGPL-3.0-or-later",
|
|
289
|
+
"optional": true,
|
|
290
|
+
"os": [
|
|
291
|
+
"linux"
|
|
292
|
+
],
|
|
293
|
+
"peer": true,
|
|
294
|
+
"funding": {
|
|
295
|
+
"url": "https://opencollective.com/libvips"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
299
|
+
"version": "1.2.4",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
|
|
301
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
302
|
+
"cpu": [
|
|
303
|
+
"x64"
|
|
304
|
+
],
|
|
305
|
+
"license": "LGPL-3.0-or-later",
|
|
306
|
+
"optional": true,
|
|
307
|
+
"os": [
|
|
308
|
+
"linux"
|
|
309
|
+
],
|
|
310
|
+
"peer": true,
|
|
311
|
+
"funding": {
|
|
312
|
+
"url": "https://opencollective.com/libvips"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
316
|
+
"version": "0.34.5",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
|
|
318
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
319
|
+
"cpu": [
|
|
320
|
+
"arm"
|
|
321
|
+
],
|
|
322
|
+
"license": "Apache-2.0",
|
|
323
|
+
"optional": true,
|
|
324
|
+
"os": [
|
|
325
|
+
"linux"
|
|
326
|
+
],
|
|
327
|
+
"peer": true,
|
|
328
|
+
"engines": {
|
|
329
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
330
|
+
},
|
|
331
|
+
"funding": {
|
|
332
|
+
"url": "https://opencollective.com/libvips"
|
|
333
|
+
},
|
|
334
|
+
"optionalDependencies": {
|
|
335
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
339
|
+
"version": "0.34.5",
|
|
340
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
|
|
341
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
342
|
+
"cpu": [
|
|
343
|
+
"arm64"
|
|
344
|
+
],
|
|
345
|
+
"license": "Apache-2.0",
|
|
346
|
+
"optional": true,
|
|
347
|
+
"os": [
|
|
348
|
+
"linux"
|
|
349
|
+
],
|
|
350
|
+
"peer": true,
|
|
351
|
+
"engines": {
|
|
352
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
353
|
+
},
|
|
354
|
+
"funding": {
|
|
355
|
+
"url": "https://opencollective.com/libvips"
|
|
356
|
+
},
|
|
357
|
+
"optionalDependencies": {
|
|
358
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
362
|
+
"version": "0.34.5",
|
|
363
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
|
|
364
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
365
|
+
"cpu": [
|
|
366
|
+
"ppc64"
|
|
367
|
+
],
|
|
368
|
+
"license": "Apache-2.0",
|
|
369
|
+
"optional": true,
|
|
370
|
+
"os": [
|
|
371
|
+
"linux"
|
|
372
|
+
],
|
|
373
|
+
"peer": true,
|
|
374
|
+
"engines": {
|
|
375
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
376
|
+
},
|
|
377
|
+
"funding": {
|
|
378
|
+
"url": "https://opencollective.com/libvips"
|
|
379
|
+
},
|
|
380
|
+
"optionalDependencies": {
|
|
381
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
385
|
+
"version": "0.34.5",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
|
|
387
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
388
|
+
"cpu": [
|
|
389
|
+
"riscv64"
|
|
390
|
+
],
|
|
391
|
+
"license": "Apache-2.0",
|
|
392
|
+
"optional": true,
|
|
393
|
+
"os": [
|
|
394
|
+
"linux"
|
|
395
|
+
],
|
|
396
|
+
"peer": true,
|
|
397
|
+
"engines": {
|
|
398
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
399
|
+
},
|
|
400
|
+
"funding": {
|
|
401
|
+
"url": "https://opencollective.com/libvips"
|
|
402
|
+
},
|
|
403
|
+
"optionalDependencies": {
|
|
404
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
408
|
+
"version": "0.34.5",
|
|
409
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
|
|
410
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
411
|
+
"cpu": [
|
|
412
|
+
"s390x"
|
|
413
|
+
],
|
|
414
|
+
"license": "Apache-2.0",
|
|
415
|
+
"optional": true,
|
|
416
|
+
"os": [
|
|
417
|
+
"linux"
|
|
418
|
+
],
|
|
419
|
+
"peer": true,
|
|
420
|
+
"engines": {
|
|
421
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
422
|
+
},
|
|
423
|
+
"funding": {
|
|
424
|
+
"url": "https://opencollective.com/libvips"
|
|
425
|
+
},
|
|
426
|
+
"optionalDependencies": {
|
|
427
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
431
|
+
"version": "0.34.5",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
|
|
433
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
434
|
+
"cpu": [
|
|
435
|
+
"x64"
|
|
436
|
+
],
|
|
437
|
+
"license": "Apache-2.0",
|
|
438
|
+
"optional": true,
|
|
439
|
+
"os": [
|
|
440
|
+
"linux"
|
|
441
|
+
],
|
|
442
|
+
"peer": true,
|
|
443
|
+
"engines": {
|
|
444
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
445
|
+
},
|
|
446
|
+
"funding": {
|
|
447
|
+
"url": "https://opencollective.com/libvips"
|
|
448
|
+
},
|
|
449
|
+
"optionalDependencies": {
|
|
450
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
454
|
+
"version": "0.34.5",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
|
|
456
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
457
|
+
"cpu": [
|
|
458
|
+
"arm64"
|
|
459
|
+
],
|
|
460
|
+
"license": "Apache-2.0",
|
|
461
|
+
"optional": true,
|
|
462
|
+
"os": [
|
|
463
|
+
"linux"
|
|
464
|
+
],
|
|
465
|
+
"peer": true,
|
|
466
|
+
"engines": {
|
|
467
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
468
|
+
},
|
|
469
|
+
"funding": {
|
|
470
|
+
"url": "https://opencollective.com/libvips"
|
|
471
|
+
},
|
|
472
|
+
"optionalDependencies": {
|
|
473
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
477
|
+
"version": "0.34.5",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
|
|
479
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
480
|
+
"cpu": [
|
|
481
|
+
"x64"
|
|
482
|
+
],
|
|
483
|
+
"license": "Apache-2.0",
|
|
484
|
+
"optional": true,
|
|
485
|
+
"os": [
|
|
486
|
+
"linux"
|
|
487
|
+
],
|
|
488
|
+
"peer": true,
|
|
489
|
+
"engines": {
|
|
490
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
491
|
+
},
|
|
492
|
+
"funding": {
|
|
493
|
+
"url": "https://opencollective.com/libvips"
|
|
494
|
+
},
|
|
495
|
+
"optionalDependencies": {
|
|
496
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"node_modules/@img/sharp-wasm32": {
|
|
500
|
+
"version": "0.34.5",
|
|
501
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
|
|
502
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
503
|
+
"cpu": [
|
|
504
|
+
"wasm32"
|
|
505
|
+
],
|
|
506
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
507
|
+
"optional": true,
|
|
508
|
+
"peer": true,
|
|
509
|
+
"dependencies": {
|
|
510
|
+
"@emnapi/runtime": "^1.7.0"
|
|
511
|
+
},
|
|
512
|
+
"engines": {
|
|
513
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
514
|
+
},
|
|
515
|
+
"funding": {
|
|
516
|
+
"url": "https://opencollective.com/libvips"
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
520
|
+
"version": "0.34.5",
|
|
521
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
|
|
522
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
523
|
+
"cpu": [
|
|
524
|
+
"arm64"
|
|
525
|
+
],
|
|
526
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
527
|
+
"optional": true,
|
|
528
|
+
"os": [
|
|
529
|
+
"win32"
|
|
530
|
+
],
|
|
531
|
+
"peer": true,
|
|
532
|
+
"engines": {
|
|
533
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
534
|
+
},
|
|
535
|
+
"funding": {
|
|
536
|
+
"url": "https://opencollective.com/libvips"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
540
|
+
"version": "0.34.5",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
|
|
542
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
543
|
+
"cpu": [
|
|
544
|
+
"ia32"
|
|
545
|
+
],
|
|
546
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
547
|
+
"optional": true,
|
|
548
|
+
"os": [
|
|
549
|
+
"win32"
|
|
550
|
+
],
|
|
551
|
+
"peer": true,
|
|
552
|
+
"engines": {
|
|
553
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
554
|
+
},
|
|
555
|
+
"funding": {
|
|
556
|
+
"url": "https://opencollective.com/libvips"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
560
|
+
"version": "0.34.5",
|
|
561
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
|
|
562
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
563
|
+
"cpu": [
|
|
564
|
+
"x64"
|
|
565
|
+
],
|
|
566
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
567
|
+
"optional": true,
|
|
568
|
+
"os": [
|
|
569
|
+
"win32"
|
|
570
|
+
],
|
|
571
|
+
"peer": true,
|
|
572
|
+
"engines": {
|
|
573
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
574
|
+
},
|
|
575
|
+
"funding": {
|
|
576
|
+
"url": "https://opencollective.com/libvips"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"node_modules/@keyv/bigmap": {
|
|
580
|
+
"version": "1.3.1",
|
|
581
|
+
"resolved": "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.3.1.tgz",
|
|
582
|
+
"integrity": "sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==",
|
|
583
|
+
"license": "MIT",
|
|
584
|
+
"dependencies": {
|
|
585
|
+
"hashery": "^1.4.0",
|
|
586
|
+
"hookified": "^1.15.0"
|
|
587
|
+
},
|
|
588
|
+
"engines": {
|
|
589
|
+
"node": ">= 18"
|
|
590
|
+
},
|
|
591
|
+
"peerDependencies": {
|
|
592
|
+
"keyv": "^5.6.0"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"node_modules/@keyv/serialize": {
|
|
596
|
+
"version": "1.1.1",
|
|
597
|
+
"resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz",
|
|
598
|
+
"integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==",
|
|
599
|
+
"license": "MIT"
|
|
600
|
+
},
|
|
601
|
+
"node_modules/@pinojs/redact": {
|
|
602
|
+
"version": "0.4.0",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
|
|
604
|
+
"integrity": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==",
|
|
605
|
+
"license": "MIT"
|
|
606
|
+
},
|
|
607
|
+
"node_modules/@protobufjs/aspromise": {
|
|
608
|
+
"version": "1.1.2",
|
|
609
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
610
|
+
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
611
|
+
"license": "BSD-3-Clause"
|
|
612
|
+
},
|
|
613
|
+
"node_modules/@protobufjs/base64": {
|
|
614
|
+
"version": "1.1.2",
|
|
615
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
616
|
+
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
617
|
+
"license": "BSD-3-Clause"
|
|
618
|
+
},
|
|
619
|
+
"node_modules/@protobufjs/codegen": {
|
|
620
|
+
"version": "2.0.5",
|
|
621
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
|
|
622
|
+
"integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
|
|
623
|
+
"license": "BSD-3-Clause"
|
|
624
|
+
},
|
|
625
|
+
"node_modules/@protobufjs/eventemitter": {
|
|
626
|
+
"version": "1.1.0",
|
|
627
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
|
|
628
|
+
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
|
|
629
|
+
"license": "BSD-3-Clause"
|
|
630
|
+
},
|
|
631
|
+
"node_modules/@protobufjs/fetch": {
|
|
632
|
+
"version": "1.1.0",
|
|
633
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
|
|
634
|
+
"integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
|
|
635
|
+
"license": "BSD-3-Clause",
|
|
636
|
+
"dependencies": {
|
|
637
|
+
"@protobufjs/aspromise": "^1.1.1",
|
|
638
|
+
"@protobufjs/inquire": "^1.1.0"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"node_modules/@protobufjs/float": {
|
|
642
|
+
"version": "1.0.2",
|
|
643
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
644
|
+
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
645
|
+
"license": "BSD-3-Clause"
|
|
646
|
+
},
|
|
647
|
+
"node_modules/@protobufjs/inquire": {
|
|
648
|
+
"version": "1.1.1",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.1.tgz",
|
|
650
|
+
"integrity": "sha512-mnzgDV26ueAvk7rsbt9L7bE0SuAoqyuys/sMMrmVcN5x9VsxpcG3rqAUSgDyLp0UZlmNfIbQ4fHfCtreVBk8Ew==",
|
|
651
|
+
"license": "BSD-3-Clause"
|
|
652
|
+
},
|
|
653
|
+
"node_modules/@protobufjs/path": {
|
|
654
|
+
"version": "1.1.2",
|
|
655
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
656
|
+
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
657
|
+
"license": "BSD-3-Clause"
|
|
658
|
+
},
|
|
659
|
+
"node_modules/@protobufjs/pool": {
|
|
660
|
+
"version": "1.1.0",
|
|
661
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
662
|
+
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
663
|
+
"license": "BSD-3-Clause"
|
|
664
|
+
},
|
|
665
|
+
"node_modules/@protobufjs/utf8": {
|
|
666
|
+
"version": "1.1.1",
|
|
667
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
668
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
669
|
+
"license": "BSD-3-Clause"
|
|
670
|
+
},
|
|
671
|
+
"node_modules/@tokenizer/inflate": {
|
|
672
|
+
"version": "0.4.1",
|
|
673
|
+
"resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz",
|
|
674
|
+
"integrity": "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==",
|
|
675
|
+
"license": "MIT",
|
|
676
|
+
"dependencies": {
|
|
677
|
+
"debug": "^4.4.3",
|
|
678
|
+
"token-types": "^6.1.1"
|
|
679
|
+
},
|
|
680
|
+
"engines": {
|
|
681
|
+
"node": ">=18"
|
|
682
|
+
},
|
|
683
|
+
"funding": {
|
|
684
|
+
"type": "github",
|
|
685
|
+
"url": "https://github.com/sponsors/Borewit"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"node_modules/@tokenizer/inflate/node_modules/debug": {
|
|
689
|
+
"version": "4.4.3",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
691
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
692
|
+
"license": "MIT",
|
|
693
|
+
"dependencies": {
|
|
694
|
+
"ms": "^2.1.3"
|
|
695
|
+
},
|
|
696
|
+
"engines": {
|
|
697
|
+
"node": ">=6.0"
|
|
698
|
+
},
|
|
699
|
+
"peerDependenciesMeta": {
|
|
700
|
+
"supports-color": {
|
|
701
|
+
"optional": true
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"node_modules/@tokenizer/inflate/node_modules/ms": {
|
|
706
|
+
"version": "2.1.3",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
708
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
709
|
+
"license": "MIT"
|
|
710
|
+
},
|
|
711
|
+
"node_modules/@tokenizer/token": {
|
|
712
|
+
"version": "0.3.0",
|
|
713
|
+
"resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
|
|
714
|
+
"integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==",
|
|
715
|
+
"license": "MIT"
|
|
716
|
+
},
|
|
717
|
+
"node_modules/@types/node": {
|
|
718
|
+
"version": "25.6.0",
|
|
719
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz",
|
|
720
|
+
"integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==",
|
|
721
|
+
"license": "MIT",
|
|
722
|
+
"dependencies": {
|
|
723
|
+
"undici-types": "~7.19.0"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"node_modules/@whiskeysockets/baileys": {
|
|
727
|
+
"name": "baileys",
|
|
728
|
+
"version": "7.0.0-rc.9",
|
|
729
|
+
"resolved": "git+ssh://git@github.com/WhiskeySockets/Baileys.git#01047debd81beb20da7b7779b08edcb06aa03770",
|
|
730
|
+
"integrity": "sha512-letWyB96JHD6NdqpAiseOfaUBi13u8AhiRcKSRqcVjc5Vw5xoPTZGvVnw8K/NvGBFAvyLJkwim9Mjvwzhx/SlA==",
|
|
731
|
+
"hasInstallScript": true,
|
|
732
|
+
"license": "MIT",
|
|
733
|
+
"dependencies": {
|
|
734
|
+
"@cacheable/node-cache": "^1.4.0",
|
|
735
|
+
"@hapi/boom": "^9.1.3",
|
|
736
|
+
"async-mutex": "^0.5.0",
|
|
737
|
+
"libsignal": "git+https://github.com/whiskeysockets/libsignal-node",
|
|
738
|
+
"lru-cache": "^11.1.0",
|
|
739
|
+
"music-metadata": "^11.7.0",
|
|
740
|
+
"p-queue": "^9.0.0",
|
|
741
|
+
"pino": "^9.6",
|
|
742
|
+
"protobufjs": "^7.2.4",
|
|
743
|
+
"whatsapp-rust-bridge": "0.5.2",
|
|
744
|
+
"ws": "^8.13.0"
|
|
745
|
+
},
|
|
746
|
+
"engines": {
|
|
747
|
+
"node": ">=20.0.0"
|
|
748
|
+
},
|
|
749
|
+
"peerDependencies": {
|
|
750
|
+
"audio-decode": "^2.1.3",
|
|
751
|
+
"jimp": "^1.6.0",
|
|
752
|
+
"link-preview-js": "^3.0.0",
|
|
753
|
+
"sharp": "*"
|
|
754
|
+
},
|
|
755
|
+
"peerDependenciesMeta": {
|
|
756
|
+
"audio-decode": {
|
|
757
|
+
"optional": true
|
|
758
|
+
},
|
|
759
|
+
"jimp": {
|
|
760
|
+
"optional": true
|
|
761
|
+
},
|
|
762
|
+
"link-preview-js": {
|
|
763
|
+
"optional": true
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"node_modules/accepts": {
|
|
768
|
+
"version": "1.3.8",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
770
|
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
|
771
|
+
"license": "MIT",
|
|
772
|
+
"dependencies": {
|
|
773
|
+
"mime-types": "~2.1.34",
|
|
774
|
+
"negotiator": "0.6.3"
|
|
775
|
+
},
|
|
776
|
+
"engines": {
|
|
777
|
+
"node": ">= 0.6"
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"node_modules/array-flatten": {
|
|
781
|
+
"version": "1.1.1",
|
|
782
|
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
|
783
|
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
|
|
784
|
+
"license": "MIT"
|
|
785
|
+
},
|
|
786
|
+
"node_modules/async-mutex": {
|
|
787
|
+
"version": "0.5.0",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.5.0.tgz",
|
|
789
|
+
"integrity": "sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==",
|
|
790
|
+
"license": "MIT",
|
|
791
|
+
"dependencies": {
|
|
792
|
+
"tslib": "^2.4.0"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
"node_modules/atomic-sleep": {
|
|
796
|
+
"version": "1.0.0",
|
|
797
|
+
"resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
|
|
798
|
+
"integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
|
|
799
|
+
"license": "MIT",
|
|
800
|
+
"engines": {
|
|
801
|
+
"node": ">=8.0.0"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
"node_modules/body-parser": {
|
|
805
|
+
"version": "1.20.5",
|
|
806
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
|
|
807
|
+
"integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
|
|
808
|
+
"license": "MIT",
|
|
809
|
+
"dependencies": {
|
|
810
|
+
"bytes": "~3.1.2",
|
|
811
|
+
"content-type": "~1.0.5",
|
|
812
|
+
"debug": "2.6.9",
|
|
813
|
+
"depd": "2.0.0",
|
|
814
|
+
"destroy": "~1.2.0",
|
|
815
|
+
"http-errors": "~2.0.1",
|
|
816
|
+
"iconv-lite": "~0.4.24",
|
|
817
|
+
"on-finished": "~2.4.1",
|
|
818
|
+
"qs": "~6.15.1",
|
|
819
|
+
"raw-body": "~2.5.3",
|
|
820
|
+
"type-is": "~1.6.18",
|
|
821
|
+
"unpipe": "~1.0.0"
|
|
822
|
+
},
|
|
823
|
+
"engines": {
|
|
824
|
+
"node": ">= 0.8",
|
|
825
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"node_modules/body-parser/node_modules/qs": {
|
|
829
|
+
"version": "6.15.1",
|
|
830
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
|
|
831
|
+
"integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
|
|
832
|
+
"license": "BSD-3-Clause",
|
|
833
|
+
"dependencies": {
|
|
834
|
+
"side-channel": "^1.1.0"
|
|
835
|
+
},
|
|
836
|
+
"engines": {
|
|
837
|
+
"node": ">=0.6"
|
|
838
|
+
},
|
|
839
|
+
"funding": {
|
|
840
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"node_modules/bytes": {
|
|
844
|
+
"version": "3.1.2",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
|
846
|
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
|
847
|
+
"license": "MIT",
|
|
848
|
+
"engines": {
|
|
849
|
+
"node": ">= 0.8"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
"node_modules/cacheable": {
|
|
853
|
+
"version": "2.3.4",
|
|
854
|
+
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.4.tgz",
|
|
855
|
+
"integrity": "sha512-djgxybDbw9fL/ZWMI3+CE8ZilNxcwFkVtDc1gJ+IlOSSWkSMPQabhV/XCHTQ6pwwN6aivXPZ43omTooZiX06Ew==",
|
|
856
|
+
"license": "MIT",
|
|
857
|
+
"dependencies": {
|
|
858
|
+
"@cacheable/memory": "^2.0.8",
|
|
859
|
+
"@cacheable/utils": "^2.4.0",
|
|
860
|
+
"hookified": "^1.15.0",
|
|
861
|
+
"keyv": "^5.6.0",
|
|
862
|
+
"qified": "^0.9.0"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"node_modules/call-bind-apply-helpers": {
|
|
866
|
+
"version": "1.0.2",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
868
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
869
|
+
"license": "MIT",
|
|
870
|
+
"dependencies": {
|
|
871
|
+
"es-errors": "^1.3.0",
|
|
872
|
+
"function-bind": "^1.1.2"
|
|
873
|
+
},
|
|
874
|
+
"engines": {
|
|
875
|
+
"node": ">= 0.4"
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
"node_modules/call-bound": {
|
|
879
|
+
"version": "1.0.4",
|
|
880
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
881
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
882
|
+
"license": "MIT",
|
|
883
|
+
"dependencies": {
|
|
884
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
885
|
+
"get-intrinsic": "^1.3.0"
|
|
886
|
+
},
|
|
887
|
+
"engines": {
|
|
888
|
+
"node": ">= 0.4"
|
|
889
|
+
},
|
|
890
|
+
"funding": {
|
|
891
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"node_modules/content-disposition": {
|
|
895
|
+
"version": "0.5.4",
|
|
896
|
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
|
897
|
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
|
898
|
+
"license": "MIT",
|
|
899
|
+
"dependencies": {
|
|
900
|
+
"safe-buffer": "5.2.1"
|
|
901
|
+
},
|
|
902
|
+
"engines": {
|
|
903
|
+
"node": ">= 0.6"
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
"node_modules/content-type": {
|
|
907
|
+
"version": "1.0.5",
|
|
908
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
|
909
|
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
|
910
|
+
"license": "MIT",
|
|
911
|
+
"engines": {
|
|
912
|
+
"node": ">= 0.6"
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
"node_modules/cookie": {
|
|
916
|
+
"version": "0.7.2",
|
|
917
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
|
|
918
|
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
|
919
|
+
"license": "MIT",
|
|
920
|
+
"engines": {
|
|
921
|
+
"node": ">= 0.6"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"node_modules/cookie-signature": {
|
|
925
|
+
"version": "1.0.7",
|
|
926
|
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
|
|
927
|
+
"integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
|
|
928
|
+
"license": "MIT"
|
|
929
|
+
},
|
|
930
|
+
"node_modules/curve25519-js": {
|
|
931
|
+
"version": "0.0.4",
|
|
932
|
+
"resolved": "https://registry.npmjs.org/curve25519-js/-/curve25519-js-0.0.4.tgz",
|
|
933
|
+
"integrity": "sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==",
|
|
934
|
+
"license": "MIT"
|
|
935
|
+
},
|
|
936
|
+
"node_modules/debug": {
|
|
937
|
+
"version": "2.6.9",
|
|
938
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
939
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
940
|
+
"license": "MIT",
|
|
941
|
+
"dependencies": {
|
|
942
|
+
"ms": "2.0.0"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/depd": {
|
|
946
|
+
"version": "2.0.0",
|
|
947
|
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
948
|
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
|
949
|
+
"license": "MIT",
|
|
950
|
+
"engines": {
|
|
951
|
+
"node": ">= 0.8"
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
"node_modules/destroy": {
|
|
955
|
+
"version": "1.2.0",
|
|
956
|
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
957
|
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
|
958
|
+
"license": "MIT",
|
|
959
|
+
"engines": {
|
|
960
|
+
"node": ">= 0.8",
|
|
961
|
+
"npm": "1.2.8000 || >= 1.4.16"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
"node_modules/detect-libc": {
|
|
965
|
+
"version": "2.1.2",
|
|
966
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
967
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
968
|
+
"license": "Apache-2.0",
|
|
969
|
+
"peer": true,
|
|
970
|
+
"engines": {
|
|
971
|
+
"node": ">=8"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"node_modules/dunder-proto": {
|
|
975
|
+
"version": "1.0.1",
|
|
976
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
977
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
978
|
+
"license": "MIT",
|
|
979
|
+
"dependencies": {
|
|
980
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
981
|
+
"es-errors": "^1.3.0",
|
|
982
|
+
"gopd": "^1.2.0"
|
|
983
|
+
},
|
|
984
|
+
"engines": {
|
|
985
|
+
"node": ">= 0.4"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
"node_modules/ee-first": {
|
|
989
|
+
"version": "1.1.1",
|
|
990
|
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
|
991
|
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
|
992
|
+
"license": "MIT"
|
|
993
|
+
},
|
|
994
|
+
"node_modules/encodeurl": {
|
|
995
|
+
"version": "2.0.0",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
|
997
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
998
|
+
"license": "MIT",
|
|
999
|
+
"engines": {
|
|
1000
|
+
"node": ">= 0.8"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"node_modules/es-define-property": {
|
|
1004
|
+
"version": "1.0.1",
|
|
1005
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1006
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1007
|
+
"license": "MIT",
|
|
1008
|
+
"engines": {
|
|
1009
|
+
"node": ">= 0.4"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"node_modules/es-errors": {
|
|
1013
|
+
"version": "1.3.0",
|
|
1014
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1015
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1016
|
+
"license": "MIT",
|
|
1017
|
+
"engines": {
|
|
1018
|
+
"node": ">= 0.4"
|
|
1019
|
+
}
|
|
1020
|
+
},
|
|
1021
|
+
"node_modules/es-object-atoms": {
|
|
1022
|
+
"version": "1.1.1",
|
|
1023
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
1024
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
1025
|
+
"license": "MIT",
|
|
1026
|
+
"dependencies": {
|
|
1027
|
+
"es-errors": "^1.3.0"
|
|
1028
|
+
},
|
|
1029
|
+
"engines": {
|
|
1030
|
+
"node": ">= 0.4"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"node_modules/escape-html": {
|
|
1034
|
+
"version": "1.0.3",
|
|
1035
|
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
1036
|
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
|
1037
|
+
"license": "MIT"
|
|
1038
|
+
},
|
|
1039
|
+
"node_modules/etag": {
|
|
1040
|
+
"version": "1.8.1",
|
|
1041
|
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
1042
|
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
|
1043
|
+
"license": "MIT",
|
|
1044
|
+
"engines": {
|
|
1045
|
+
"node": ">= 0.6"
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
"node_modules/eventemitter3": {
|
|
1049
|
+
"version": "5.0.4",
|
|
1050
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
|
|
1051
|
+
"integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
|
|
1052
|
+
"license": "MIT"
|
|
1053
|
+
},
|
|
1054
|
+
"node_modules/express": {
|
|
1055
|
+
"version": "4.22.1",
|
|
1056
|
+
"resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
|
|
1057
|
+
"integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
|
|
1058
|
+
"license": "MIT",
|
|
1059
|
+
"dependencies": {
|
|
1060
|
+
"accepts": "~1.3.8",
|
|
1061
|
+
"array-flatten": "1.1.1",
|
|
1062
|
+
"body-parser": "~1.20.3",
|
|
1063
|
+
"content-disposition": "~0.5.4",
|
|
1064
|
+
"content-type": "~1.0.4",
|
|
1065
|
+
"cookie": "~0.7.1",
|
|
1066
|
+
"cookie-signature": "~1.0.6",
|
|
1067
|
+
"debug": "2.6.9",
|
|
1068
|
+
"depd": "2.0.0",
|
|
1069
|
+
"encodeurl": "~2.0.0",
|
|
1070
|
+
"escape-html": "~1.0.3",
|
|
1071
|
+
"etag": "~1.8.1",
|
|
1072
|
+
"finalhandler": "~1.3.1",
|
|
1073
|
+
"fresh": "~0.5.2",
|
|
1074
|
+
"http-errors": "~2.0.0",
|
|
1075
|
+
"merge-descriptors": "1.0.3",
|
|
1076
|
+
"methods": "~1.1.2",
|
|
1077
|
+
"on-finished": "~2.4.1",
|
|
1078
|
+
"parseurl": "~1.3.3",
|
|
1079
|
+
"path-to-regexp": "~0.1.12",
|
|
1080
|
+
"proxy-addr": "~2.0.7",
|
|
1081
|
+
"qs": "~6.14.0",
|
|
1082
|
+
"range-parser": "~1.2.1",
|
|
1083
|
+
"safe-buffer": "5.2.1",
|
|
1084
|
+
"send": "~0.19.0",
|
|
1085
|
+
"serve-static": "~1.16.2",
|
|
1086
|
+
"setprototypeof": "1.2.0",
|
|
1087
|
+
"statuses": "~2.0.1",
|
|
1088
|
+
"type-is": "~1.6.18",
|
|
1089
|
+
"utils-merge": "1.0.1",
|
|
1090
|
+
"vary": "~1.1.2"
|
|
1091
|
+
},
|
|
1092
|
+
"engines": {
|
|
1093
|
+
"node": ">= 0.10.0"
|
|
1094
|
+
},
|
|
1095
|
+
"funding": {
|
|
1096
|
+
"type": "opencollective",
|
|
1097
|
+
"url": "https://opencollective.com/express"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"node_modules/file-type": {
|
|
1101
|
+
"version": "21.3.4",
|
|
1102
|
+
"resolved": "https://registry.npmjs.org/file-type/-/file-type-21.3.4.tgz",
|
|
1103
|
+
"integrity": "sha512-Ievi/yy8DS3ygGvT47PjSfdFoX+2isQueoYP1cntFW1JLYAuS4GD7NUPGg4zv2iZfV52uDyk5w5Z0TdpRS6Q1g==",
|
|
1104
|
+
"license": "MIT",
|
|
1105
|
+
"dependencies": {
|
|
1106
|
+
"@tokenizer/inflate": "^0.4.1",
|
|
1107
|
+
"strtok3": "^10.3.4",
|
|
1108
|
+
"token-types": "^6.1.1",
|
|
1109
|
+
"uint8array-extras": "^1.4.0"
|
|
1110
|
+
},
|
|
1111
|
+
"engines": {
|
|
1112
|
+
"node": ">=20"
|
|
1113
|
+
},
|
|
1114
|
+
"funding": {
|
|
1115
|
+
"url": "https://github.com/sindresorhus/file-type?sponsor=1"
|
|
1116
|
+
}
|
|
1117
|
+
},
|
|
1118
|
+
"node_modules/finalhandler": {
|
|
1119
|
+
"version": "1.3.2",
|
|
1120
|
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
|
|
1121
|
+
"integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
|
|
1122
|
+
"license": "MIT",
|
|
1123
|
+
"dependencies": {
|
|
1124
|
+
"debug": "2.6.9",
|
|
1125
|
+
"encodeurl": "~2.0.0",
|
|
1126
|
+
"escape-html": "~1.0.3",
|
|
1127
|
+
"on-finished": "~2.4.1",
|
|
1128
|
+
"parseurl": "~1.3.3",
|
|
1129
|
+
"statuses": "~2.0.2",
|
|
1130
|
+
"unpipe": "~1.0.0"
|
|
1131
|
+
},
|
|
1132
|
+
"engines": {
|
|
1133
|
+
"node": ">= 0.8"
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
"node_modules/forwarded": {
|
|
1137
|
+
"version": "0.2.0",
|
|
1138
|
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
1139
|
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
|
1140
|
+
"license": "MIT",
|
|
1141
|
+
"engines": {
|
|
1142
|
+
"node": ">= 0.6"
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
"node_modules/fresh": {
|
|
1146
|
+
"version": "0.5.2",
|
|
1147
|
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
|
1148
|
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
|
1149
|
+
"license": "MIT",
|
|
1150
|
+
"engines": {
|
|
1151
|
+
"node": ">= 0.6"
|
|
1152
|
+
}
|
|
1153
|
+
},
|
|
1154
|
+
"node_modules/function-bind": {
|
|
1155
|
+
"version": "1.1.2",
|
|
1156
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1157
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1158
|
+
"license": "MIT",
|
|
1159
|
+
"funding": {
|
|
1160
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"node_modules/get-intrinsic": {
|
|
1164
|
+
"version": "1.3.0",
|
|
1165
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1166
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1167
|
+
"license": "MIT",
|
|
1168
|
+
"dependencies": {
|
|
1169
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1170
|
+
"es-define-property": "^1.0.1",
|
|
1171
|
+
"es-errors": "^1.3.0",
|
|
1172
|
+
"es-object-atoms": "^1.1.1",
|
|
1173
|
+
"function-bind": "^1.1.2",
|
|
1174
|
+
"get-proto": "^1.0.1",
|
|
1175
|
+
"gopd": "^1.2.0",
|
|
1176
|
+
"has-symbols": "^1.1.0",
|
|
1177
|
+
"hasown": "^2.0.2",
|
|
1178
|
+
"math-intrinsics": "^1.1.0"
|
|
1179
|
+
},
|
|
1180
|
+
"engines": {
|
|
1181
|
+
"node": ">= 0.4"
|
|
1182
|
+
},
|
|
1183
|
+
"funding": {
|
|
1184
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"node_modules/get-proto": {
|
|
1188
|
+
"version": "1.0.1",
|
|
1189
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
1190
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1191
|
+
"license": "MIT",
|
|
1192
|
+
"dependencies": {
|
|
1193
|
+
"dunder-proto": "^1.0.1",
|
|
1194
|
+
"es-object-atoms": "^1.0.0"
|
|
1195
|
+
},
|
|
1196
|
+
"engines": {
|
|
1197
|
+
"node": ">= 0.4"
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/gopd": {
|
|
1201
|
+
"version": "1.2.0",
|
|
1202
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
1203
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1204
|
+
"license": "MIT",
|
|
1205
|
+
"engines": {
|
|
1206
|
+
"node": ">= 0.4"
|
|
1207
|
+
},
|
|
1208
|
+
"funding": {
|
|
1209
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"node_modules/has-symbols": {
|
|
1213
|
+
"version": "1.1.0",
|
|
1214
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1215
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1216
|
+
"license": "MIT",
|
|
1217
|
+
"engines": {
|
|
1218
|
+
"node": ">= 0.4"
|
|
1219
|
+
},
|
|
1220
|
+
"funding": {
|
|
1221
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"node_modules/hashery": {
|
|
1225
|
+
"version": "1.5.1",
|
|
1226
|
+
"resolved": "https://registry.npmjs.org/hashery/-/hashery-1.5.1.tgz",
|
|
1227
|
+
"integrity": "sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==",
|
|
1228
|
+
"license": "MIT",
|
|
1229
|
+
"dependencies": {
|
|
1230
|
+
"hookified": "^1.15.0"
|
|
1231
|
+
},
|
|
1232
|
+
"engines": {
|
|
1233
|
+
"node": ">=20"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"node_modules/hasown": {
|
|
1237
|
+
"version": "2.0.3",
|
|
1238
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
|
|
1239
|
+
"integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
|
|
1240
|
+
"license": "MIT",
|
|
1241
|
+
"dependencies": {
|
|
1242
|
+
"function-bind": "^1.1.2"
|
|
1243
|
+
},
|
|
1244
|
+
"engines": {
|
|
1245
|
+
"node": ">= 0.4"
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
"node_modules/hookified": {
|
|
1249
|
+
"version": "1.15.1",
|
|
1250
|
+
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.1.tgz",
|
|
1251
|
+
"integrity": "sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==",
|
|
1252
|
+
"license": "MIT"
|
|
1253
|
+
},
|
|
1254
|
+
"node_modules/http-errors": {
|
|
1255
|
+
"version": "2.0.1",
|
|
1256
|
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
|
|
1257
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
1258
|
+
"license": "MIT",
|
|
1259
|
+
"dependencies": {
|
|
1260
|
+
"depd": "~2.0.0",
|
|
1261
|
+
"inherits": "~2.0.4",
|
|
1262
|
+
"setprototypeof": "~1.2.0",
|
|
1263
|
+
"statuses": "~2.0.2",
|
|
1264
|
+
"toidentifier": "~1.0.1"
|
|
1265
|
+
},
|
|
1266
|
+
"engines": {
|
|
1267
|
+
"node": ">= 0.8"
|
|
1268
|
+
},
|
|
1269
|
+
"funding": {
|
|
1270
|
+
"type": "opencollective",
|
|
1271
|
+
"url": "https://opencollective.com/express"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"node_modules/iconv-lite": {
|
|
1275
|
+
"version": "0.4.24",
|
|
1276
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
|
1277
|
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
1278
|
+
"license": "MIT",
|
|
1279
|
+
"dependencies": {
|
|
1280
|
+
"safer-buffer": ">= 2.1.2 < 3"
|
|
1281
|
+
},
|
|
1282
|
+
"engines": {
|
|
1283
|
+
"node": ">=0.10.0"
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
"node_modules/ieee754": {
|
|
1287
|
+
"version": "1.2.1",
|
|
1288
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
1289
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
1290
|
+
"funding": [
|
|
1291
|
+
{
|
|
1292
|
+
"type": "github",
|
|
1293
|
+
"url": "https://github.com/sponsors/feross"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"type": "patreon",
|
|
1297
|
+
"url": "https://www.patreon.com/feross"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"type": "consulting",
|
|
1301
|
+
"url": "https://feross.org/support"
|
|
1302
|
+
}
|
|
1303
|
+
],
|
|
1304
|
+
"license": "BSD-3-Clause"
|
|
1305
|
+
},
|
|
1306
|
+
"node_modules/inherits": {
|
|
1307
|
+
"version": "2.0.4",
|
|
1308
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
1309
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
1310
|
+
"license": "ISC"
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/ipaddr.js": {
|
|
1313
|
+
"version": "1.9.1",
|
|
1314
|
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
|
1315
|
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
|
1316
|
+
"license": "MIT",
|
|
1317
|
+
"engines": {
|
|
1318
|
+
"node": ">= 0.10"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1321
|
+
"node_modules/keyv": {
|
|
1322
|
+
"version": "5.6.0",
|
|
1323
|
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz",
|
|
1324
|
+
"integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==",
|
|
1325
|
+
"license": "MIT",
|
|
1326
|
+
"dependencies": {
|
|
1327
|
+
"@keyv/serialize": "^1.1.1"
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
"node_modules/libsignal": {
|
|
1331
|
+
"name": "@whiskeysockets/libsignal-node",
|
|
1332
|
+
"version": "2.0.1",
|
|
1333
|
+
"resolved": "git+ssh://git@github.com/whiskeysockets/libsignal-node.git#1c30d7d7e76a3b0aa120b04dc6a26f5a12dccf67",
|
|
1334
|
+
"license": "GPL-3.0",
|
|
1335
|
+
"dependencies": {
|
|
1336
|
+
"curve25519-js": "^0.0.4",
|
|
1337
|
+
"protobufjs": "6.8.8"
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"node_modules/long": {
|
|
1341
|
+
"version": "5.3.2",
|
|
1342
|
+
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
1343
|
+
"integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
|
|
1344
|
+
"license": "Apache-2.0"
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/lru-cache": {
|
|
1347
|
+
"version": "11.3.5",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.5.tgz",
|
|
1349
|
+
"integrity": "sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==",
|
|
1350
|
+
"license": "BlueOak-1.0.0",
|
|
1351
|
+
"engines": {
|
|
1352
|
+
"node": "20 || >=22"
|
|
1353
|
+
}
|
|
1354
|
+
},
|
|
1355
|
+
"node_modules/math-intrinsics": {
|
|
1356
|
+
"version": "1.1.0",
|
|
1357
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
1358
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
1359
|
+
"license": "MIT",
|
|
1360
|
+
"engines": {
|
|
1361
|
+
"node": ">= 0.4"
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
"node_modules/media-typer": {
|
|
1365
|
+
"version": "1.1.0",
|
|
1366
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
|
|
1367
|
+
"integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
|
|
1368
|
+
"license": "MIT",
|
|
1369
|
+
"engines": {
|
|
1370
|
+
"node": ">= 0.8"
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
"node_modules/merge-descriptors": {
|
|
1374
|
+
"version": "1.0.3",
|
|
1375
|
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
|
1376
|
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
|
1377
|
+
"license": "MIT",
|
|
1378
|
+
"funding": {
|
|
1379
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"node_modules/methods": {
|
|
1383
|
+
"version": "1.1.2",
|
|
1384
|
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
1385
|
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
|
1386
|
+
"license": "MIT",
|
|
1387
|
+
"engines": {
|
|
1388
|
+
"node": ">= 0.6"
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
"node_modules/mime": {
|
|
1392
|
+
"version": "1.6.0",
|
|
1393
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
1394
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
1395
|
+
"license": "MIT",
|
|
1396
|
+
"bin": {
|
|
1397
|
+
"mime": "cli.js"
|
|
1398
|
+
},
|
|
1399
|
+
"engines": {
|
|
1400
|
+
"node": ">=4"
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"node_modules/mime-db": {
|
|
1404
|
+
"version": "1.52.0",
|
|
1405
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
1406
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
1407
|
+
"license": "MIT",
|
|
1408
|
+
"engines": {
|
|
1409
|
+
"node": ">= 0.6"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
"node_modules/mime-types": {
|
|
1413
|
+
"version": "2.1.35",
|
|
1414
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
1415
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
1416
|
+
"license": "MIT",
|
|
1417
|
+
"dependencies": {
|
|
1418
|
+
"mime-db": "1.52.0"
|
|
1419
|
+
},
|
|
1420
|
+
"engines": {
|
|
1421
|
+
"node": ">= 0.6"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"node_modules/ms": {
|
|
1425
|
+
"version": "2.0.0",
|
|
1426
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
1427
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
1428
|
+
"license": "MIT"
|
|
1429
|
+
},
|
|
1430
|
+
"node_modules/music-metadata": {
|
|
1431
|
+
"version": "11.12.3",
|
|
1432
|
+
"resolved": "https://registry.npmjs.org/music-metadata/-/music-metadata-11.12.3.tgz",
|
|
1433
|
+
"integrity": "sha512-n6hSTZkuD59qWgHh6IP5dtDlDZQXoxk/bcA85Jywg8Z1iFrlNgl2+GTFgjZyn52W5UgQpV42V4XqrQZZAMbZTQ==",
|
|
1434
|
+
"funding": [
|
|
1435
|
+
{
|
|
1436
|
+
"type": "github",
|
|
1437
|
+
"url": "https://github.com/sponsors/Borewit"
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"type": "buymeacoffee",
|
|
1441
|
+
"url": "https://buymeacoffee.com/borewit"
|
|
1442
|
+
}
|
|
1443
|
+
],
|
|
1444
|
+
"license": "MIT",
|
|
1445
|
+
"dependencies": {
|
|
1446
|
+
"@borewit/text-codec": "^0.2.2",
|
|
1447
|
+
"@tokenizer/token": "^0.3.0",
|
|
1448
|
+
"content-type": "^1.0.5",
|
|
1449
|
+
"debug": "^4.4.3",
|
|
1450
|
+
"file-type": "^21.3.1",
|
|
1451
|
+
"media-typer": "^1.1.0",
|
|
1452
|
+
"strtok3": "^10.3.4",
|
|
1453
|
+
"token-types": "^6.1.2",
|
|
1454
|
+
"uint8array-extras": "^1.5.0",
|
|
1455
|
+
"win-guid": "^0.2.1"
|
|
1456
|
+
},
|
|
1457
|
+
"engines": {
|
|
1458
|
+
"node": ">=18"
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"node_modules/music-metadata/node_modules/debug": {
|
|
1462
|
+
"version": "4.4.3",
|
|
1463
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1464
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1465
|
+
"license": "MIT",
|
|
1466
|
+
"dependencies": {
|
|
1467
|
+
"ms": "^2.1.3"
|
|
1468
|
+
},
|
|
1469
|
+
"engines": {
|
|
1470
|
+
"node": ">=6.0"
|
|
1471
|
+
},
|
|
1472
|
+
"peerDependenciesMeta": {
|
|
1473
|
+
"supports-color": {
|
|
1474
|
+
"optional": true
|
|
1475
|
+
}
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/music-metadata/node_modules/ms": {
|
|
1479
|
+
"version": "2.1.3",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1481
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1482
|
+
"license": "MIT"
|
|
1483
|
+
},
|
|
1484
|
+
"node_modules/negotiator": {
|
|
1485
|
+
"version": "0.6.3",
|
|
1486
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
|
1487
|
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
|
1488
|
+
"license": "MIT",
|
|
1489
|
+
"engines": {
|
|
1490
|
+
"node": ">= 0.6"
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
"node_modules/object-inspect": {
|
|
1494
|
+
"version": "1.13.4",
|
|
1495
|
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
|
1496
|
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
|
1497
|
+
"license": "MIT",
|
|
1498
|
+
"engines": {
|
|
1499
|
+
"node": ">= 0.4"
|
|
1500
|
+
},
|
|
1501
|
+
"funding": {
|
|
1502
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1503
|
+
}
|
|
1504
|
+
},
|
|
1505
|
+
"node_modules/on-exit-leak-free": {
|
|
1506
|
+
"version": "2.1.2",
|
|
1507
|
+
"resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz",
|
|
1508
|
+
"integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==",
|
|
1509
|
+
"license": "MIT",
|
|
1510
|
+
"engines": {
|
|
1511
|
+
"node": ">=14.0.0"
|
|
1512
|
+
}
|
|
1513
|
+
},
|
|
1514
|
+
"node_modules/on-finished": {
|
|
1515
|
+
"version": "2.4.1",
|
|
1516
|
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
|
1517
|
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
1518
|
+
"license": "MIT",
|
|
1519
|
+
"dependencies": {
|
|
1520
|
+
"ee-first": "1.1.1"
|
|
1521
|
+
},
|
|
1522
|
+
"engines": {
|
|
1523
|
+
"node": ">= 0.8"
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"node_modules/p-queue": {
|
|
1527
|
+
"version": "9.2.0",
|
|
1528
|
+
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.2.0.tgz",
|
|
1529
|
+
"integrity": "sha512-dWgLE8AH0HjQ9fe74pUkKkvzzYT18Inp4zra3lKHnnwqGvcfcUBrvF2EAVX+envufDNBOzpPq/IBUONDbI7+3g==",
|
|
1530
|
+
"license": "MIT",
|
|
1531
|
+
"dependencies": {
|
|
1532
|
+
"eventemitter3": "^5.0.4",
|
|
1533
|
+
"p-timeout": "^7.0.0"
|
|
1534
|
+
},
|
|
1535
|
+
"engines": {
|
|
1536
|
+
"node": ">=20"
|
|
1537
|
+
},
|
|
1538
|
+
"funding": {
|
|
1539
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"node_modules/p-timeout": {
|
|
1543
|
+
"version": "7.0.1",
|
|
1544
|
+
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz",
|
|
1545
|
+
"integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==",
|
|
1546
|
+
"license": "MIT",
|
|
1547
|
+
"engines": {
|
|
1548
|
+
"node": ">=20"
|
|
1549
|
+
},
|
|
1550
|
+
"funding": {
|
|
1551
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1552
|
+
}
|
|
1553
|
+
},
|
|
1554
|
+
"node_modules/parseurl": {
|
|
1555
|
+
"version": "1.3.3",
|
|
1556
|
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
|
1557
|
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
|
1558
|
+
"license": "MIT",
|
|
1559
|
+
"engines": {
|
|
1560
|
+
"node": ">= 0.8"
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"node_modules/path-to-regexp": {
|
|
1564
|
+
"version": "0.1.13",
|
|
1565
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
|
|
1566
|
+
"integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
|
|
1567
|
+
"license": "MIT"
|
|
1568
|
+
},
|
|
1569
|
+
"node_modules/pino": {
|
|
1570
|
+
"version": "9.14.0",
|
|
1571
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-9.14.0.tgz",
|
|
1572
|
+
"integrity": "sha512-8OEwKp5juEvb/MjpIc4hjqfgCNysrS94RIOMXYvpYCdm/jglrKEiAYmiumbmGhCvs+IcInsphYDFwqrjr7398w==",
|
|
1573
|
+
"license": "MIT",
|
|
1574
|
+
"dependencies": {
|
|
1575
|
+
"@pinojs/redact": "^0.4.0",
|
|
1576
|
+
"atomic-sleep": "^1.0.0",
|
|
1577
|
+
"on-exit-leak-free": "^2.1.0",
|
|
1578
|
+
"pino-abstract-transport": "^2.0.0",
|
|
1579
|
+
"pino-std-serializers": "^7.0.0",
|
|
1580
|
+
"process-warning": "^5.0.0",
|
|
1581
|
+
"quick-format-unescaped": "^4.0.3",
|
|
1582
|
+
"real-require": "^0.2.0",
|
|
1583
|
+
"safe-stable-stringify": "^2.3.1",
|
|
1584
|
+
"sonic-boom": "^4.0.1",
|
|
1585
|
+
"thread-stream": "^3.0.0"
|
|
1586
|
+
},
|
|
1587
|
+
"bin": {
|
|
1588
|
+
"pino": "bin.js"
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
"node_modules/pino-abstract-transport": {
|
|
1592
|
+
"version": "2.0.0",
|
|
1593
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz",
|
|
1594
|
+
"integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==",
|
|
1595
|
+
"license": "MIT",
|
|
1596
|
+
"dependencies": {
|
|
1597
|
+
"split2": "^4.0.0"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
"node_modules/pino-std-serializers": {
|
|
1601
|
+
"version": "7.1.0",
|
|
1602
|
+
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.1.0.tgz",
|
|
1603
|
+
"integrity": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==",
|
|
1604
|
+
"license": "MIT"
|
|
1605
|
+
},
|
|
1606
|
+
"node_modules/process-warning": {
|
|
1607
|
+
"version": "5.0.0",
|
|
1608
|
+
"resolved": "https://registry.npmjs.org/process-warning/-/process-warning-5.0.0.tgz",
|
|
1609
|
+
"integrity": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==",
|
|
1610
|
+
"funding": [
|
|
1611
|
+
{
|
|
1612
|
+
"type": "github",
|
|
1613
|
+
"url": "https://github.com/sponsors/fastify"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"type": "opencollective",
|
|
1617
|
+
"url": "https://opencollective.com/fastify"
|
|
1618
|
+
}
|
|
1619
|
+
],
|
|
1620
|
+
"license": "MIT"
|
|
1621
|
+
},
|
|
1622
|
+
"node_modules/protobufjs": {
|
|
1623
|
+
"version": "7.5.6",
|
|
1624
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.6.tgz",
|
|
1625
|
+
"integrity": "sha512-M71sTMB146U3u0di3yup8iM+zv8yPRNQVr1KK4tyBitl3qFvEGucq/rGDRShD2rsJhtN02RJaJ7j5X5hmy8SJg==",
|
|
1626
|
+
"hasInstallScript": true,
|
|
1627
|
+
"license": "BSD-3-Clause",
|
|
1628
|
+
"dependencies": {
|
|
1629
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
1630
|
+
"@protobufjs/base64": "^1.1.2",
|
|
1631
|
+
"@protobufjs/codegen": "^2.0.5",
|
|
1632
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
1633
|
+
"@protobufjs/fetch": "^1.1.0",
|
|
1634
|
+
"@protobufjs/float": "^1.0.2",
|
|
1635
|
+
"@protobufjs/inquire": "^1.1.1",
|
|
1636
|
+
"@protobufjs/path": "^1.1.2",
|
|
1637
|
+
"@protobufjs/pool": "^1.1.0",
|
|
1638
|
+
"@protobufjs/utf8": "^1.1.1",
|
|
1639
|
+
"@types/node": ">=13.7.0",
|
|
1640
|
+
"long": "^5.0.0"
|
|
1641
|
+
},
|
|
1642
|
+
"engines": {
|
|
1643
|
+
"node": ">=12.0.0"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"node_modules/proxy-addr": {
|
|
1647
|
+
"version": "2.0.7",
|
|
1648
|
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
|
1649
|
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
|
1650
|
+
"license": "MIT",
|
|
1651
|
+
"dependencies": {
|
|
1652
|
+
"forwarded": "0.2.0",
|
|
1653
|
+
"ipaddr.js": "1.9.1"
|
|
1654
|
+
},
|
|
1655
|
+
"engines": {
|
|
1656
|
+
"node": ">= 0.10"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"node_modules/qified": {
|
|
1660
|
+
"version": "0.9.1",
|
|
1661
|
+
"resolved": "https://registry.npmjs.org/qified/-/qified-0.9.1.tgz",
|
|
1662
|
+
"integrity": "sha512-n7mar4T0xQ+39dE2vGTAlbxUEpndwPANH0kDef1/MYsB8Bba9wshkybIRx74qgcvKQPEWErf9AqAdYjhzY2Ilg==",
|
|
1663
|
+
"license": "MIT",
|
|
1664
|
+
"dependencies": {
|
|
1665
|
+
"hookified": "^2.1.1"
|
|
1666
|
+
},
|
|
1667
|
+
"engines": {
|
|
1668
|
+
"node": ">=20"
|
|
1669
|
+
}
|
|
1670
|
+
},
|
|
1671
|
+
"node_modules/qified/node_modules/hookified": {
|
|
1672
|
+
"version": "2.2.0",
|
|
1673
|
+
"resolved": "https://registry.npmjs.org/hookified/-/hookified-2.2.0.tgz",
|
|
1674
|
+
"integrity": "sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==",
|
|
1675
|
+
"license": "MIT"
|
|
1676
|
+
},
|
|
1677
|
+
"node_modules/qrcode-terminal": {
|
|
1678
|
+
"version": "0.12.0",
|
|
1679
|
+
"resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz",
|
|
1680
|
+
"integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==",
|
|
1681
|
+
"bin": {
|
|
1682
|
+
"qrcode-terminal": "bin/qrcode-terminal.js"
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
"node_modules/qs": {
|
|
1686
|
+
"version": "6.14.2",
|
|
1687
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
|
1688
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
1689
|
+
"license": "BSD-3-Clause",
|
|
1690
|
+
"dependencies": {
|
|
1691
|
+
"side-channel": "^1.1.0"
|
|
1692
|
+
},
|
|
1693
|
+
"engines": {
|
|
1694
|
+
"node": ">=0.6"
|
|
1695
|
+
},
|
|
1696
|
+
"funding": {
|
|
1697
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1700
|
+
"node_modules/quick-format-unescaped": {
|
|
1701
|
+
"version": "4.0.4",
|
|
1702
|
+
"resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
|
|
1703
|
+
"integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==",
|
|
1704
|
+
"license": "MIT"
|
|
1705
|
+
},
|
|
1706
|
+
"node_modules/range-parser": {
|
|
1707
|
+
"version": "1.2.1",
|
|
1708
|
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
|
1709
|
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
|
1710
|
+
"license": "MIT",
|
|
1711
|
+
"engines": {
|
|
1712
|
+
"node": ">= 0.6"
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
"node_modules/raw-body": {
|
|
1716
|
+
"version": "2.5.3",
|
|
1717
|
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
|
|
1718
|
+
"integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
|
|
1719
|
+
"license": "MIT",
|
|
1720
|
+
"dependencies": {
|
|
1721
|
+
"bytes": "~3.1.2",
|
|
1722
|
+
"http-errors": "~2.0.1",
|
|
1723
|
+
"iconv-lite": "~0.4.24",
|
|
1724
|
+
"unpipe": "~1.0.0"
|
|
1725
|
+
},
|
|
1726
|
+
"engines": {
|
|
1727
|
+
"node": ">= 0.8"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"node_modules/real-require": {
|
|
1731
|
+
"version": "0.2.0",
|
|
1732
|
+
"resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz",
|
|
1733
|
+
"integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==",
|
|
1734
|
+
"license": "MIT",
|
|
1735
|
+
"engines": {
|
|
1736
|
+
"node": ">= 12.13.0"
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
"node_modules/safe-buffer": {
|
|
1740
|
+
"version": "5.2.1",
|
|
1741
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1742
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1743
|
+
"funding": [
|
|
1744
|
+
{
|
|
1745
|
+
"type": "github",
|
|
1746
|
+
"url": "https://github.com/sponsors/feross"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"type": "patreon",
|
|
1750
|
+
"url": "https://www.patreon.com/feross"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"type": "consulting",
|
|
1754
|
+
"url": "https://feross.org/support"
|
|
1755
|
+
}
|
|
1756
|
+
],
|
|
1757
|
+
"license": "MIT"
|
|
1758
|
+
},
|
|
1759
|
+
"node_modules/safe-stable-stringify": {
|
|
1760
|
+
"version": "2.5.0",
|
|
1761
|
+
"resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
|
|
1762
|
+
"integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
|
|
1763
|
+
"license": "MIT",
|
|
1764
|
+
"engines": {
|
|
1765
|
+
"node": ">=10"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"node_modules/safer-buffer": {
|
|
1769
|
+
"version": "2.1.2",
|
|
1770
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
1771
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
1772
|
+
"license": "MIT"
|
|
1773
|
+
},
|
|
1774
|
+
"node_modules/semver": {
|
|
1775
|
+
"version": "7.7.4",
|
|
1776
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1777
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1778
|
+
"license": "ISC",
|
|
1779
|
+
"peer": true,
|
|
1780
|
+
"bin": {
|
|
1781
|
+
"semver": "bin/semver.js"
|
|
1782
|
+
},
|
|
1783
|
+
"engines": {
|
|
1784
|
+
"node": ">=10"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
"node_modules/send": {
|
|
1788
|
+
"version": "0.19.2",
|
|
1789
|
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
|
|
1790
|
+
"integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
|
|
1791
|
+
"license": "MIT",
|
|
1792
|
+
"dependencies": {
|
|
1793
|
+
"debug": "2.6.9",
|
|
1794
|
+
"depd": "2.0.0",
|
|
1795
|
+
"destroy": "1.2.0",
|
|
1796
|
+
"encodeurl": "~2.0.0",
|
|
1797
|
+
"escape-html": "~1.0.3",
|
|
1798
|
+
"etag": "~1.8.1",
|
|
1799
|
+
"fresh": "~0.5.2",
|
|
1800
|
+
"http-errors": "~2.0.1",
|
|
1801
|
+
"mime": "1.6.0",
|
|
1802
|
+
"ms": "2.1.3",
|
|
1803
|
+
"on-finished": "~2.4.1",
|
|
1804
|
+
"range-parser": "~1.2.1",
|
|
1805
|
+
"statuses": "~2.0.2"
|
|
1806
|
+
},
|
|
1807
|
+
"engines": {
|
|
1808
|
+
"node": ">= 0.8.0"
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"node_modules/send/node_modules/ms": {
|
|
1812
|
+
"version": "2.1.3",
|
|
1813
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1814
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1815
|
+
"license": "MIT"
|
|
1816
|
+
},
|
|
1817
|
+
"node_modules/serve-static": {
|
|
1818
|
+
"version": "1.16.3",
|
|
1819
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
|
|
1820
|
+
"integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
|
|
1821
|
+
"license": "MIT",
|
|
1822
|
+
"dependencies": {
|
|
1823
|
+
"encodeurl": "~2.0.0",
|
|
1824
|
+
"escape-html": "~1.0.3",
|
|
1825
|
+
"parseurl": "~1.3.3",
|
|
1826
|
+
"send": "~0.19.1"
|
|
1827
|
+
},
|
|
1828
|
+
"engines": {
|
|
1829
|
+
"node": ">= 0.8.0"
|
|
1830
|
+
}
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/setprototypeof": {
|
|
1833
|
+
"version": "1.2.0",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
1835
|
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
|
1836
|
+
"license": "ISC"
|
|
1837
|
+
},
|
|
1838
|
+
"node_modules/sharp": {
|
|
1839
|
+
"version": "0.34.5",
|
|
1840
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
|
|
1841
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
1842
|
+
"hasInstallScript": true,
|
|
1843
|
+
"license": "Apache-2.0",
|
|
1844
|
+
"peer": true,
|
|
1845
|
+
"dependencies": {
|
|
1846
|
+
"@img/colour": "^1.0.0",
|
|
1847
|
+
"detect-libc": "^2.1.2",
|
|
1848
|
+
"semver": "^7.7.3"
|
|
1849
|
+
},
|
|
1850
|
+
"engines": {
|
|
1851
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1852
|
+
},
|
|
1853
|
+
"funding": {
|
|
1854
|
+
"url": "https://opencollective.com/libvips"
|
|
1855
|
+
},
|
|
1856
|
+
"optionalDependencies": {
|
|
1857
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
1858
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
1859
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
1860
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
1861
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
1862
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
1863
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
1864
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
1865
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
1866
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
1867
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
1868
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
1869
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
1870
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
1871
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
1872
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
1873
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
1874
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
1875
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
1876
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
1877
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
1878
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
1879
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
1880
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
1881
|
+
}
|
|
1882
|
+
},
|
|
1883
|
+
"node_modules/side-channel": {
|
|
1884
|
+
"version": "1.1.0",
|
|
1885
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
|
1886
|
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
|
1887
|
+
"license": "MIT",
|
|
1888
|
+
"dependencies": {
|
|
1889
|
+
"es-errors": "^1.3.0",
|
|
1890
|
+
"object-inspect": "^1.13.3",
|
|
1891
|
+
"side-channel-list": "^1.0.0",
|
|
1892
|
+
"side-channel-map": "^1.0.1",
|
|
1893
|
+
"side-channel-weakmap": "^1.0.2"
|
|
1894
|
+
},
|
|
1895
|
+
"engines": {
|
|
1896
|
+
"node": ">= 0.4"
|
|
1897
|
+
},
|
|
1898
|
+
"funding": {
|
|
1899
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
"node_modules/side-channel-list": {
|
|
1903
|
+
"version": "1.0.1",
|
|
1904
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
|
|
1905
|
+
"integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
|
|
1906
|
+
"license": "MIT",
|
|
1907
|
+
"dependencies": {
|
|
1908
|
+
"es-errors": "^1.3.0",
|
|
1909
|
+
"object-inspect": "^1.13.4"
|
|
1910
|
+
},
|
|
1911
|
+
"engines": {
|
|
1912
|
+
"node": ">= 0.4"
|
|
1913
|
+
},
|
|
1914
|
+
"funding": {
|
|
1915
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1918
|
+
"node_modules/side-channel-map": {
|
|
1919
|
+
"version": "1.0.1",
|
|
1920
|
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
|
1921
|
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
|
1922
|
+
"license": "MIT",
|
|
1923
|
+
"dependencies": {
|
|
1924
|
+
"call-bound": "^1.0.2",
|
|
1925
|
+
"es-errors": "^1.3.0",
|
|
1926
|
+
"get-intrinsic": "^1.2.5",
|
|
1927
|
+
"object-inspect": "^1.13.3"
|
|
1928
|
+
},
|
|
1929
|
+
"engines": {
|
|
1930
|
+
"node": ">= 0.4"
|
|
1931
|
+
},
|
|
1932
|
+
"funding": {
|
|
1933
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
"node_modules/side-channel-weakmap": {
|
|
1937
|
+
"version": "1.0.2",
|
|
1938
|
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
|
1939
|
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
|
1940
|
+
"license": "MIT",
|
|
1941
|
+
"dependencies": {
|
|
1942
|
+
"call-bound": "^1.0.2",
|
|
1943
|
+
"es-errors": "^1.3.0",
|
|
1944
|
+
"get-intrinsic": "^1.2.5",
|
|
1945
|
+
"object-inspect": "^1.13.3",
|
|
1946
|
+
"side-channel-map": "^1.0.1"
|
|
1947
|
+
},
|
|
1948
|
+
"engines": {
|
|
1949
|
+
"node": ">= 0.4"
|
|
1950
|
+
},
|
|
1951
|
+
"funding": {
|
|
1952
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"node_modules/sonic-boom": {
|
|
1956
|
+
"version": "4.2.1",
|
|
1957
|
+
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.1.tgz",
|
|
1958
|
+
"integrity": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==",
|
|
1959
|
+
"license": "MIT",
|
|
1960
|
+
"dependencies": {
|
|
1961
|
+
"atomic-sleep": "^1.0.0"
|
|
1962
|
+
}
|
|
1963
|
+
},
|
|
1964
|
+
"node_modules/split2": {
|
|
1965
|
+
"version": "4.2.0",
|
|
1966
|
+
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
1967
|
+
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
1968
|
+
"license": "ISC",
|
|
1969
|
+
"engines": {
|
|
1970
|
+
"node": ">= 10.x"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
"node_modules/statuses": {
|
|
1974
|
+
"version": "2.0.2",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
|
1976
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
1977
|
+
"license": "MIT",
|
|
1978
|
+
"engines": {
|
|
1979
|
+
"node": ">= 0.8"
|
|
1980
|
+
}
|
|
1981
|
+
},
|
|
1982
|
+
"node_modules/strtok3": {
|
|
1983
|
+
"version": "10.3.5",
|
|
1984
|
+
"resolved": "https://registry.npmjs.org/strtok3/-/strtok3-10.3.5.tgz",
|
|
1985
|
+
"integrity": "sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==",
|
|
1986
|
+
"license": "MIT",
|
|
1987
|
+
"dependencies": {
|
|
1988
|
+
"@tokenizer/token": "^0.3.0"
|
|
1989
|
+
},
|
|
1990
|
+
"engines": {
|
|
1991
|
+
"node": ">=18"
|
|
1992
|
+
},
|
|
1993
|
+
"funding": {
|
|
1994
|
+
"type": "github",
|
|
1995
|
+
"url": "https://github.com/sponsors/Borewit"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"node_modules/thread-stream": {
|
|
1999
|
+
"version": "3.1.0",
|
|
2000
|
+
"resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz",
|
|
2001
|
+
"integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==",
|
|
2002
|
+
"license": "MIT",
|
|
2003
|
+
"dependencies": {
|
|
2004
|
+
"real-require": "^0.2.0"
|
|
2005
|
+
}
|
|
2006
|
+
},
|
|
2007
|
+
"node_modules/toidentifier": {
|
|
2008
|
+
"version": "1.0.1",
|
|
2009
|
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
|
2010
|
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
|
2011
|
+
"license": "MIT",
|
|
2012
|
+
"engines": {
|
|
2013
|
+
"node": ">=0.6"
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
"node_modules/token-types": {
|
|
2017
|
+
"version": "6.1.2",
|
|
2018
|
+
"resolved": "https://registry.npmjs.org/token-types/-/token-types-6.1.2.tgz",
|
|
2019
|
+
"integrity": "sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==",
|
|
2020
|
+
"license": "MIT",
|
|
2021
|
+
"dependencies": {
|
|
2022
|
+
"@borewit/text-codec": "^0.2.1",
|
|
2023
|
+
"@tokenizer/token": "^0.3.0",
|
|
2024
|
+
"ieee754": "^1.2.1"
|
|
2025
|
+
},
|
|
2026
|
+
"engines": {
|
|
2027
|
+
"node": ">=14.16"
|
|
2028
|
+
},
|
|
2029
|
+
"funding": {
|
|
2030
|
+
"type": "github",
|
|
2031
|
+
"url": "https://github.com/sponsors/Borewit"
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
"node_modules/tslib": {
|
|
2035
|
+
"version": "2.8.1",
|
|
2036
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2037
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2038
|
+
"license": "0BSD"
|
|
2039
|
+
},
|
|
2040
|
+
"node_modules/type-is": {
|
|
2041
|
+
"version": "1.6.18",
|
|
2042
|
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
|
2043
|
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
|
2044
|
+
"license": "MIT",
|
|
2045
|
+
"dependencies": {
|
|
2046
|
+
"media-typer": "0.3.0",
|
|
2047
|
+
"mime-types": "~2.1.24"
|
|
2048
|
+
},
|
|
2049
|
+
"engines": {
|
|
2050
|
+
"node": ">= 0.6"
|
|
2051
|
+
}
|
|
2052
|
+
},
|
|
2053
|
+
"node_modules/type-is/node_modules/media-typer": {
|
|
2054
|
+
"version": "0.3.0",
|
|
2055
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
|
2056
|
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
|
2057
|
+
"license": "MIT",
|
|
2058
|
+
"engines": {
|
|
2059
|
+
"node": ">= 0.6"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"node_modules/uint8array-extras": {
|
|
2063
|
+
"version": "1.5.0",
|
|
2064
|
+
"resolved": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.5.0.tgz",
|
|
2065
|
+
"integrity": "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==",
|
|
2066
|
+
"license": "MIT",
|
|
2067
|
+
"engines": {
|
|
2068
|
+
"node": ">=18"
|
|
2069
|
+
},
|
|
2070
|
+
"funding": {
|
|
2071
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"node_modules/undici-types": {
|
|
2075
|
+
"version": "7.19.2",
|
|
2076
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz",
|
|
2077
|
+
"integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==",
|
|
2078
|
+
"license": "MIT"
|
|
2079
|
+
},
|
|
2080
|
+
"node_modules/unpipe": {
|
|
2081
|
+
"version": "1.0.0",
|
|
2082
|
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
2083
|
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
|
2084
|
+
"license": "MIT",
|
|
2085
|
+
"engines": {
|
|
2086
|
+
"node": ">= 0.8"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/utils-merge": {
|
|
2090
|
+
"version": "1.0.1",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
|
2092
|
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
|
2093
|
+
"license": "MIT",
|
|
2094
|
+
"engines": {
|
|
2095
|
+
"node": ">= 0.4.0"
|
|
2096
|
+
}
|
|
2097
|
+
},
|
|
2098
|
+
"node_modules/vary": {
|
|
2099
|
+
"version": "1.1.2",
|
|
2100
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
2101
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
2102
|
+
"license": "MIT",
|
|
2103
|
+
"engines": {
|
|
2104
|
+
"node": ">= 0.8"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
"node_modules/whatsapp-rust-bridge": {
|
|
2108
|
+
"version": "0.5.2",
|
|
2109
|
+
"resolved": "https://registry.npmjs.org/whatsapp-rust-bridge/-/whatsapp-rust-bridge-0.5.2.tgz",
|
|
2110
|
+
"integrity": "sha512-6KBRNvxg6WMIwZ/euA8qVzj16qxMBzLllfmaJIP1JGAAfSvwn6nr8JDOMXeqpXPEOl71UfOG+79JwKEoT2b1Fw==",
|
|
2111
|
+
"license": "MIT"
|
|
2112
|
+
},
|
|
2113
|
+
"node_modules/win-guid": {
|
|
2114
|
+
"version": "0.2.1",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/win-guid/-/win-guid-0.2.1.tgz",
|
|
2116
|
+
"integrity": "sha512-gEIQU4mkgl2OPeoNrWflcJFJ3Ae2BPd4eCsHHA/XikslkIVms/nHhvnvzIZV7VLmBvtFlDOzLt9rrZT+n6D67A==",
|
|
2117
|
+
"license": "MIT"
|
|
2118
|
+
},
|
|
2119
|
+
"node_modules/ws": {
|
|
2120
|
+
"version": "8.20.0",
|
|
2121
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz",
|
|
2122
|
+
"integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
|
|
2123
|
+
"license": "MIT",
|
|
2124
|
+
"engines": {
|
|
2125
|
+
"node": ">=10.0.0"
|
|
2126
|
+
},
|
|
2127
|
+
"peerDependencies": {
|
|
2128
|
+
"bufferutil": "^4.0.1",
|
|
2129
|
+
"utf-8-validate": ">=5.0.2"
|
|
2130
|
+
},
|
|
2131
|
+
"peerDependenciesMeta": {
|
|
2132
|
+
"bufferutil": {
|
|
2133
|
+
"optional": true
|
|
2134
|
+
},
|
|
2135
|
+
"utf-8-validate": {
|
|
2136
|
+
"optional": true
|
|
2137
|
+
}
|
|
2138
|
+
}
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
2141
|
+
}
|