sinapse-ai 9.3.0 → 9.5.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/.claude/CLAUDE.md +60 -341
- package/.claude/hooks/enforce-architecture-first.py +197 -197
- package/.claude/hooks/enforce-git-push-authority.sh +25 -4
- package/.claude/hooks/mind-clone-governance.py +193 -193
- package/.claude/hooks/read-protection.py +152 -152
- package/.claude/hooks/sql-governance.py +183 -183
- package/.claude/hooks/verify-packages.cjs +83 -0
- package/.claude/hooks/write-path-validation.py +195 -195
- package/.claude/rules/agent-authority.md +6 -0
- package/.claude/rules/agent-handoff.md +5 -0
- package/.claude/rules/cross-squad-routing.md +5 -0
- package/.claude/rules/hook-governance.md +7 -0
- package/.claude/rules/mandatory-delegation.md +24 -0
- package/.claude/rules/mcp-usage.md +3 -1
- package/.claude/rules/project-intelligence.md +63 -0
- package/.claude/rules/response-format.md +4 -0
- package/.claude/rules/safe-collaboration.md +14 -2
- package/.claude/rules/security-data-protection.md +27 -0
- package/.claude/rules/squad-awareness.md +96 -68
- package/.claude/rules/token-economy.md +148 -0
- package/.claude/rules/tool-examples.md +6 -0
- package/.claude/rules/workflow-execution.md +7 -0
- package/.codex/agents/analyst.md +342 -71
- package/.codex/agents/architect.md +533 -68
- package/.codex/agents/data-engineer.md +530 -106
- package/.codex/agents/developer.md +657 -0
- package/.codex/agents/devops.md +639 -69
- package/.codex/agents/product-lead.md +362 -0
- package/.codex/agents/project-lead.md +405 -0
- package/.codex/agents/quality-gate.md +538 -0
- package/.codex/agents/sinapse-orqx.md +9 -7
- package/.codex/agents/sprint-lead.md +315 -0
- package/.codex/agents/squad-creator.md +402 -0
- package/.codex/agents/ux-design-expert.md +523 -0
- package/.codex/delegation-matrix.json +756 -44
- package/.codex/handoff-packet.schema.json +30 -6
- package/.sinapse-ai/core/code-intel/registry-syncer.js +56 -3
- package/.sinapse-ai/core/doctor/checks/agent-memory.js +5 -1
- package/.sinapse-ai/core/doctor/checks/claude-md.js +4 -1
- package/.sinapse-ai/core/doctor/checks/code-intel.js +5 -1
- package/.sinapse-ai/core/doctor/checks/commands-count.js +4 -1
- package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +4 -1
- package/.sinapse-ai/core/doctor/checks/core-config.js +4 -1
- package/.sinapse-ai/core/doctor/checks/entity-registry.js +6 -1
- package/.sinapse-ai/core/doctor/checks/git-hooks.js +5 -1
- package/.sinapse-ai/core/doctor/checks/graph-dashboard.js +4 -1
- package/.sinapse-ai/core/doctor/checks/hooks-claude-count.js +5 -1
- package/.sinapse-ai/core/doctor/checks/ide-sync.js +4 -1
- package/.sinapse-ai/core/doctor/checks/node-version.js +4 -1
- package/.sinapse-ai/core/doctor/checks/npm-packages.js +4 -1
- package/.sinapse-ai/core/doctor/checks/rules-files.js +4 -1
- package/.sinapse-ai/core/doctor/checks/settings-json.js +4 -1
- package/.sinapse-ai/core/doctor/checks/skills-count.js +4 -1
- package/.sinapse-ai/core/doctor/index.js +157 -50
- package/.sinapse-ai/core/ids/registry-updater.js +6 -1
- package/.sinapse-ai/core/logger/index.js +319 -0
- package/.sinapse-ai/core/orchestration/terminal-spawner.js +2 -2
- package/.sinapse-ai/core/telemetry/index.js +247 -0
- package/.sinapse-ai/data/entity-registry.yaml +1060 -808
- package/.sinapse-ai/development/agents/analyst.md +90 -0
- package/.sinapse-ai/development/agents/architect.md +78 -0
- package/.sinapse-ai/development/agents/data-engineer.md +38 -0
- package/.sinapse-ai/development/agents/developer.md +97 -0
- package/.sinapse-ai/development/agents/devops.md +121 -0
- package/.sinapse-ai/development/agents/product-lead.md +27 -0
- package/.sinapse-ai/development/agents/project-lead.md +28 -0
- package/.sinapse-ai/development/agents/quality-gate.md +89 -0
- package/.sinapse-ai/development/agents/sprint-lead/MEMORY.md +8 -0
- package/.sinapse-ai/development/agents/sprint-lead.md +28 -0
- package/.sinapse-ai/development/agents/squad-creator.md +58 -0
- package/.sinapse-ai/development/agents/ux-design-expert.md +28 -0
- package/.sinapse-ai/development/checklists/agent-quality-gate.md +27 -0
- package/.sinapse-ai/development/checklists/brownfield-compatibility-checklist.md +20 -0
- package/.sinapse-ai/development/checklists/code-review-checklist.md +106 -0
- package/.sinapse-ai/development/checklists/issue-triage-checklist.md +9 -0
- package/.sinapse-ai/development/checklists/memory-audit-checklist.md +16 -0
- package/.sinapse-ai/development/checklists/pr-quality-checklist.md +72 -0
- package/.sinapse-ai/development/checklists/security-deployment-checklist.md +54 -0
- package/.sinapse-ai/development/checklists/self-critique-checklist.md +19 -1
- package/.sinapse-ai/development/knowledge-base/agent-communication-protocol.md +127 -0
- package/.sinapse-ai/development/knowledge-base/database-scaling-patterns.md +374 -0
- package/.sinapse-ai/development/knowledge-base/environment-deployment-patterns.md +353 -0
- package/.sinapse-ai/development/knowledge-base/gotchas-patterns.md +224 -0
- package/.sinapse-ai/development/knowledge-base/infrastructure-decision-framework.md +221 -0
- package/.sinapse-ai/development/knowledge-base/security-pre-deploy-checklist.md +410 -0
- package/.sinapse-ai/development/knowledge-base/software-architecture-patterns.md +299 -0
- package/.sinapse-ai/development/knowledge-base/token-economy-guide.md +198 -0
- package/.sinapse-ai/development/scripts/populate-entity-registry.js +5 -1
- package/.sinapse-ai/development/skills/captcha-handler.md +82 -0
- package/.sinapse-ai/development/skills/chrome-brain.md +81 -0
- package/.sinapse-ai/development/skills/debug.md +57 -0
- package/.sinapse-ai/development/skills/deploy-readiness.md +93 -0
- package/.sinapse-ai/development/skills/fast-review.md +69 -0
- package/.sinapse-ai/development/skills/model-router.md +92 -0
- package/.sinapse-ai/development/skills/research-synthesis.md +77 -0
- package/.sinapse-ai/development/skills/security-scan.md +73 -0
- package/.sinapse-ai/development/skills/sinapse-methodology.md +175 -0
- package/.sinapse-ai/development/skills/story-fast-track.md +71 -0
- package/.sinapse-ai/development/skills/verify.md +53 -0
- package/.sinapse-ai/development/tasks/dev-develop-story.md +10 -0
- package/.sinapse-ai/development/tasks/environment-promotion-pipeline.md +582 -0
- package/.sinapse-ai/development/tasks/generate-agent-handoff.md +223 -0
- package/.sinapse-ai/development/tasks/infrastructure-assessment.md +432 -0
- package/.sinapse-ai/development/tasks/load-testing-setup.md +611 -0
- package/.sinapse-ai/development/tasks/observability-blueprint.md +562 -0
- package/.sinapse-ai/development/templates/legal/breach-notification-tmpl.md +113 -0
- package/.sinapse-ai/development/templates/legal/privacy-policy-tmpl.md +93 -0
- package/.sinapse-ai/development/templates/legal/terms-of-service-tmpl.md +85 -0
- package/.sinapse-ai/development/templates/service-template/README.md.hbs +159 -159
- package/.sinapse-ai/development/templates/service-template/__tests__/index.test.ts.hbs +238 -238
- package/.sinapse-ai/development/templates/service-template/client.ts.hbs +404 -404
- package/.sinapse-ai/development/templates/service-template/errors.ts.hbs +183 -183
- package/.sinapse-ai/development/templates/service-template/index.ts.hbs +121 -121
- package/.sinapse-ai/development/templates/service-template/package.json.hbs +88 -88
- package/.sinapse-ai/development/templates/service-template/types.ts.hbs +146 -146
- package/.sinapse-ai/development/templates/squad/agent-template.md +17 -4
- package/.sinapse-ai/development/templates/squad/checklist-template.md +13 -5
- package/.sinapse-ai/development/templates/squad/task-template.md +7 -0
- package/.sinapse-ai/development/templates/squad/workflow-template.yaml +7 -0
- package/.sinapse-ai/development/templates/squad-template/LICENSE +22 -22
- package/.sinapse-ai/development/workflows/fast-track.yaml +87 -0
- package/.sinapse-ai/development/workflows/story-development-cycle.yaml +40 -1
- package/.sinapse-ai/hooks/ids-post-commit.js +22 -0
- package/.sinapse-ai/infrastructure/contracts/compatibility/README.md +42 -0
- package/.sinapse-ai/infrastructure/contracts/compatibility/sinapse-current.yaml +35 -0
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/claude-free-tracked.cmd +127 -127
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-proxy.cmd +71 -71
- package/.sinapse-ai/infrastructure/scripts/llm-routing/templates/deepseek-usage.cmd +51 -51
- package/.sinapse-ai/infrastructure/scripts/pr-review-ai.js +16 -13
- package/.sinapse-ai/infrastructure/scripts/setup-project-infra.js +128 -0
- package/.sinapse-ai/infrastructure/scripts/test-discovery.js +8 -3
- package/.sinapse-ai/infrastructure/scripts/validate-codex-delegation.js +3 -1
- package/.sinapse-ai/infrastructure/scripts/validate-manifest-parity.js +380 -0
- package/.sinapse-ai/infrastructure/scripts/validate-parity.js +76 -25
- package/.sinapse-ai/infrastructure/templates/coderabbit.yaml.template +280 -280
- package/.sinapse-ai/infrastructure/templates/config/env.example +16 -0
- package/.sinapse-ai/infrastructure/templates/config/gitignore-additions.tmpl +59 -0
- package/.sinapse-ai/infrastructure/templates/github/CODEOWNERS.template +12 -0
- package/.sinapse-ai/infrastructure/templates/github/PULL_REQUEST_TEMPLATE.md +29 -0
- package/.sinapse-ai/infrastructure/templates/github/ci-template.yml +77 -0
- package/.sinapse-ai/infrastructure/templates/github/issue-templates/bug_report.md +34 -0
- package/.sinapse-ai/infrastructure/templates/github/issue-templates/feature_request.md +19 -0
- package/.sinapse-ai/infrastructure/templates/github-workflows/ci.yml.template +170 -170
- package/.sinapse-ai/infrastructure/templates/github-workflows/pr-automation.yml.template +331 -331
- package/.sinapse-ai/infrastructure/templates/github-workflows/release.yml.template +197 -197
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +19 -19
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-node.tmpl +86 -86
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-python.tmpl +146 -146
- package/.sinapse-ai/infrastructure/templates/gitignore/gitignore-sinapse-base.tmpl +64 -64
- package/.sinapse-ai/infrastructure/templates/sinapse-sync.yaml.template +183 -183
- package/.sinapse-ai/install-manifest.yaml +333 -162
- package/.sinapse-ai/local-config.yaml.template +65 -65
- package/.sinapse-ai/monitor/hooks/lib/__init__.py +2 -2
- package/.sinapse-ai/monitor/hooks/lib/enrich.py +59 -59
- package/.sinapse-ai/monitor/hooks/lib/send_event.py +48 -48
- package/.sinapse-ai/monitor/hooks/notification.py +30 -30
- package/.sinapse-ai/monitor/hooks/post_tool_use.py +46 -46
- package/.sinapse-ai/monitor/hooks/pre_compact.py +30 -30
- package/.sinapse-ai/monitor/hooks/pre_tool_use.py +41 -41
- package/.sinapse-ai/monitor/hooks/stop.py +30 -30
- package/.sinapse-ai/monitor/hooks/subagent_stop.py +30 -30
- package/.sinapse-ai/monitor/hooks/user_prompt_submit.py +39 -39
- package/.sinapse-ai/product/templates/adr.hbs +126 -126
- package/.sinapse-ai/product/templates/dbdr.hbs +242 -242
- package/.sinapse-ai/product/templates/epic.hbs +213 -213
- package/.sinapse-ai/product/templates/pmdr.hbs +187 -187
- package/.sinapse-ai/product/templates/prd-v2.0.hbs +217 -217
- package/.sinapse-ai/product/templates/prd.hbs +202 -202
- package/.sinapse-ai/product/templates/story-tmpl.yaml +59 -0
- package/.sinapse-ai/product/templates/story.hbs +264 -264
- package/.sinapse-ai/product/templates/task.hbs +171 -171
- package/.sinapse-ai/product/templates/tmpl-comment-on-examples.sql +159 -159
- package/.sinapse-ai/product/templates/tmpl-migration-script.sql +92 -92
- package/.sinapse-ai/product/templates/tmpl-rls-granular-policies.sql +105 -105
- package/.sinapse-ai/product/templates/tmpl-rls-kiss-policy.sql +11 -11
- package/.sinapse-ai/product/templates/tmpl-rls-roles.sql +136 -136
- package/.sinapse-ai/product/templates/tmpl-rls-simple.sql +78 -78
- package/.sinapse-ai/product/templates/tmpl-rls-tenant.sql +153 -153
- package/.sinapse-ai/product/templates/tmpl-rollback-script.sql +78 -78
- package/.sinapse-ai/product/templates/tmpl-seed-data.sql +141 -141
- package/.sinapse-ai/product/templates/tmpl-smoke-test.sql +17 -17
- package/.sinapse-ai/product/templates/tmpl-staging-copy-merge.sql +140 -140
- package/.sinapse-ai/product/templates/tmpl-stored-proc.sql +141 -141
- package/.sinapse-ai/product/templates/tmpl-trigger.sql +153 -153
- package/.sinapse-ai/product/templates/tmpl-view-materialized.sql +134 -134
- package/.sinapse-ai/product/templates/tmpl-view.sql +178 -178
- package/.sinapse-ai/scripts/diagnostics/health-dashboard/package-lock.json +427 -355
- package/LICENSE +34 -34
- package/README.en.md +167 -20
- package/README.md +190 -22
- package/bin/cli.js +510 -196
- package/bin/postinstall.js +564 -0
- package/bin/sinapse-cli +283 -283
- package/bin/sinapse-graph.js +9 -0
- package/bin/sinapse-init.js +36 -4
- package/bin/sinapse-minimal.js +20 -9
- package/bin/sinapse.js +202 -122
- package/bin/utils/deprecation-warning.js +46 -0
- package/bin/utils/pre-push-safety.js +14 -0
- package/docs/TELEMETRY.md +131 -0
- package/docs/chrome-brain-upgrade-plan.md +624 -0
- package/docs/codex-integration-process.md +22 -0
- package/docs/codex-parity-program.md +27 -0
- package/docs/framework/orqx-plan.md +1 -1
- package/docs/ide-integration.md +36 -0
- package/docs/installation/chrome-brain.md +17 -7
- package/docs/mega-upgrade-orchestration-plan.md +71 -0
- package/docs/pt/contributing.md +20 -0
- package/docs/research-synthesis-for-upgrade.md +511 -0
- package/docs/security-audit-report.md +306 -0
- package/package.json +20 -8
- package/packages/installer/src/config/configure-environment.js +19 -44
- package/packages/installer/src/detection/detect-project-type.js +181 -63
- package/packages/installer/src/installer/manifest-signature.js +32 -17
- package/packages/installer/src/wizard/i18n.js +12 -0
- package/packages/installer/src/wizard/ide-config-generator.js +8 -39
- package/packages/installer/src/wizard/index.js +119 -14
- package/packages/installer/src/wizard/questions.js +2 -3
- package/packages/installer/tests/integration/environment-configuration.test.js +7 -5
- package/packages/installer/tests/unit/detection/detect-project-type.test.js +138 -1
- package/packages/installer/tests/unit/doctor/doctor-orchestrator.test.js +3 -3
- package/packages/sinapse-install/bin/edmcp.js +0 -0
- package/packages/sinapse-install/bin/sinapse-install.js +0 -0
- package/packages/sinapse-pro-cli/bin/sinapse-pro.js +0 -0
- package/scripts/check-markdown-links.py +353 -353
- package/scripts/coverage-report-summary.js +169 -0
- package/scripts/generate-install-manifest.js +6 -2
- package/scripts/release-readiness.js +169 -0
- package/scripts/test-install-matrix-local.sh +153 -0
- package/scripts/validate-install-docs.js +394 -0
- package/scripts/validate-no-external-refs.js +376 -0
- package/scripts/validate-squad-orqx.js +302 -0
- package/scripts/validate-story-meta.js +263 -0
- package/squads/claude-code-mastery/CHANGELOG.md +1 -1
- package/squads/claude-code-mastery/README.md +2 -2
- package/squads/claude-code-mastery/knowledge-base/claude-code-internals-reference.md +927 -0
- package/squads/claude-code-mastery/squad.yaml +1 -1
- package/squads/squad-artdir/README.md +90 -0
- package/squads/squad-artdir/agents/accessibility-guardian.md +184 -0
- package/squads/squad-artdir/agents/artdir-orqx.md +145 -0
- package/squads/squad-artdir/agents/color-psychologist.md +166 -0
- package/squads/squad-artdir/agents/cro-persuasion.md +161 -0
- package/squads/squad-artdir/agents/design-system-architect.md +100 -0
- package/squads/squad-artdir/agents/ia-architect.md +169 -0
- package/squads/squad-artdir/agents/interaction-designer.md +162 -0
- package/squads/squad-artdir/agents/layout-engineer.md +163 -0
- package/squads/squad-artdir/agents/motion-architect.md +185 -0
- package/squads/squad-artdir/agents/platform-aesthetic-director.md +84 -0
- package/squads/squad-artdir/agents/premium-packaging-strategist.md +107 -0
- package/squads/squad-artdir/agents/product-surface-director.md +86 -0
- package/squads/squad-artdir/agents/type-systemist.md +138 -0
- package/squads/squad-artdir/agents/visual-strategist.md +127 -0
- package/squads/squad-artdir/checklists/seven-pillars-validation-checklist.md +172 -0
- package/squads/squad-artdir/knowledge-base/case-nyo-ia-reference.md +289 -0
- package/squads/squad-artdir/knowledge-base/deliverables-templates.md +457 -0
- package/squads/squad-artdir/knowledge-base/motion-technique-catalog.md +247 -0
- package/squads/squad-artdir/knowledge-base/premium-packaging-principles.md +133 -0
- package/squads/squad-artdir/knowledge-base/psychological-toolkit.md +229 -0
- package/squads/squad-artdir/knowledge-base/saas-art-direction-canon.md +242 -0
- package/squads/squad-artdir/knowledge-base/seven-pillars-framework.md +289 -0
- package/squads/squad-artdir/knowledge-base/ten-pillars-framework.md +221 -0
- package/squads/squad-artdir/package.json +20 -0
- package/squads/squad-artdir/squad.yaml +271 -0
- package/squads/squad-artdir/tasks/audit-conversion.md +97 -0
- package/squads/squad-artdir/tasks/audit-drift-multi-surface.md +55 -0
- package/squads/squad-artdir/tasks/consult-saas-canon.md +54 -0
- package/squads/squad-artdir/tasks/create-art-direction-brief.md +110 -0
- package/squads/squad-artdir/tasks/create-premium-packaging-brief.md +61 -0
- package/squads/squad-artdir/tasks/create-wireflow.md +84 -0
- package/squads/squad-artdir/tasks/design-color-system.md +81 -0
- package/squads/squad-artdir/tasks/design-product-surface.md +60 -0
- package/squads/squad-artdir/tasks/design-token-system.md +58 -0
- package/squads/squad-artdir/tasks/diagnose-visual-language.md +92 -0
- package/squads/squad-artdir/tasks/first-5-minutes-choreography.md +65 -0
- package/squads/squad-artdir/tasks/specify-motion-system.md +84 -0
- package/squads/squad-artdir/tasks/validate-against-pillars.md +143 -0
- package/squads/squad-artdir/templates/art-direction-brief-template.md +215 -0
- package/squads/squad-artdir/workflows/conversion-audit-cycle.yaml +78 -0
- package/squads/squad-artdir/workflows/full-art-direction-cycle.yaml +98 -0
- package/squads/squad-artdir/workflows/saas-platform-art-direction-cycle.yaml +174 -0
- package/squads/squad-brand/knowledge-base/ai-visual-generation-canon.md +234 -0
- package/squads/squad-brand/knowledge-base/archetype-brand-mapping.md +12 -1
- package/squads/squad-brand/knowledge-base/brand-activism-cultural-branding.md +216 -0
- package/squads/squad-brand/knowledge-base/brand-audit-criteria.md +58 -0
- package/squads/squad-brand/knowledge-base/brand-digital-strategy.md +188 -0
- package/squads/squad-brand/knowledge-base/brand-legal-ip.md +222 -0
- package/squads/squad-brand/knowledge-base/brand-naming-framework.md +163 -0
- package/squads/squad-brand/knowledge-base/branding-master-reference.md +1001 -0
- package/squads/squad-brand/knowledge-base/color-psychology.md +25 -12
- package/squads/squad-brand/knowledge-base/employer-personal-branding.md +206 -0
- package/squads/squad-brand/knowledge-base/routing-catalog.md +34 -0
- package/squads/squad-brand/knowledge-base/sonic-branding-principles.md +6 -1
- package/squads/squad-brand/knowledge-base/typography-personality.md +34 -0
- package/squads/squad-brand/squad.yaml +20 -6
- package/squads/squad-claude/knowledge-base/context-window-optimization.md +334 -0
- package/squads/squad-claude/knowledge-base/knowledge-architecture-reference.md +403 -0
- package/squads/squad-claude/knowledge-base/memory-systems-reference.md +412 -0
- package/squads/squad-claude/knowledge-base/obsidian-claude-integration.md +423 -0
- package/squads/squad-claude/knowledge-base/retrieval-augmented-generation.md +320 -0
- package/squads/squad-claude/knowledge-base/skill-creation-patterns.md +380 -0
- package/squads/squad-claude/knowledge-base/swarm-orchestration-patterns.md +411 -0
- package/squads/squad-cloning/knowledge-base/clone-quality-assurance.md +211 -0
- package/squads/squad-cloning/knowledge-base/confidence-scoring.md +51 -0
- package/squads/squad-cloning/knowledge-base/cross-squad-deployment.md +47 -0
- package/squads/squad-cloning/knowledge-base/ethical-guidelines.md +237 -0
- package/squads/squad-cloning/knowledge-base/knowledge-graph-for-clones.md +295 -0
- package/squads/squad-cloning/knowledge-base/memory-architecture-for-clones.md +229 -0
- package/squads/squad-cloning/knowledge-base/multi-agent-deployment-patterns.md +320 -0
- package/squads/squad-cloning/knowledge-base/skill-standard-for-clones.md +262 -0
- package/squads/squad-cloning/knowledge-base/sop-extraction-guide.md +243 -0
- package/squads/squad-commercial/knowledge-base/account-based-selling.md +206 -0
- package/squads/squad-commercial/knowledge-base/ai-as-competitive-infrastructure.md +14 -0
- package/squads/squad-commercial/knowledge-base/ai-in-sales.md +199 -0
- package/squads/squad-commercial/knowledge-base/brazilian-sales-context.md +195 -0
- package/squads/squad-commercial/knowledge-base/customer-success-operations.md +83 -2
- package/squads/squad-commercial/knowledge-base/prospecting-pipeline-generation.md +69 -0
- package/squads/squad-commercial/knowledge-base/sales-enablement-playbook.md +260 -0
- package/squads/squad-commercial/knowledge-base/sales-methodology-comparison.md +185 -0
- package/squads/squad-commercial/knowledge-base/sales-revenue-master-reference.md +1123 -0
- package/squads/squad-content/knowledge-base/ai-native-content-loop.md +220 -0
- package/squads/squad-content/knowledge-base/brazilian-content-context.md +176 -0
- package/squads/squad-content/knowledge-base/competitor-analysis-methods.md +40 -1
- package/squads/squad-content/knowledge-base/content-architecture-taxonomy.md +206 -0
- package/squads/squad-content/knowledge-base/content-formats-encyclopedia.md +58 -1
- package/squads/squad-content/knowledge-base/content-references-bibliography.md +130 -0
- package/squads/squad-content/knowledge-base/content-strategy-master-reference.md +1097 -0
- package/squads/squad-content/knowledge-base/content-tech-stack.md +150 -0
- package/squads/squad-content/knowledge-base/copywriting-formulas-library.md +188 -0
- package/squads/squad-content/knowledge-base/email-newsletter-strategy.md +161 -0
- package/squads/squad-content/knowledge-base/platform-algorithm-intelligence.md +86 -1
- package/squads/squad-content/knowledge-base/signal-intelligence-v2.md +234 -0
- package/squads/squad-content/knowledge-base/social-algorithms-master-reference.md +1007 -0
- package/squads/squad-content/knowledge-base/task-ownership-map.md +235 -0
- package/squads/squad-content/knowledge-base/video-audio-content-playbook.md +218 -0
- package/squads/squad-content/squad.yaml +187 -27
- package/squads/squad-copy/knowledge-base/ai-copy-human-loop-canon.md +235 -0
- package/squads/squad-copy/knowledge-base/ai-copy-production.md +254 -0
- package/squads/squad-copy/knowledge-base/brazilian-copywriting-context.md +242 -0
- package/squads/squad-copy/knowledge-base/email-copywriting-system.md +299 -0
- package/squads/squad-copy/knowledge-base/landing-page-copy-architecture.md +267 -0
- package/squads/squad-copy/knowledge-base/power-words-catalog.md +205 -0
- package/squads/squad-copy/knowledge-base/seo-copywriting.md +255 -0
- package/squads/squad-copy/knowledge-base/video-script-copywriting.md +239 -0
- package/squads/squad-copy/squad.yaml +19 -4
- package/squads/squad-council/knowledge-base/brand-strategy-models.md +193 -0
- package/squads/squad-council/knowledge-base/growth-strategy-models.md +267 -0
- package/squads/squad-council/knowledge-base/innovation-disruption-frameworks.md +193 -0
- package/squads/squad-council/knowledge-base/market-analysis-frameworks.md +240 -0
- package/squads/squad-council/knowledge-base/organizational-leadership-models.md +212 -0
- package/squads/squad-council/knowledge-base/sales-strategy-models.md +215 -0
- package/squads/squad-courses/knowledge-base/course-launch-strategy.md +251 -0
- package/squads/squad-courses/knowledge-base/domain-advocacia-curriculum.md +385 -0
- package/squads/squad-courses/knowledge-base/domain-contabilidade-curriculum.md +266 -0
- package/squads/squad-courses/knowledge-base/platform-comparison.md +68 -0
- package/squads/squad-courses/knowledge-base/video-production-guide.md +70 -0
- package/squads/squad-cybersecurity/knowledge-base/cloud-security-reference.md +363 -0
- package/squads/squad-cybersecurity/knowledge-base/compliance-frameworks.md +273 -0
- package/squads/squad-cybersecurity/knowledge-base/database-security.md +438 -0
- package/squads/squad-cybersecurity/knowledge-base/incident-response-playbook.md +420 -0
- package/squads/squad-cybersecurity/knowledge-base/network-security-reference.md +477 -0
- package/squads/squad-cybersecurity/knowledge-base/penetration-testing-methodology.md +350 -0
- package/squads/squad-cybersecurity/knowledge-base/vulnerability-management.md +349 -0
- package/squads/squad-design/knowledge-base/brazilian-design-context.md +223 -0
- package/squads/squad-design/knowledge-base/component-api-patterns.md +208 -4
- package/squads/squad-design/knowledge-base/cross-surface-token-canon.md +209 -0
- package/squads/squad-design/knowledge-base/design-system-master-reference.md +1302 -0
- package/squads/squad-design/knowledge-base/design-systems-frameworks.md +91 -1
- package/squads/squad-design/knowledge-base/responsive-modern-css.md +96 -4
- package/squads/squad-design/knowledge-base/wcag-aria-reference.md +117 -5
- package/squads/squad-design/knowledge-base/web-performance-reference.md +127 -4
- package/squads/squad-design/squad.yaml +19 -4
- package/squads/squad-finance/knowledge-base/brazilian-taxation.md +263 -0
- package/squads/squad-finance/knowledge-base/contabilidade-master-reference.md +998 -0
- package/squads/squad-finance/knowledge-base/finance-master-reference.md +946 -0
- package/squads/squad-finance/knowledge-base/financial-reporting-analysis.md +316 -0
- package/squads/squad-finance/knowledge-base/fintech-brazilian-context.md +242 -0
- package/squads/squad-finance/knowledge-base/fpa-planning-frameworks.md +286 -0
- package/squads/squad-finance/knowledge-base/ma-and-transactions.md +285 -0
- package/squads/squad-finance/knowledge-base/risk-management.md +233 -0
- package/squads/squad-finance/knowledge-base/startups-venture-capital.md +337 -0
- package/squads/squad-growth/knowledge-base/ai-growth-playbook.md +216 -0
- package/squads/squad-growth/knowledge-base/attribution-models.md +78 -0
- package/squads/squad-growth/knowledge-base/brazilian-growth-context.md +208 -0
- package/squads/squad-growth/knowledge-base/community-led-growth.md +175 -0
- package/squads/squad-growth/knowledge-base/content-marketing-flywheel.md +190 -0
- package/squads/squad-growth/knowledge-base/email-lifecycle-framework.md +192 -0
- package/squads/squad-growth/knowledge-base/growth-frameworks-catalog.md +82 -0
- package/squads/squad-growth/knowledge-base/growth-master-reference.md +1168 -0
- package/squads/squad-growth/knowledge-base/routing-catalog.md +53 -11
- package/squads/squad-paidmedia/knowledge-base/audiences-segmentation-deep.md +285 -0
- package/squads/squad-paidmedia/knowledge-base/creative-strategy-deep.md +294 -0
- package/squads/squad-paidmedia/knowledge-base/google-ads-account-architecture.md +87 -0
- package/squads/squad-paidmedia/knowledge-base/meta-ads-campaign-architecture.md +76 -0
- package/squads/squad-paidmedia/knowledge-base/paid-media-metrics-reference.md +117 -0
- package/squads/squad-paidmedia/knowledge-base/paid-traffic-master-reference.md +1308 -0
- package/squads/squad-paidmedia/knowledge-base/routing-catalog.md +95 -18
- package/squads/squad-paidmedia/knowledge-base/traffic-masters-frameworks.md +71 -0
- package/squads/squad-product/knowledge-base/brazilian-product-context.md +284 -0
- package/squads/squad-product/knowledge-base/discovery-methodology-playbook.md +141 -0
- package/squads/squad-product/knowledge-base/pm-frameworks-reference.md +125 -9
- package/squads/squad-product/knowledge-base/product-analytics-formulas.md +72 -0
- package/squads/squad-product/knowledge-base/product-led-growth-reference.md +155 -13
- package/squads/squad-product/knowledge-base/product-market-fit-framework.md +222 -0
- package/squads/squad-product/knowledge-base/routing-catalog.md +32 -0
- package/squads/squad-research/knowledge-base/agentic-second-brain-reference.md +591 -0
- package/squads/squad-research/knowledge-base/ai-augmented-research.md +212 -0
- package/squads/squad-research/knowledge-base/brazilian-market-research-sources.md +197 -0
- package/squads/squad-research/knowledge-base/community-platforms-reference.md +786 -0
- package/squads/squad-research/knowledge-base/community-research-methods.md +194 -0
- package/squads/squad-research/knowledge-base/mixed-methods-research-design.md +168 -0
- package/squads/squad-research/knowledge-base/network-effects-analysis.md +192 -0
- package/squads/squad-research/knowledge-base/qualitative-research-deep-methods.md +202 -0
- package/squads/squad-research/knowledge-base/quantitative-research-methods.md +208 -0
- package/squads/squad-research/knowledge-base/research-frameworks-encyclopedia.md +40 -0
- package/squads/squad-research/knowledge-base/research-synthesis-frameworks.md +223 -0
- package/squads/squad-storytelling/knowledge-base/brand-mythology-framework.md +236 -0
- package/squads/squad-storytelling/knowledge-base/brazilian-storytelling-context.md +237 -0
- package/squads/squad-storytelling/knowledge-base/data-storytelling.md +232 -0
- package/squads/squad-storytelling/knowledge-base/improv-storytelling.md +226 -0
- package/squads/squad-storytelling/knowledge-base/persuasion-narrative-techniques.md +269 -0
- package/squads/squad-storytelling/knowledge-base/social-movement-narratives.md +191 -0
- package/squads/squad-storytelling/knowledge-base/video-storytelling.md +252 -0
- package/.sinapse-ai/core/registry/service-registry.json +0 -6346
- package/.sinapse-ai/data/registry-update-log.jsonl +0 -1307
- package/.sinapse-ai/manifests/agents.csv +0 -29
- package/.sinapse-ai/manifests/tasks.csv +0 -204
- package/.sinapse-ai/manifests/workers.csv +0 -196
- package/squads/claude-code-mastery/data/swarm-orchestration-patterns.yaml +0 -378
- package/squads/squad-animations/knowledge-base/framer-motion-complete-reference.md +0 -710
- package/squads/squad-animations/knowledge-base/web-animations-api-view-transitions.md +0 -478
- package/squads/squad-growth/tasks/calculate-sample-size.md +0 -121
- package/squads/squad-paidmedia/tasks/calculate-sample-size.md +0 -57
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"node_modules/@babel/code-frame": {
|
|
24
|
-
"version": "7.
|
|
25
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
26
|
-
"integrity": "sha512-
|
|
24
|
+
"version": "7.29.0",
|
|
25
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
|
|
26
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
27
27
|
"dev": true,
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@babel/helper-validator-identifier": "^7.
|
|
30
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
31
31
|
"js-tokens": "^4.0.0",
|
|
32
32
|
"picocolors": "^1.1.1"
|
|
33
33
|
},
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"node_modules/@babel/compat-data": {
|
|
39
|
-
"version": "7.
|
|
40
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.
|
|
41
|
-
"integrity": "sha512-
|
|
39
|
+
"version": "7.29.0",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
|
|
41
|
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
|
|
42
42
|
"dev": true,
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"engines": {
|
|
@@ -46,21 +46,21 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"node_modules/@babel/core": {
|
|
49
|
-
"version": "7.
|
|
50
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.
|
|
51
|
-
"integrity": "sha512-
|
|
49
|
+
"version": "7.29.0",
|
|
50
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
|
|
51
|
+
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
52
52
|
"dev": true,
|
|
53
53
|
"license": "MIT",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@babel/code-frame": "^7.
|
|
56
|
-
"@babel/generator": "^7.
|
|
57
|
-
"@babel/helper-compilation-targets": "^7.
|
|
58
|
-
"@babel/helper-module-transforms": "^7.28.
|
|
59
|
-
"@babel/helpers": "^7.28.
|
|
60
|
-
"@babel/parser": "^7.
|
|
61
|
-
"@babel/template": "^7.
|
|
62
|
-
"@babel/traverse": "^7.
|
|
63
|
-
"@babel/types": "^7.
|
|
55
|
+
"@babel/code-frame": "^7.29.0",
|
|
56
|
+
"@babel/generator": "^7.29.0",
|
|
57
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
58
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
59
|
+
"@babel/helpers": "^7.28.6",
|
|
60
|
+
"@babel/parser": "^7.29.0",
|
|
61
|
+
"@babel/template": "^7.28.6",
|
|
62
|
+
"@babel/traverse": "^7.29.0",
|
|
63
|
+
"@babel/types": "^7.29.0",
|
|
64
64
|
"@jridgewell/remapping": "^2.3.5",
|
|
65
65
|
"convert-source-map": "^2.0.0",
|
|
66
66
|
"debug": "^4.1.0",
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"node_modules/@babel/generator": {
|
|
80
|
-
"version": "7.
|
|
81
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.
|
|
82
|
-
"integrity": "sha512-
|
|
80
|
+
"version": "7.29.1",
|
|
81
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
|
|
82
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
83
83
|
"dev": true,
|
|
84
84
|
"license": "MIT",
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@babel/parser": "^7.
|
|
87
|
-
"@babel/types": "^7.
|
|
86
|
+
"@babel/parser": "^7.29.0",
|
|
87
|
+
"@babel/types": "^7.29.0",
|
|
88
88
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
89
89
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
90
90
|
"jsesc": "^3.0.2"
|
|
@@ -94,13 +94,13 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"node_modules/@babel/helper-compilation-targets": {
|
|
97
|
-
"version": "7.
|
|
98
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
99
|
-
"integrity": "sha512-
|
|
97
|
+
"version": "7.28.6",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
|
|
99
|
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
|
|
100
100
|
"dev": true,
|
|
101
101
|
"license": "MIT",
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@babel/compat-data": "^7.
|
|
103
|
+
"@babel/compat-data": "^7.28.6",
|
|
104
104
|
"@babel/helper-validator-option": "^7.27.1",
|
|
105
105
|
"browserslist": "^4.24.0",
|
|
106
106
|
"lru-cache": "^5.1.1",
|
|
@@ -121,29 +121,29 @@
|
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"node_modules/@babel/helper-module-imports": {
|
|
124
|
-
"version": "7.
|
|
125
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.
|
|
126
|
-
"integrity": "sha512-
|
|
124
|
+
"version": "7.28.6",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
|
|
126
|
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
|
|
127
127
|
"dev": true,
|
|
128
128
|
"license": "MIT",
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@babel/traverse": "^7.
|
|
131
|
-
"@babel/types": "^7.
|
|
130
|
+
"@babel/traverse": "^7.28.6",
|
|
131
|
+
"@babel/types": "^7.28.6"
|
|
132
132
|
},
|
|
133
133
|
"engines": {
|
|
134
134
|
"node": ">=6.9.0"
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
137
|
"node_modules/@babel/helper-module-transforms": {
|
|
138
|
-
"version": "7.28.
|
|
139
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.
|
|
140
|
-
"integrity": "sha512-
|
|
138
|
+
"version": "7.28.6",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
|
|
140
|
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
|
|
141
141
|
"dev": true,
|
|
142
142
|
"license": "MIT",
|
|
143
143
|
"dependencies": {
|
|
144
|
-
"@babel/helper-module-imports": "^7.
|
|
145
|
-
"@babel/helper-validator-identifier": "^7.
|
|
146
|
-
"@babel/traverse": "^7.28.
|
|
144
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
145
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
146
|
+
"@babel/traverse": "^7.28.6"
|
|
147
147
|
},
|
|
148
148
|
"engines": {
|
|
149
149
|
"node": ">=6.9.0"
|
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
}
|
|
154
154
|
},
|
|
155
155
|
"node_modules/@babel/helper-plugin-utils": {
|
|
156
|
-
"version": "7.
|
|
157
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.
|
|
158
|
-
"integrity": "sha512-
|
|
156
|
+
"version": "7.28.6",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
|
|
158
|
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
|
|
159
159
|
"dev": true,
|
|
160
160
|
"license": "MIT",
|
|
161
161
|
"engines": {
|
|
@@ -193,27 +193,27 @@
|
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
"node_modules/@babel/helpers": {
|
|
196
|
-
"version": "7.
|
|
197
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.
|
|
198
|
-
"integrity": "sha512-
|
|
196
|
+
"version": "7.29.2",
|
|
197
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
|
|
198
|
+
"integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
|
|
199
199
|
"dev": true,
|
|
200
200
|
"license": "MIT",
|
|
201
201
|
"dependencies": {
|
|
202
|
-
"@babel/template": "^7.
|
|
203
|
-
"@babel/types": "^7.
|
|
202
|
+
"@babel/template": "^7.28.6",
|
|
203
|
+
"@babel/types": "^7.29.0"
|
|
204
204
|
},
|
|
205
205
|
"engines": {
|
|
206
206
|
"node": ">=6.9.0"
|
|
207
207
|
}
|
|
208
208
|
},
|
|
209
209
|
"node_modules/@babel/parser": {
|
|
210
|
-
"version": "7.
|
|
211
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
212
|
-
"integrity": "sha512-
|
|
210
|
+
"version": "7.29.2",
|
|
211
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
|
|
212
|
+
"integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
|
|
213
213
|
"dev": true,
|
|
214
214
|
"license": "MIT",
|
|
215
215
|
"dependencies": {
|
|
216
|
-
"@babel/types": "^7.
|
|
216
|
+
"@babel/types": "^7.29.0"
|
|
217
217
|
},
|
|
218
218
|
"bin": {
|
|
219
219
|
"parser": "bin/babel-parser.js"
|
|
@@ -255,42 +255,42 @@
|
|
|
255
255
|
}
|
|
256
256
|
},
|
|
257
257
|
"node_modules/@babel/runtime": {
|
|
258
|
-
"version": "7.
|
|
259
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.
|
|
260
|
-
"integrity": "sha512-
|
|
258
|
+
"version": "7.29.2",
|
|
259
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
|
|
260
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
|
261
261
|
"license": "MIT",
|
|
262
262
|
"engines": {
|
|
263
263
|
"node": ">=6.9.0"
|
|
264
264
|
}
|
|
265
265
|
},
|
|
266
266
|
"node_modules/@babel/template": {
|
|
267
|
-
"version": "7.
|
|
268
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.
|
|
269
|
-
"integrity": "sha512-
|
|
267
|
+
"version": "7.28.6",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
|
|
269
|
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
|
|
270
270
|
"dev": true,
|
|
271
271
|
"license": "MIT",
|
|
272
272
|
"dependencies": {
|
|
273
|
-
"@babel/code-frame": "^7.
|
|
274
|
-
"@babel/parser": "^7.
|
|
275
|
-
"@babel/types": "^7.
|
|
273
|
+
"@babel/code-frame": "^7.28.6",
|
|
274
|
+
"@babel/parser": "^7.28.6",
|
|
275
|
+
"@babel/types": "^7.28.6"
|
|
276
276
|
},
|
|
277
277
|
"engines": {
|
|
278
278
|
"node": ">=6.9.0"
|
|
279
279
|
}
|
|
280
280
|
},
|
|
281
281
|
"node_modules/@babel/traverse": {
|
|
282
|
-
"version": "7.
|
|
283
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.
|
|
284
|
-
"integrity": "sha512-
|
|
282
|
+
"version": "7.29.0",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
|
|
284
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
285
285
|
"dev": true,
|
|
286
286
|
"license": "MIT",
|
|
287
287
|
"dependencies": {
|
|
288
|
-
"@babel/code-frame": "^7.
|
|
289
|
-
"@babel/generator": "^7.
|
|
288
|
+
"@babel/code-frame": "^7.29.0",
|
|
289
|
+
"@babel/generator": "^7.29.0",
|
|
290
290
|
"@babel/helper-globals": "^7.28.0",
|
|
291
|
-
"@babel/parser": "^7.
|
|
292
|
-
"@babel/template": "^7.
|
|
293
|
-
"@babel/types": "^7.
|
|
291
|
+
"@babel/parser": "^7.29.0",
|
|
292
|
+
"@babel/template": "^7.28.6",
|
|
293
|
+
"@babel/types": "^7.29.0",
|
|
294
294
|
"debug": "^4.3.1"
|
|
295
295
|
},
|
|
296
296
|
"engines": {
|
|
@@ -298,9 +298,9 @@
|
|
|
298
298
|
}
|
|
299
299
|
},
|
|
300
300
|
"node_modules/@babel/types": {
|
|
301
|
-
"version": "7.
|
|
302
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
303
|
-
"integrity": "sha512-
|
|
301
|
+
"version": "7.29.0",
|
|
302
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
|
|
303
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
304
304
|
"dev": true,
|
|
305
305
|
"license": "MIT",
|
|
306
306
|
"dependencies": {
|
|
@@ -312,9 +312,9 @@
|
|
|
312
312
|
}
|
|
313
313
|
},
|
|
314
314
|
"node_modules/@esbuild/aix-ppc64": {
|
|
315
|
-
"version": "0.27.
|
|
316
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.
|
|
317
|
-
"integrity": "sha512-
|
|
315
|
+
"version": "0.27.7",
|
|
316
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
|
|
317
|
+
"integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
|
|
318
318
|
"cpu": [
|
|
319
319
|
"ppc64"
|
|
320
320
|
],
|
|
@@ -329,9 +329,9 @@
|
|
|
329
329
|
}
|
|
330
330
|
},
|
|
331
331
|
"node_modules/@esbuild/android-arm": {
|
|
332
|
-
"version": "0.27.
|
|
333
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.
|
|
334
|
-
"integrity": "sha512-
|
|
332
|
+
"version": "0.27.7",
|
|
333
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
|
|
334
|
+
"integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
|
|
335
335
|
"cpu": [
|
|
336
336
|
"arm"
|
|
337
337
|
],
|
|
@@ -346,9 +346,9 @@
|
|
|
346
346
|
}
|
|
347
347
|
},
|
|
348
348
|
"node_modules/@esbuild/android-arm64": {
|
|
349
|
-
"version": "0.27.
|
|
350
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.
|
|
351
|
-
"integrity": "sha512-
|
|
349
|
+
"version": "0.27.7",
|
|
350
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
|
|
351
|
+
"integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
|
|
352
352
|
"cpu": [
|
|
353
353
|
"arm64"
|
|
354
354
|
],
|
|
@@ -363,9 +363,9 @@
|
|
|
363
363
|
}
|
|
364
364
|
},
|
|
365
365
|
"node_modules/@esbuild/android-x64": {
|
|
366
|
-
"version": "0.27.
|
|
367
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.
|
|
368
|
-
"integrity": "sha512-
|
|
366
|
+
"version": "0.27.7",
|
|
367
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
|
|
368
|
+
"integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
|
|
369
369
|
"cpu": [
|
|
370
370
|
"x64"
|
|
371
371
|
],
|
|
@@ -380,9 +380,9 @@
|
|
|
380
380
|
}
|
|
381
381
|
},
|
|
382
382
|
"node_modules/@esbuild/darwin-arm64": {
|
|
383
|
-
"version": "0.27.
|
|
384
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.
|
|
385
|
-
"integrity": "sha512-
|
|
383
|
+
"version": "0.27.7",
|
|
384
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
|
|
385
|
+
"integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
|
|
386
386
|
"cpu": [
|
|
387
387
|
"arm64"
|
|
388
388
|
],
|
|
@@ -397,9 +397,9 @@
|
|
|
397
397
|
}
|
|
398
398
|
},
|
|
399
399
|
"node_modules/@esbuild/darwin-x64": {
|
|
400
|
-
"version": "0.27.
|
|
401
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.
|
|
402
|
-
"integrity": "sha512-
|
|
400
|
+
"version": "0.27.7",
|
|
401
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
|
|
402
|
+
"integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
|
|
403
403
|
"cpu": [
|
|
404
404
|
"x64"
|
|
405
405
|
],
|
|
@@ -414,9 +414,9 @@
|
|
|
414
414
|
}
|
|
415
415
|
},
|
|
416
416
|
"node_modules/@esbuild/freebsd-arm64": {
|
|
417
|
-
"version": "0.27.
|
|
418
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.
|
|
419
|
-
"integrity": "sha512-
|
|
417
|
+
"version": "0.27.7",
|
|
418
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
|
|
419
|
+
"integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
|
|
420
420
|
"cpu": [
|
|
421
421
|
"arm64"
|
|
422
422
|
],
|
|
@@ -431,9 +431,9 @@
|
|
|
431
431
|
}
|
|
432
432
|
},
|
|
433
433
|
"node_modules/@esbuild/freebsd-x64": {
|
|
434
|
-
"version": "0.27.
|
|
435
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.
|
|
436
|
-
"integrity": "sha512-
|
|
434
|
+
"version": "0.27.7",
|
|
435
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
|
|
436
|
+
"integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
|
|
437
437
|
"cpu": [
|
|
438
438
|
"x64"
|
|
439
439
|
],
|
|
@@ -448,9 +448,9 @@
|
|
|
448
448
|
}
|
|
449
449
|
},
|
|
450
450
|
"node_modules/@esbuild/linux-arm": {
|
|
451
|
-
"version": "0.27.
|
|
452
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.
|
|
453
|
-
"integrity": "sha512-
|
|
451
|
+
"version": "0.27.7",
|
|
452
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
|
|
453
|
+
"integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
|
|
454
454
|
"cpu": [
|
|
455
455
|
"arm"
|
|
456
456
|
],
|
|
@@ -465,9 +465,9 @@
|
|
|
465
465
|
}
|
|
466
466
|
},
|
|
467
467
|
"node_modules/@esbuild/linux-arm64": {
|
|
468
|
-
"version": "0.27.
|
|
469
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.
|
|
470
|
-
"integrity": "sha512-
|
|
468
|
+
"version": "0.27.7",
|
|
469
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
|
|
470
|
+
"integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
|
|
471
471
|
"cpu": [
|
|
472
472
|
"arm64"
|
|
473
473
|
],
|
|
@@ -482,9 +482,9 @@
|
|
|
482
482
|
}
|
|
483
483
|
},
|
|
484
484
|
"node_modules/@esbuild/linux-ia32": {
|
|
485
|
-
"version": "0.27.
|
|
486
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.
|
|
487
|
-
"integrity": "sha512-
|
|
485
|
+
"version": "0.27.7",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
|
|
487
|
+
"integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
|
|
488
488
|
"cpu": [
|
|
489
489
|
"ia32"
|
|
490
490
|
],
|
|
@@ -499,9 +499,9 @@
|
|
|
499
499
|
}
|
|
500
500
|
},
|
|
501
501
|
"node_modules/@esbuild/linux-loong64": {
|
|
502
|
-
"version": "0.27.
|
|
503
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.
|
|
504
|
-
"integrity": "sha512-
|
|
502
|
+
"version": "0.27.7",
|
|
503
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
|
|
504
|
+
"integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
|
|
505
505
|
"cpu": [
|
|
506
506
|
"loong64"
|
|
507
507
|
],
|
|
@@ -516,9 +516,9 @@
|
|
|
516
516
|
}
|
|
517
517
|
},
|
|
518
518
|
"node_modules/@esbuild/linux-mips64el": {
|
|
519
|
-
"version": "0.27.
|
|
520
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.
|
|
521
|
-
"integrity": "sha512-
|
|
519
|
+
"version": "0.27.7",
|
|
520
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
|
|
521
|
+
"integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
|
|
522
522
|
"cpu": [
|
|
523
523
|
"mips64el"
|
|
524
524
|
],
|
|
@@ -533,9 +533,9 @@
|
|
|
533
533
|
}
|
|
534
534
|
},
|
|
535
535
|
"node_modules/@esbuild/linux-ppc64": {
|
|
536
|
-
"version": "0.27.
|
|
537
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.
|
|
538
|
-
"integrity": "sha512-
|
|
536
|
+
"version": "0.27.7",
|
|
537
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
|
|
538
|
+
"integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
|
|
539
539
|
"cpu": [
|
|
540
540
|
"ppc64"
|
|
541
541
|
],
|
|
@@ -550,9 +550,9 @@
|
|
|
550
550
|
}
|
|
551
551
|
},
|
|
552
552
|
"node_modules/@esbuild/linux-riscv64": {
|
|
553
|
-
"version": "0.27.
|
|
554
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.
|
|
555
|
-
"integrity": "sha512-
|
|
553
|
+
"version": "0.27.7",
|
|
554
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
|
|
555
|
+
"integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
|
|
556
556
|
"cpu": [
|
|
557
557
|
"riscv64"
|
|
558
558
|
],
|
|
@@ -567,9 +567,9 @@
|
|
|
567
567
|
}
|
|
568
568
|
},
|
|
569
569
|
"node_modules/@esbuild/linux-s390x": {
|
|
570
|
-
"version": "0.27.
|
|
571
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.
|
|
572
|
-
"integrity": "sha512-
|
|
570
|
+
"version": "0.27.7",
|
|
571
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
|
|
572
|
+
"integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
|
|
573
573
|
"cpu": [
|
|
574
574
|
"s390x"
|
|
575
575
|
],
|
|
@@ -584,9 +584,9 @@
|
|
|
584
584
|
}
|
|
585
585
|
},
|
|
586
586
|
"node_modules/@esbuild/linux-x64": {
|
|
587
|
-
"version": "0.27.
|
|
588
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.
|
|
589
|
-
"integrity": "sha512-
|
|
587
|
+
"version": "0.27.7",
|
|
588
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
|
|
589
|
+
"integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
|
|
590
590
|
"cpu": [
|
|
591
591
|
"x64"
|
|
592
592
|
],
|
|
@@ -601,9 +601,9 @@
|
|
|
601
601
|
}
|
|
602
602
|
},
|
|
603
603
|
"node_modules/@esbuild/netbsd-arm64": {
|
|
604
|
-
"version": "0.27.
|
|
605
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.
|
|
606
|
-
"integrity": "sha512-
|
|
604
|
+
"version": "0.27.7",
|
|
605
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
|
|
606
|
+
"integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
|
|
607
607
|
"cpu": [
|
|
608
608
|
"arm64"
|
|
609
609
|
],
|
|
@@ -618,9 +618,9 @@
|
|
|
618
618
|
}
|
|
619
619
|
},
|
|
620
620
|
"node_modules/@esbuild/netbsd-x64": {
|
|
621
|
-
"version": "0.27.
|
|
622
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.
|
|
623
|
-
"integrity": "sha512-
|
|
621
|
+
"version": "0.27.7",
|
|
622
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
|
|
623
|
+
"integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
|
|
624
624
|
"cpu": [
|
|
625
625
|
"x64"
|
|
626
626
|
],
|
|
@@ -635,9 +635,9 @@
|
|
|
635
635
|
}
|
|
636
636
|
},
|
|
637
637
|
"node_modules/@esbuild/openbsd-arm64": {
|
|
638
|
-
"version": "0.27.
|
|
639
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.
|
|
640
|
-
"integrity": "sha512-
|
|
638
|
+
"version": "0.27.7",
|
|
639
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
|
|
640
|
+
"integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
|
|
641
641
|
"cpu": [
|
|
642
642
|
"arm64"
|
|
643
643
|
],
|
|
@@ -652,9 +652,9 @@
|
|
|
652
652
|
}
|
|
653
653
|
},
|
|
654
654
|
"node_modules/@esbuild/openbsd-x64": {
|
|
655
|
-
"version": "0.27.
|
|
656
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.
|
|
657
|
-
"integrity": "sha512
|
|
655
|
+
"version": "0.27.7",
|
|
656
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
|
|
657
|
+
"integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
|
|
658
658
|
"cpu": [
|
|
659
659
|
"x64"
|
|
660
660
|
],
|
|
@@ -669,9 +669,9 @@
|
|
|
669
669
|
}
|
|
670
670
|
},
|
|
671
671
|
"node_modules/@esbuild/openharmony-arm64": {
|
|
672
|
-
"version": "0.27.
|
|
673
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.
|
|
674
|
-
"integrity": "sha512
|
|
672
|
+
"version": "0.27.7",
|
|
673
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
|
|
674
|
+
"integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
|
|
675
675
|
"cpu": [
|
|
676
676
|
"arm64"
|
|
677
677
|
],
|
|
@@ -686,9 +686,9 @@
|
|
|
686
686
|
}
|
|
687
687
|
},
|
|
688
688
|
"node_modules/@esbuild/sunos-x64": {
|
|
689
|
-
"version": "0.27.
|
|
690
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.
|
|
691
|
-
"integrity": "sha512-
|
|
689
|
+
"version": "0.27.7",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
|
|
691
|
+
"integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
|
|
692
692
|
"cpu": [
|
|
693
693
|
"x64"
|
|
694
694
|
],
|
|
@@ -703,9 +703,9 @@
|
|
|
703
703
|
}
|
|
704
704
|
},
|
|
705
705
|
"node_modules/@esbuild/win32-arm64": {
|
|
706
|
-
"version": "0.27.
|
|
707
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.
|
|
708
|
-
"integrity": "sha512-
|
|
706
|
+
"version": "0.27.7",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
|
|
708
|
+
"integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
|
|
709
709
|
"cpu": [
|
|
710
710
|
"arm64"
|
|
711
711
|
],
|
|
@@ -720,9 +720,9 @@
|
|
|
720
720
|
}
|
|
721
721
|
},
|
|
722
722
|
"node_modules/@esbuild/win32-ia32": {
|
|
723
|
-
"version": "0.27.
|
|
724
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.
|
|
725
|
-
"integrity": "sha512-
|
|
723
|
+
"version": "0.27.7",
|
|
724
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
|
|
725
|
+
"integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
|
|
726
726
|
"cpu": [
|
|
727
727
|
"ia32"
|
|
728
728
|
],
|
|
@@ -737,9 +737,9 @@
|
|
|
737
737
|
}
|
|
738
738
|
},
|
|
739
739
|
"node_modules/@esbuild/win32-x64": {
|
|
740
|
-
"version": "0.27.
|
|
741
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.
|
|
742
|
-
"integrity": "sha512-
|
|
740
|
+
"version": "0.27.7",
|
|
741
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
|
|
742
|
+
"integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
|
|
743
743
|
"cpu": [
|
|
744
744
|
"x64"
|
|
745
745
|
],
|
|
@@ -959,9 +959,9 @@
|
|
|
959
959
|
"license": "MIT"
|
|
960
960
|
},
|
|
961
961
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
962
|
-
"version": "4.
|
|
963
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
964
|
-
"integrity": "sha512-
|
|
962
|
+
"version": "4.60.1",
|
|
963
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz",
|
|
964
|
+
"integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==",
|
|
965
965
|
"cpu": [
|
|
966
966
|
"arm"
|
|
967
967
|
],
|
|
@@ -973,9 +973,9 @@
|
|
|
973
973
|
]
|
|
974
974
|
},
|
|
975
975
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
976
|
-
"version": "4.
|
|
977
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
978
|
-
"integrity": "sha512-
|
|
976
|
+
"version": "4.60.1",
|
|
977
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz",
|
|
978
|
+
"integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==",
|
|
979
979
|
"cpu": [
|
|
980
980
|
"arm64"
|
|
981
981
|
],
|
|
@@ -987,9 +987,9 @@
|
|
|
987
987
|
]
|
|
988
988
|
},
|
|
989
989
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
990
|
-
"version": "4.
|
|
991
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
992
|
-
"integrity": "sha512-
|
|
990
|
+
"version": "4.60.1",
|
|
991
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz",
|
|
992
|
+
"integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==",
|
|
993
993
|
"cpu": [
|
|
994
994
|
"arm64"
|
|
995
995
|
],
|
|
@@ -1001,9 +1001,9 @@
|
|
|
1001
1001
|
]
|
|
1002
1002
|
},
|
|
1003
1003
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1004
|
-
"version": "4.
|
|
1005
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
1006
|
-
"integrity": "sha512-
|
|
1004
|
+
"version": "4.60.1",
|
|
1005
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz",
|
|
1006
|
+
"integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==",
|
|
1007
1007
|
"cpu": [
|
|
1008
1008
|
"x64"
|
|
1009
1009
|
],
|
|
@@ -1015,9 +1015,9 @@
|
|
|
1015
1015
|
]
|
|
1016
1016
|
},
|
|
1017
1017
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1018
|
-
"version": "4.
|
|
1019
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
1020
|
-
"integrity": "sha512-
|
|
1018
|
+
"version": "4.60.1",
|
|
1019
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz",
|
|
1020
|
+
"integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==",
|
|
1021
1021
|
"cpu": [
|
|
1022
1022
|
"arm64"
|
|
1023
1023
|
],
|
|
@@ -1029,9 +1029,9 @@
|
|
|
1029
1029
|
]
|
|
1030
1030
|
},
|
|
1031
1031
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1032
|
-
"version": "4.
|
|
1033
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
1034
|
-
"integrity": "sha512-
|
|
1032
|
+
"version": "4.60.1",
|
|
1033
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz",
|
|
1034
|
+
"integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==",
|
|
1035
1035
|
"cpu": [
|
|
1036
1036
|
"x64"
|
|
1037
1037
|
],
|
|
@@ -1043,9 +1043,9 @@
|
|
|
1043
1043
|
]
|
|
1044
1044
|
},
|
|
1045
1045
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1046
|
-
"version": "4.
|
|
1047
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
1048
|
-
"integrity": "sha512-
|
|
1046
|
+
"version": "4.60.1",
|
|
1047
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz",
|
|
1048
|
+
"integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==",
|
|
1049
1049
|
"cpu": [
|
|
1050
1050
|
"arm"
|
|
1051
1051
|
],
|
|
@@ -1057,9 +1057,9 @@
|
|
|
1057
1057
|
]
|
|
1058
1058
|
},
|
|
1059
1059
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1060
|
-
"version": "4.
|
|
1061
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
1062
|
-
"integrity": "sha512
|
|
1060
|
+
"version": "4.60.1",
|
|
1061
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz",
|
|
1062
|
+
"integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==",
|
|
1063
1063
|
"cpu": [
|
|
1064
1064
|
"arm"
|
|
1065
1065
|
],
|
|
@@ -1071,9 +1071,9 @@
|
|
|
1071
1071
|
]
|
|
1072
1072
|
},
|
|
1073
1073
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1074
|
-
"version": "4.
|
|
1075
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
1076
|
-
"integrity": "sha512-
|
|
1074
|
+
"version": "4.60.1",
|
|
1075
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz",
|
|
1076
|
+
"integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==",
|
|
1077
1077
|
"cpu": [
|
|
1078
1078
|
"arm64"
|
|
1079
1079
|
],
|
|
@@ -1085,9 +1085,9 @@
|
|
|
1085
1085
|
]
|
|
1086
1086
|
},
|
|
1087
1087
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1088
|
-
"version": "4.
|
|
1089
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
1090
|
-
"integrity": "sha512
|
|
1088
|
+
"version": "4.60.1",
|
|
1089
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz",
|
|
1090
|
+
"integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==",
|
|
1091
1091
|
"cpu": [
|
|
1092
1092
|
"arm64"
|
|
1093
1093
|
],
|
|
@@ -1099,9 +1099,23 @@
|
|
|
1099
1099
|
]
|
|
1100
1100
|
},
|
|
1101
1101
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1102
|
-
"version": "4.
|
|
1103
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
1104
|
-
"integrity": "sha512-
|
|
1102
|
+
"version": "4.60.1",
|
|
1103
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz",
|
|
1104
|
+
"integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==",
|
|
1105
|
+
"cpu": [
|
|
1106
|
+
"loong64"
|
|
1107
|
+
],
|
|
1108
|
+
"dev": true,
|
|
1109
|
+
"license": "MIT",
|
|
1110
|
+
"optional": true,
|
|
1111
|
+
"os": [
|
|
1112
|
+
"linux"
|
|
1113
|
+
]
|
|
1114
|
+
},
|
|
1115
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1116
|
+
"version": "4.60.1",
|
|
1117
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz",
|
|
1118
|
+
"integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==",
|
|
1105
1119
|
"cpu": [
|
|
1106
1120
|
"loong64"
|
|
1107
1121
|
],
|
|
@@ -1113,9 +1127,23 @@
|
|
|
1113
1127
|
]
|
|
1114
1128
|
},
|
|
1115
1129
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1116
|
-
"version": "4.
|
|
1117
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
1118
|
-
"integrity": "sha512-
|
|
1130
|
+
"version": "4.60.1",
|
|
1131
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz",
|
|
1132
|
+
"integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==",
|
|
1133
|
+
"cpu": [
|
|
1134
|
+
"ppc64"
|
|
1135
|
+
],
|
|
1136
|
+
"dev": true,
|
|
1137
|
+
"license": "MIT",
|
|
1138
|
+
"optional": true,
|
|
1139
|
+
"os": [
|
|
1140
|
+
"linux"
|
|
1141
|
+
]
|
|
1142
|
+
},
|
|
1143
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1144
|
+
"version": "4.60.1",
|
|
1145
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz",
|
|
1146
|
+
"integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==",
|
|
1119
1147
|
"cpu": [
|
|
1120
1148
|
"ppc64"
|
|
1121
1149
|
],
|
|
@@ -1127,9 +1155,9 @@
|
|
|
1127
1155
|
]
|
|
1128
1156
|
},
|
|
1129
1157
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1130
|
-
"version": "4.
|
|
1131
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
1132
|
-
"integrity": "sha512-
|
|
1158
|
+
"version": "4.60.1",
|
|
1159
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz",
|
|
1160
|
+
"integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==",
|
|
1133
1161
|
"cpu": [
|
|
1134
1162
|
"riscv64"
|
|
1135
1163
|
],
|
|
@@ -1141,9 +1169,9 @@
|
|
|
1141
1169
|
]
|
|
1142
1170
|
},
|
|
1143
1171
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1144
|
-
"version": "4.
|
|
1145
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
1146
|
-
"integrity": "sha512-
|
|
1172
|
+
"version": "4.60.1",
|
|
1173
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz",
|
|
1174
|
+
"integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==",
|
|
1147
1175
|
"cpu": [
|
|
1148
1176
|
"riscv64"
|
|
1149
1177
|
],
|
|
@@ -1155,9 +1183,9 @@
|
|
|
1155
1183
|
]
|
|
1156
1184
|
},
|
|
1157
1185
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1158
|
-
"version": "4.
|
|
1159
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
1160
|
-
"integrity": "sha512-
|
|
1186
|
+
"version": "4.60.1",
|
|
1187
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz",
|
|
1188
|
+
"integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==",
|
|
1161
1189
|
"cpu": [
|
|
1162
1190
|
"s390x"
|
|
1163
1191
|
],
|
|
@@ -1169,9 +1197,9 @@
|
|
|
1169
1197
|
]
|
|
1170
1198
|
},
|
|
1171
1199
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1172
|
-
"version": "4.
|
|
1173
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
1174
|
-
"integrity": "sha512-
|
|
1200
|
+
"version": "4.60.1",
|
|
1201
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz",
|
|
1202
|
+
"integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==",
|
|
1175
1203
|
"cpu": [
|
|
1176
1204
|
"x64"
|
|
1177
1205
|
],
|
|
@@ -1183,9 +1211,9 @@
|
|
|
1183
1211
|
]
|
|
1184
1212
|
},
|
|
1185
1213
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1186
|
-
"version": "4.
|
|
1187
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
1188
|
-
"integrity": "sha512-
|
|
1214
|
+
"version": "4.60.1",
|
|
1215
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz",
|
|
1216
|
+
"integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==",
|
|
1189
1217
|
"cpu": [
|
|
1190
1218
|
"x64"
|
|
1191
1219
|
],
|
|
@@ -1196,10 +1224,24 @@
|
|
|
1196
1224
|
"linux"
|
|
1197
1225
|
]
|
|
1198
1226
|
},
|
|
1227
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1228
|
+
"version": "4.60.1",
|
|
1229
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz",
|
|
1230
|
+
"integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==",
|
|
1231
|
+
"cpu": [
|
|
1232
|
+
"x64"
|
|
1233
|
+
],
|
|
1234
|
+
"dev": true,
|
|
1235
|
+
"license": "MIT",
|
|
1236
|
+
"optional": true,
|
|
1237
|
+
"os": [
|
|
1238
|
+
"openbsd"
|
|
1239
|
+
]
|
|
1240
|
+
},
|
|
1199
1241
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1200
|
-
"version": "4.
|
|
1201
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
1202
|
-
"integrity": "sha512-
|
|
1242
|
+
"version": "4.60.1",
|
|
1243
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz",
|
|
1244
|
+
"integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==",
|
|
1203
1245
|
"cpu": [
|
|
1204
1246
|
"arm64"
|
|
1205
1247
|
],
|
|
@@ -1211,9 +1253,9 @@
|
|
|
1211
1253
|
]
|
|
1212
1254
|
},
|
|
1213
1255
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1214
|
-
"version": "4.
|
|
1215
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
1216
|
-
"integrity": "sha512-
|
|
1256
|
+
"version": "4.60.1",
|
|
1257
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz",
|
|
1258
|
+
"integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==",
|
|
1217
1259
|
"cpu": [
|
|
1218
1260
|
"arm64"
|
|
1219
1261
|
],
|
|
@@ -1225,9 +1267,9 @@
|
|
|
1225
1267
|
]
|
|
1226
1268
|
},
|
|
1227
1269
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1228
|
-
"version": "4.
|
|
1229
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
1230
|
-
"integrity": "sha512-
|
|
1270
|
+
"version": "4.60.1",
|
|
1271
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz",
|
|
1272
|
+
"integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==",
|
|
1231
1273
|
"cpu": [
|
|
1232
1274
|
"ia32"
|
|
1233
1275
|
],
|
|
@@ -1239,9 +1281,9 @@
|
|
|
1239
1281
|
]
|
|
1240
1282
|
},
|
|
1241
1283
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1242
|
-
"version": "4.
|
|
1243
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
1244
|
-
"integrity": "sha512-
|
|
1284
|
+
"version": "4.60.1",
|
|
1285
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz",
|
|
1286
|
+
"integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==",
|
|
1245
1287
|
"cpu": [
|
|
1246
1288
|
"x64"
|
|
1247
1289
|
],
|
|
@@ -1253,9 +1295,9 @@
|
|
|
1253
1295
|
]
|
|
1254
1296
|
},
|
|
1255
1297
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1256
|
-
"version": "4.
|
|
1257
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
1258
|
-
"integrity": "sha512-
|
|
1298
|
+
"version": "4.60.1",
|
|
1299
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz",
|
|
1300
|
+
"integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==",
|
|
1259
1301
|
"cpu": [
|
|
1260
1302
|
"x64"
|
|
1261
1303
|
],
|
|
@@ -1354,9 +1396,9 @@
|
|
|
1354
1396
|
}
|
|
1355
1397
|
},
|
|
1356
1398
|
"node_modules/@types/d3-shape": {
|
|
1357
|
-
"version": "3.1.
|
|
1358
|
-
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.
|
|
1359
|
-
"integrity": "sha512-
|
|
1399
|
+
"version": "3.1.8",
|
|
1400
|
+
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
|
|
1401
|
+
"integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
|
|
1360
1402
|
"license": "MIT",
|
|
1361
1403
|
"dependencies": {
|
|
1362
1404
|
"@types/d3-path": "*"
|
|
@@ -1410,9 +1452,9 @@
|
|
|
1410
1452
|
}
|
|
1411
1453
|
},
|
|
1412
1454
|
"node_modules/acorn": {
|
|
1413
|
-
"version": "8.
|
|
1414
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.
|
|
1415
|
-
"integrity": "sha512-
|
|
1455
|
+
"version": "8.16.0",
|
|
1456
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
|
|
1457
|
+
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
|
|
1416
1458
|
"dev": true,
|
|
1417
1459
|
"license": "MIT",
|
|
1418
1460
|
"bin": {
|
|
@@ -1433,9 +1475,9 @@
|
|
|
1433
1475
|
}
|
|
1434
1476
|
},
|
|
1435
1477
|
"node_modules/ajv": {
|
|
1436
|
-
"version": "6.
|
|
1437
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.
|
|
1438
|
-
"integrity": "sha512-
|
|
1478
|
+
"version": "6.14.0",
|
|
1479
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz",
|
|
1480
|
+
"integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
|
|
1439
1481
|
"dev": true,
|
|
1440
1482
|
"license": "MIT",
|
|
1441
1483
|
"dependencies": {
|
|
@@ -1654,19 +1696,22 @@
|
|
|
1654
1696
|
"license": "MIT"
|
|
1655
1697
|
},
|
|
1656
1698
|
"node_modules/baseline-browser-mapping": {
|
|
1657
|
-
"version": "2.
|
|
1658
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.
|
|
1659
|
-
"integrity": "sha512-
|
|
1699
|
+
"version": "2.10.19",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.19.tgz",
|
|
1701
|
+
"integrity": "sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==",
|
|
1660
1702
|
"dev": true,
|
|
1661
1703
|
"license": "Apache-2.0",
|
|
1662
1704
|
"bin": {
|
|
1663
|
-
"baseline-browser-mapping": "dist/cli.
|
|
1705
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
1706
|
+
},
|
|
1707
|
+
"engines": {
|
|
1708
|
+
"node": ">=6.0.0"
|
|
1664
1709
|
}
|
|
1665
1710
|
},
|
|
1666
1711
|
"node_modules/brace-expansion": {
|
|
1667
|
-
"version": "1.1.
|
|
1668
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.
|
|
1669
|
-
"integrity": "sha512-
|
|
1712
|
+
"version": "1.1.14",
|
|
1713
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz",
|
|
1714
|
+
"integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==",
|
|
1670
1715
|
"dev": true,
|
|
1671
1716
|
"license": "MIT",
|
|
1672
1717
|
"dependencies": {
|
|
@@ -1675,9 +1720,9 @@
|
|
|
1675
1720
|
}
|
|
1676
1721
|
},
|
|
1677
1722
|
"node_modules/browserslist": {
|
|
1678
|
-
"version": "4.28.
|
|
1679
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
1680
|
-
"integrity": "sha512-
|
|
1723
|
+
"version": "4.28.2",
|
|
1724
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
|
|
1725
|
+
"integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
|
|
1681
1726
|
"dev": true,
|
|
1682
1727
|
"funding": [
|
|
1683
1728
|
{
|
|
@@ -1695,11 +1740,11 @@
|
|
|
1695
1740
|
],
|
|
1696
1741
|
"license": "MIT",
|
|
1697
1742
|
"dependencies": {
|
|
1698
|
-
"baseline-browser-mapping": "^2.
|
|
1699
|
-
"caniuse-lite": "^1.0.
|
|
1700
|
-
"electron-to-chromium": "^1.5.
|
|
1701
|
-
"node-releases": "^2.0.
|
|
1702
|
-
"update-browserslist-db": "^1.2.
|
|
1743
|
+
"baseline-browser-mapping": "^2.10.12",
|
|
1744
|
+
"caniuse-lite": "^1.0.30001782",
|
|
1745
|
+
"electron-to-chromium": "^1.5.328",
|
|
1746
|
+
"node-releases": "^2.0.36",
|
|
1747
|
+
"update-browserslist-db": "^1.2.3"
|
|
1703
1748
|
},
|
|
1704
1749
|
"bin": {
|
|
1705
1750
|
"browserslist": "cli.js"
|
|
@@ -1709,15 +1754,15 @@
|
|
|
1709
1754
|
}
|
|
1710
1755
|
},
|
|
1711
1756
|
"node_modules/call-bind": {
|
|
1712
|
-
"version": "1.0.
|
|
1713
|
-
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.
|
|
1714
|
-
"integrity": "sha512-
|
|
1757
|
+
"version": "1.0.9",
|
|
1758
|
+
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz",
|
|
1759
|
+
"integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==",
|
|
1715
1760
|
"dev": true,
|
|
1716
1761
|
"license": "MIT",
|
|
1717
1762
|
"dependencies": {
|
|
1718
|
-
"call-bind-apply-helpers": "^1.0.
|
|
1719
|
-
"es-define-property": "^1.0.
|
|
1720
|
-
"get-intrinsic": "^1.
|
|
1763
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1764
|
+
"es-define-property": "^1.0.1",
|
|
1765
|
+
"get-intrinsic": "^1.3.0",
|
|
1721
1766
|
"set-function-length": "^1.2.2"
|
|
1722
1767
|
},
|
|
1723
1768
|
"engines": {
|
|
@@ -1769,9 +1814,9 @@
|
|
|
1769
1814
|
}
|
|
1770
1815
|
},
|
|
1771
1816
|
"node_modules/caniuse-lite": {
|
|
1772
|
-
"version": "1.0.
|
|
1773
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
1774
|
-
"integrity": "sha512-
|
|
1817
|
+
"version": "1.0.30001788",
|
|
1818
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001788.tgz",
|
|
1819
|
+
"integrity": "sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==",
|
|
1775
1820
|
"dev": true,
|
|
1776
1821
|
"funding": [
|
|
1777
1822
|
{
|
|
@@ -1901,9 +1946,9 @@
|
|
|
1901
1946
|
}
|
|
1902
1947
|
},
|
|
1903
1948
|
"node_modules/d3-format": {
|
|
1904
|
-
"version": "3.1.
|
|
1905
|
-
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.
|
|
1906
|
-
"integrity": "sha512-
|
|
1949
|
+
"version": "3.1.2",
|
|
1950
|
+
"resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
|
|
1951
|
+
"integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
|
|
1907
1952
|
"license": "ISC",
|
|
1908
1953
|
"engines": {
|
|
1909
1954
|
"node": ">=12"
|
|
@@ -2151,16 +2196,16 @@
|
|
|
2151
2196
|
}
|
|
2152
2197
|
},
|
|
2153
2198
|
"node_modules/electron-to-chromium": {
|
|
2154
|
-
"version": "1.5.
|
|
2155
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
2156
|
-
"integrity": "sha512-
|
|
2199
|
+
"version": "1.5.339",
|
|
2200
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.339.tgz",
|
|
2201
|
+
"integrity": "sha512-Is+0BBHJ4NrdpAYiperrmp53pLywG/yV/6lIMTAnhxvzj/Cmn5Q/ogSHC6AKe7X+8kPLxxFk0cs5oc/3j/fxIg==",
|
|
2157
2202
|
"dev": true,
|
|
2158
2203
|
"license": "ISC"
|
|
2159
2204
|
},
|
|
2160
2205
|
"node_modules/es-abstract": {
|
|
2161
|
-
"version": "1.24.
|
|
2162
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.
|
|
2163
|
-
"integrity": "sha512-
|
|
2206
|
+
"version": "1.24.2",
|
|
2207
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz",
|
|
2208
|
+
"integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==",
|
|
2164
2209
|
"dev": true,
|
|
2165
2210
|
"license": "MIT",
|
|
2166
2211
|
"dependencies": {
|
|
@@ -2247,16 +2292,16 @@
|
|
|
2247
2292
|
}
|
|
2248
2293
|
},
|
|
2249
2294
|
"node_modules/es-iterator-helpers": {
|
|
2250
|
-
"version": "1.
|
|
2251
|
-
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.
|
|
2252
|
-
"integrity": "sha512-
|
|
2295
|
+
"version": "1.3.2",
|
|
2296
|
+
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.2.tgz",
|
|
2297
|
+
"integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==",
|
|
2253
2298
|
"dev": true,
|
|
2254
2299
|
"license": "MIT",
|
|
2255
2300
|
"dependencies": {
|
|
2256
|
-
"call-bind": "^1.0.
|
|
2301
|
+
"call-bind": "^1.0.9",
|
|
2257
2302
|
"call-bound": "^1.0.4",
|
|
2258
2303
|
"define-properties": "^1.2.1",
|
|
2259
|
-
"es-abstract": "^1.24.
|
|
2304
|
+
"es-abstract": "^1.24.2",
|
|
2260
2305
|
"es-errors": "^1.3.0",
|
|
2261
2306
|
"es-set-tostringtag": "^2.1.0",
|
|
2262
2307
|
"function-bind": "^1.1.2",
|
|
@@ -2268,7 +2313,7 @@
|
|
|
2268
2313
|
"has-symbols": "^1.1.0",
|
|
2269
2314
|
"internal-slot": "^1.1.0",
|
|
2270
2315
|
"iterator.prototype": "^1.1.5",
|
|
2271
|
-
"
|
|
2316
|
+
"math-intrinsics": "^1.1.0"
|
|
2272
2317
|
},
|
|
2273
2318
|
"engines": {
|
|
2274
2319
|
"node": ">= 0.4"
|
|
@@ -2335,9 +2380,9 @@
|
|
|
2335
2380
|
}
|
|
2336
2381
|
},
|
|
2337
2382
|
"node_modules/esbuild": {
|
|
2338
|
-
"version": "0.27.
|
|
2339
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.
|
|
2340
|
-
"integrity": "sha512-
|
|
2383
|
+
"version": "0.27.7",
|
|
2384
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
|
|
2385
|
+
"integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
|
|
2341
2386
|
"dev": true,
|
|
2342
2387
|
"hasInstallScript": true,
|
|
2343
2388
|
"license": "MIT",
|
|
@@ -2348,32 +2393,32 @@
|
|
|
2348
2393
|
"node": ">=18"
|
|
2349
2394
|
},
|
|
2350
2395
|
"optionalDependencies": {
|
|
2351
|
-
"@esbuild/aix-ppc64": "0.27.
|
|
2352
|
-
"@esbuild/android-arm": "0.27.
|
|
2353
|
-
"@esbuild/android-arm64": "0.27.
|
|
2354
|
-
"@esbuild/android-x64": "0.27.
|
|
2355
|
-
"@esbuild/darwin-arm64": "0.27.
|
|
2356
|
-
"@esbuild/darwin-x64": "0.27.
|
|
2357
|
-
"@esbuild/freebsd-arm64": "0.27.
|
|
2358
|
-
"@esbuild/freebsd-x64": "0.27.
|
|
2359
|
-
"@esbuild/linux-arm": "0.27.
|
|
2360
|
-
"@esbuild/linux-arm64": "0.27.
|
|
2361
|
-
"@esbuild/linux-ia32": "0.27.
|
|
2362
|
-
"@esbuild/linux-loong64": "0.27.
|
|
2363
|
-
"@esbuild/linux-mips64el": "0.27.
|
|
2364
|
-
"@esbuild/linux-ppc64": "0.27.
|
|
2365
|
-
"@esbuild/linux-riscv64": "0.27.
|
|
2366
|
-
"@esbuild/linux-s390x": "0.27.
|
|
2367
|
-
"@esbuild/linux-x64": "0.27.
|
|
2368
|
-
"@esbuild/netbsd-arm64": "0.27.
|
|
2369
|
-
"@esbuild/netbsd-x64": "0.27.
|
|
2370
|
-
"@esbuild/openbsd-arm64": "0.27.
|
|
2371
|
-
"@esbuild/openbsd-x64": "0.27.
|
|
2372
|
-
"@esbuild/openharmony-arm64": "0.27.
|
|
2373
|
-
"@esbuild/sunos-x64": "0.27.
|
|
2374
|
-
"@esbuild/win32-arm64": "0.27.
|
|
2375
|
-
"@esbuild/win32-ia32": "0.27.
|
|
2376
|
-
"@esbuild/win32-x64": "0.27.
|
|
2396
|
+
"@esbuild/aix-ppc64": "0.27.7",
|
|
2397
|
+
"@esbuild/android-arm": "0.27.7",
|
|
2398
|
+
"@esbuild/android-arm64": "0.27.7",
|
|
2399
|
+
"@esbuild/android-x64": "0.27.7",
|
|
2400
|
+
"@esbuild/darwin-arm64": "0.27.7",
|
|
2401
|
+
"@esbuild/darwin-x64": "0.27.7",
|
|
2402
|
+
"@esbuild/freebsd-arm64": "0.27.7",
|
|
2403
|
+
"@esbuild/freebsd-x64": "0.27.7",
|
|
2404
|
+
"@esbuild/linux-arm": "0.27.7",
|
|
2405
|
+
"@esbuild/linux-arm64": "0.27.7",
|
|
2406
|
+
"@esbuild/linux-ia32": "0.27.7",
|
|
2407
|
+
"@esbuild/linux-loong64": "0.27.7",
|
|
2408
|
+
"@esbuild/linux-mips64el": "0.27.7",
|
|
2409
|
+
"@esbuild/linux-ppc64": "0.27.7",
|
|
2410
|
+
"@esbuild/linux-riscv64": "0.27.7",
|
|
2411
|
+
"@esbuild/linux-s390x": "0.27.7",
|
|
2412
|
+
"@esbuild/linux-x64": "0.27.7",
|
|
2413
|
+
"@esbuild/netbsd-arm64": "0.27.7",
|
|
2414
|
+
"@esbuild/netbsd-x64": "0.27.7",
|
|
2415
|
+
"@esbuild/openbsd-arm64": "0.27.7",
|
|
2416
|
+
"@esbuild/openbsd-x64": "0.27.7",
|
|
2417
|
+
"@esbuild/openharmony-arm64": "0.27.7",
|
|
2418
|
+
"@esbuild/sunos-x64": "0.27.7",
|
|
2419
|
+
"@esbuild/win32-arm64": "0.27.7",
|
|
2420
|
+
"@esbuild/win32-ia32": "0.27.7",
|
|
2421
|
+
"@esbuild/win32-x64": "0.27.7"
|
|
2377
2422
|
}
|
|
2378
2423
|
},
|
|
2379
2424
|
"node_modules/escalade": {
|
|
@@ -2706,9 +2751,9 @@
|
|
|
2706
2751
|
}
|
|
2707
2752
|
},
|
|
2708
2753
|
"node_modules/flatted": {
|
|
2709
|
-
"version": "3.
|
|
2710
|
-
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.
|
|
2711
|
-
"integrity": "sha512-
|
|
2754
|
+
"version": "3.4.2",
|
|
2755
|
+
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
|
|
2756
|
+
"integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
|
|
2712
2757
|
"dev": true,
|
|
2713
2758
|
"license": "ISC"
|
|
2714
2759
|
},
|
|
@@ -2872,7 +2917,7 @@
|
|
|
2872
2917
|
"version": "7.2.3",
|
|
2873
2918
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
2874
2919
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
2875
|
-
"deprecated": "
|
|
2920
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
2876
2921
|
"dev": true,
|
|
2877
2922
|
"license": "ISC",
|
|
2878
2923
|
"dependencies": {
|
|
@@ -3677,9 +3722,9 @@
|
|
|
3677
3722
|
}
|
|
3678
3723
|
},
|
|
3679
3724
|
"node_modules/lodash": {
|
|
3680
|
-
"version": "4.
|
|
3681
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.
|
|
3682
|
-
"integrity": "sha512-
|
|
3725
|
+
"version": "4.18.1",
|
|
3726
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
|
|
3727
|
+
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
|
|
3683
3728
|
"license": "MIT"
|
|
3684
3729
|
},
|
|
3685
3730
|
"node_modules/lodash.merge": {
|
|
@@ -3722,9 +3767,9 @@
|
|
|
3722
3767
|
}
|
|
3723
3768
|
},
|
|
3724
3769
|
"node_modules/minimatch": {
|
|
3725
|
-
"version": "3.1.
|
|
3726
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.
|
|
3727
|
-
"integrity": "sha512-
|
|
3770
|
+
"version": "3.1.5",
|
|
3771
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
|
|
3772
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
3728
3773
|
"dev": true,
|
|
3729
3774
|
"license": "ISC",
|
|
3730
3775
|
"dependencies": {
|
|
@@ -3767,10 +3812,29 @@
|
|
|
3767
3812
|
"dev": true,
|
|
3768
3813
|
"license": "MIT"
|
|
3769
3814
|
},
|
|
3815
|
+
"node_modules/node-exports-info": {
|
|
3816
|
+
"version": "1.6.0",
|
|
3817
|
+
"resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz",
|
|
3818
|
+
"integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==",
|
|
3819
|
+
"dev": true,
|
|
3820
|
+
"license": "MIT",
|
|
3821
|
+
"dependencies": {
|
|
3822
|
+
"array.prototype.flatmap": "^1.3.3",
|
|
3823
|
+
"es-errors": "^1.3.0",
|
|
3824
|
+
"object.entries": "^1.1.9",
|
|
3825
|
+
"semver": "^6.3.1"
|
|
3826
|
+
},
|
|
3827
|
+
"engines": {
|
|
3828
|
+
"node": ">= 0.4"
|
|
3829
|
+
},
|
|
3830
|
+
"funding": {
|
|
3831
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
3832
|
+
}
|
|
3833
|
+
},
|
|
3770
3834
|
"node_modules/node-releases": {
|
|
3771
|
-
"version": "2.0.
|
|
3772
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
3773
|
-
"integrity": "sha512-
|
|
3835
|
+
"version": "2.0.37",
|
|
3836
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz",
|
|
3837
|
+
"integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==",
|
|
3774
3838
|
"dev": true,
|
|
3775
3839
|
"license": "MIT"
|
|
3776
3840
|
},
|
|
@@ -4017,9 +4081,9 @@
|
|
|
4017
4081
|
"license": "ISC"
|
|
4018
4082
|
},
|
|
4019
4083
|
"node_modules/picomatch": {
|
|
4020
|
-
"version": "4.0.
|
|
4021
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.
|
|
4022
|
-
"integrity": "sha512-
|
|
4084
|
+
"version": "4.0.4",
|
|
4085
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
4086
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
4023
4087
|
"dev": true,
|
|
4024
4088
|
"license": "MIT",
|
|
4025
4089
|
"engines": {
|
|
@@ -4040,9 +4104,9 @@
|
|
|
4040
4104
|
}
|
|
4041
4105
|
},
|
|
4042
4106
|
"node_modules/postcss": {
|
|
4043
|
-
"version": "8.5.
|
|
4044
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
4045
|
-
"integrity": "sha512-
|
|
4107
|
+
"version": "8.5.10",
|
|
4108
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
4109
|
+
"integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
|
|
4046
4110
|
"dev": true,
|
|
4047
4111
|
"funding": [
|
|
4048
4112
|
{
|
|
@@ -4307,19 +4371,25 @@
|
|
|
4307
4371
|
}
|
|
4308
4372
|
},
|
|
4309
4373
|
"node_modules/resolve": {
|
|
4310
|
-
"version": "2.0.0-next.
|
|
4311
|
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.
|
|
4312
|
-
"integrity": "sha512-
|
|
4374
|
+
"version": "2.0.0-next.6",
|
|
4375
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz",
|
|
4376
|
+
"integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==",
|
|
4313
4377
|
"dev": true,
|
|
4314
4378
|
"license": "MIT",
|
|
4315
4379
|
"dependencies": {
|
|
4316
|
-
"
|
|
4380
|
+
"es-errors": "^1.3.0",
|
|
4381
|
+
"is-core-module": "^2.16.1",
|
|
4382
|
+
"node-exports-info": "^1.6.0",
|
|
4383
|
+
"object-keys": "^1.1.1",
|
|
4317
4384
|
"path-parse": "^1.0.7",
|
|
4318
4385
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
4319
4386
|
},
|
|
4320
4387
|
"bin": {
|
|
4321
4388
|
"resolve": "bin/resolve"
|
|
4322
4389
|
},
|
|
4390
|
+
"engines": {
|
|
4391
|
+
"node": ">= 0.4"
|
|
4392
|
+
},
|
|
4323
4393
|
"funding": {
|
|
4324
4394
|
"url": "https://github.com/sponsors/ljharb"
|
|
4325
4395
|
}
|
|
@@ -4363,9 +4433,9 @@
|
|
|
4363
4433
|
}
|
|
4364
4434
|
},
|
|
4365
4435
|
"node_modules/rollup": {
|
|
4366
|
-
"version": "4.
|
|
4367
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
4368
|
-
"integrity": "sha512-
|
|
4436
|
+
"version": "4.60.1",
|
|
4437
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz",
|
|
4438
|
+
"integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==",
|
|
4369
4439
|
"dev": true,
|
|
4370
4440
|
"license": "MIT",
|
|
4371
4441
|
"dependencies": {
|
|
@@ -4379,28 +4449,31 @@
|
|
|
4379
4449
|
"npm": ">=8.0.0"
|
|
4380
4450
|
},
|
|
4381
4451
|
"optionalDependencies": {
|
|
4382
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
4383
|
-
"@rollup/rollup-android-arm64": "4.
|
|
4384
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
4385
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
4386
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
4387
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
4388
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
4389
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
4390
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
4391
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
4392
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
4393
|
-
"@rollup/rollup-linux-
|
|
4394
|
-
"@rollup/rollup-linux-
|
|
4395
|
-
"@rollup/rollup-linux-
|
|
4396
|
-
"@rollup/rollup-linux-
|
|
4397
|
-
"@rollup/rollup-linux-
|
|
4398
|
-
"@rollup/rollup-linux-
|
|
4399
|
-
"@rollup/rollup-
|
|
4400
|
-
"@rollup/rollup-
|
|
4401
|
-
"@rollup/rollup-
|
|
4402
|
-
"@rollup/rollup-
|
|
4403
|
-
"@rollup/rollup-win32-
|
|
4452
|
+
"@rollup/rollup-android-arm-eabi": "4.60.1",
|
|
4453
|
+
"@rollup/rollup-android-arm64": "4.60.1",
|
|
4454
|
+
"@rollup/rollup-darwin-arm64": "4.60.1",
|
|
4455
|
+
"@rollup/rollup-darwin-x64": "4.60.1",
|
|
4456
|
+
"@rollup/rollup-freebsd-arm64": "4.60.1",
|
|
4457
|
+
"@rollup/rollup-freebsd-x64": "4.60.1",
|
|
4458
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.60.1",
|
|
4459
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.60.1",
|
|
4460
|
+
"@rollup/rollup-linux-arm64-gnu": "4.60.1",
|
|
4461
|
+
"@rollup/rollup-linux-arm64-musl": "4.60.1",
|
|
4462
|
+
"@rollup/rollup-linux-loong64-gnu": "4.60.1",
|
|
4463
|
+
"@rollup/rollup-linux-loong64-musl": "4.60.1",
|
|
4464
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.60.1",
|
|
4465
|
+
"@rollup/rollup-linux-ppc64-musl": "4.60.1",
|
|
4466
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.60.1",
|
|
4467
|
+
"@rollup/rollup-linux-riscv64-musl": "4.60.1",
|
|
4468
|
+
"@rollup/rollup-linux-s390x-gnu": "4.60.1",
|
|
4469
|
+
"@rollup/rollup-linux-x64-gnu": "4.60.1",
|
|
4470
|
+
"@rollup/rollup-linux-x64-musl": "4.60.1",
|
|
4471
|
+
"@rollup/rollup-openbsd-x64": "4.60.1",
|
|
4472
|
+
"@rollup/rollup-openharmony-arm64": "4.60.1",
|
|
4473
|
+
"@rollup/rollup-win32-arm64-msvc": "4.60.1",
|
|
4474
|
+
"@rollup/rollup-win32-ia32-msvc": "4.60.1",
|
|
4475
|
+
"@rollup/rollup-win32-x64-gnu": "4.60.1",
|
|
4476
|
+
"@rollup/rollup-win32-x64-msvc": "4.60.1",
|
|
4404
4477
|
"fsevents": "~2.3.2"
|
|
4405
4478
|
}
|
|
4406
4479
|
},
|
|
@@ -4595,14 +4668,14 @@
|
|
|
4595
4668
|
}
|
|
4596
4669
|
},
|
|
4597
4670
|
"node_modules/side-channel-list": {
|
|
4598
|
-
"version": "1.0.
|
|
4599
|
-
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.
|
|
4600
|
-
"integrity": "sha512-
|
|
4671
|
+
"version": "1.0.1",
|
|
4672
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
|
|
4673
|
+
"integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
|
|
4601
4674
|
"dev": true,
|
|
4602
4675
|
"license": "MIT",
|
|
4603
4676
|
"dependencies": {
|
|
4604
4677
|
"es-errors": "^1.3.0",
|
|
4605
|
-
"object-inspect": "^1.13.
|
|
4678
|
+
"object-inspect": "^1.13.4"
|
|
4606
4679
|
},
|
|
4607
4680
|
"engines": {
|
|
4608
4681
|
"node": ">= 0.4"
|
|
@@ -4838,14 +4911,14 @@
|
|
|
4838
4911
|
"license": "MIT"
|
|
4839
4912
|
},
|
|
4840
4913
|
"node_modules/tinyglobby": {
|
|
4841
|
-
"version": "0.2.
|
|
4842
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
4843
|
-
"integrity": "sha512-
|
|
4914
|
+
"version": "0.2.16",
|
|
4915
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
|
|
4916
|
+
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
|
4844
4917
|
"dev": true,
|
|
4845
4918
|
"license": "MIT",
|
|
4846
4919
|
"dependencies": {
|
|
4847
4920
|
"fdir": "^6.5.0",
|
|
4848
|
-
"picomatch": "^4.0.
|
|
4921
|
+
"picomatch": "^4.0.4"
|
|
4849
4922
|
},
|
|
4850
4923
|
"engines": {
|
|
4851
4924
|
"node": ">=12.0.0"
|
|
@@ -5041,9 +5114,9 @@
|
|
|
5041
5114
|
}
|
|
5042
5115
|
},
|
|
5043
5116
|
"node_modules/vite": {
|
|
5044
|
-
"version": "7.3.
|
|
5045
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
5046
|
-
"integrity": "sha512-
|
|
5117
|
+
"version": "7.3.2",
|
|
5118
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
|
|
5119
|
+
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
|
|
5047
5120
|
"dev": true,
|
|
5048
5121
|
"license": "MIT",
|
|
5049
5122
|
"dependencies": {
|
|
@@ -5199,9 +5272,9 @@
|
|
|
5199
5272
|
}
|
|
5200
5273
|
},
|
|
5201
5274
|
"node_modules/which-typed-array": {
|
|
5202
|
-
"version": "1.1.
|
|
5203
|
-
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.
|
|
5204
|
-
"integrity": "sha512-
|
|
5275
|
+
"version": "1.1.20",
|
|
5276
|
+
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.20.tgz",
|
|
5277
|
+
"integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
|
|
5205
5278
|
"dev": true,
|
|
5206
5279
|
"license": "MIT",
|
|
5207
5280
|
"dependencies": {
|
|
@@ -5259,4 +5332,3 @@
|
|
|
5259
5332
|
}
|
|
5260
5333
|
}
|
|
5261
5334
|
}
|
|
5262
|
-
|