claude-flow-novice 2.2.3 ā 2.2.5
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/dist/.claude/settings.json +2 -1
- package/dist/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
- package/dist/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
- package/dist/scripts/CLEANUP_QUICK_START.md +268 -0
- package/dist/scripts/CLEANUP_TEST_RESULTS.md +205 -0
- package/dist/scripts/README.md +339 -0
- package/dist/scripts/ace-query.sh +384 -0
- package/dist/scripts/agent-token-analysis.js +430 -0
- package/dist/scripts/auto-setup.js +332 -0
- package/dist/scripts/build/README.md +167 -0
- package/dist/scripts/build/build-config.js +27 -0
- package/dist/scripts/build/build-prompt-copier.sh +30 -0
- package/dist/scripts/build/performance-monitor.js +869 -0
- package/dist/scripts/build/prepare-publish.js +150 -0
- package/dist/scripts/build/typescript-fixer.js +621 -0
- package/dist/scripts/build/unified-builder.sh +428 -0
- package/dist/scripts/build/update-bin-version.js +32 -0
- package/dist/scripts/build/validate-agents.js +238 -0
- package/dist/scripts/build-index.js +43 -0
- package/dist/scripts/build-orchestrator.js +320 -0
- package/dist/scripts/check-routing-stats.cjs +122 -0
- package/dist/scripts/ci-validation.js +375 -0
- package/dist/scripts/cleanup-blocking-coordination.sh +420 -0
- package/dist/scripts/cleanup-idle-sessions.sh +59 -0
- package/dist/scripts/collect-build-metrics.js +65 -0
- package/dist/scripts/demo/README.md +79 -0
- package/dist/scripts/demo/autoscaling-demo-simplified.js +963 -0
- package/dist/scripts/demo/comprehensive-dashboard-test.js +693 -0
- package/dist/scripts/demo/confidence-log.js +87 -0
- package/dist/scripts/demo/confidence-report.js +82 -0
- package/dist/scripts/demo/demo-multi-swarm-coordination.js +325 -0
- package/dist/scripts/demo/demo-production-deployment.js +399 -0
- package/dist/scripts/demo/demo-visualization-system.js +149 -0
- package/dist/scripts/demo/performance-analysis.cjs +71 -0
- package/dist/scripts/demo/performance-analysis.js +71 -0
- package/dist/scripts/demo/test-autoscaling-demo.js +314 -0
- package/dist/scripts/dependency-optimizer.js +349 -0
- package/dist/scripts/dependency-security-assessment.js +331 -0
- package/dist/scripts/deploy-sdk.sh +176 -0
- package/dist/scripts/deployment-readiness-report.json +179 -0
- package/dist/scripts/dev/README.md +264 -0
- package/dist/scripts/dev/claude-flow-wrapper.sh +35 -0
- package/dist/scripts/dev/claude-monitor.py +419 -0
- package/dist/scripts/dev/claude-sparc.sh +562 -0
- package/dist/scripts/dev/claude-wrapper.sh +17 -0
- package/dist/scripts/dev/demo-phase3-compliance.js +172 -0
- package/dist/scripts/dev/demo-task-system.ts +224 -0
- package/dist/scripts/dev/deployment-validator.js +315 -0
- package/dist/scripts/dev/spawn-claude-terminal.sh +32 -0
- package/dist/scripts/dev/start-portal.sh +506 -0
- package/dist/scripts/dev/start-web-ui.js +15 -0
- package/dist/scripts/dev/stop-portal.sh +311 -0
- package/dist/scripts/dev/validate-examples.ts +288 -0
- package/dist/scripts/dev/validate-phase2.cjs +451 -0
- package/dist/scripts/dev/validate-phase2.js +785 -0
- package/dist/scripts/dev/validate-phase3.cjs +208 -0
- package/dist/scripts/dev/validate-security-remediation.js +1 -0
- package/dist/scripts/ecosystem.config.cjs +90 -0
- package/dist/scripts/fix-js-extensions.js +167 -0
- package/dist/scripts/generate-basic-types.js +73 -0
- package/dist/scripts/generate-changelog.js +318 -0
- package/dist/scripts/git-hooks/pre-commit.sh +143 -0
- package/dist/scripts/health-checks.js +634 -0
- package/dist/scripts/hook-wrapper.sh +54 -0
- package/dist/scripts/install/README.md +375 -0
- package/dist/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
- package/dist/scripts/install/check-prerequisites.js +303 -0
- package/dist/scripts/install/config-wizard.js +606 -0
- package/dist/scripts/install/dependency-checker.js +385 -0
- package/dist/scripts/install/health-check.js +765 -0
- package/dist/scripts/install/install.js +256 -0
- package/dist/scripts/install/installation-benchmark.js +461 -0
- package/dist/scripts/install/quick-install.js +720 -0
- package/dist/scripts/install/quick-start-wizard.js +295 -0
- package/dist/scripts/install/redis-cli.js +289 -0
- package/dist/scripts/install/redis-install-guides.md +407 -0
- package/dist/scripts/install/redis-setup.js +559 -0
- package/dist/scripts/install/redis-test.js +278 -0
- package/dist/scripts/install/service-manager.js +672 -0
- package/dist/scripts/install/setup.js +832 -0
- package/dist/scripts/install/uninstall.js +526 -0
- package/dist/scripts/install/update.js +461 -0
- package/dist/scripts/install-pre-commit-hook.sh +127 -0
- package/dist/scripts/legacy/README.md +272 -0
- package/dist/scripts/legacy/batch-fix-ts.sh +54 -0
- package/dist/scripts/legacy/build-migration.sh +105 -0
- package/dist/scripts/legacy/build-monitor.js +209 -0
- package/dist/scripts/legacy/build-with-filter.sh +84 -0
- package/dist/scripts/legacy/build-workaround.sh +71 -0
- package/dist/scripts/legacy/fix-ts-advanced.js +358 -0
- package/dist/scripts/legacy/fix-ts-final.sh +50 -0
- package/dist/scripts/legacy/fix-ts-targeted.sh +49 -0
- package/dist/scripts/legacy/fix-typescript-errors.js +305 -0
- package/dist/scripts/legacy/force-build.sh +63 -0
- package/dist/scripts/legacy/optimize-performance.js +400 -0
- package/dist/scripts/legacy/performance-monitor.js +263 -0
- package/dist/scripts/legacy/performance-monitoring.js +532 -0
- package/dist/scripts/legacy/performance-test-runner.js +645 -0
- package/dist/scripts/legacy/quick-fix-ts.js +281 -0
- package/dist/scripts/legacy/safe-build.sh +63 -0
- package/dist/scripts/memory-monitor-coordinator.js +322 -0
- package/dist/scripts/migrate-to-sdk.sh +520 -0
- package/dist/scripts/migration/QUICK-START.md +189 -0
- package/dist/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
- package/dist/scripts/migration/README.md +464 -0
- package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
- package/dist/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
- package/dist/scripts/migration/UPDATE-PATHS-README.md +464 -0
- package/dist/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
- package/dist/scripts/migration/example-patterns.json +19 -0
- package/dist/scripts/migration/install-arm64.js +78 -0
- package/dist/scripts/migration/install.js +83 -0
- package/dist/scripts/migration/migrate-hooks.js +173 -0
- package/dist/scripts/migration/migration-examples.ts +318 -0
- package/dist/scripts/migration/reorganize-workspace.js +504 -0
- package/dist/scripts/migration/test-update-paths.js +359 -0
- package/dist/scripts/migration/update-paths.js +664 -0
- package/dist/scripts/migration/validate-migration.js +647 -0
- package/dist/scripts/monitor-loop.sh +65 -0
- package/dist/scripts/monitor-memory.sh +47 -0
- package/dist/scripts/monitor-migration.js +339 -0
- package/dist/scripts/monitor.py +43 -0
- package/dist/scripts/monitoring/README.md +178 -0
- package/dist/scripts/monitoring/alert-monitor.sh +220 -0
- package/dist/scripts/monitoring/analyze-resources.sh +199 -0
- package/dist/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
- package/dist/scripts/monitoring/dynamic-monitor.sh +85 -0
- package/dist/scripts/monitoring/launch-stability-test.sh +184 -0
- package/dist/scripts/monitoring/monitor-test.sh +93 -0
- package/dist/scripts/monitoring/pre-test-validation.sh +208 -0
- package/dist/scripts/monitoring/quick-test-alerting.sh +118 -0
- package/dist/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
- package/dist/scripts/monitoring/rate-limiting-monitor.sh +380 -0
- package/dist/scripts/monitoring/resource-monitor.sh +126 -0
- package/dist/scripts/monitoring/stability-monitor.js +429 -0
- package/dist/scripts/monitoring/test-monitor-quick.sh +54 -0
- package/dist/scripts/monitoring/view-alerts.sh +307 -0
- package/dist/scripts/npm-metrics-collector.js +482 -0
- package/dist/scripts/npm-package-validation.cjs +299 -0
- package/dist/scripts/optimization/build-optimizer.js +438 -0
- package/dist/scripts/optimization/config-validator.js +761 -0
- package/dist/scripts/optimization/test-optimization.js +432 -0
- package/dist/scripts/optimization/unified-activation.js +839 -0
- package/dist/scripts/optimize-package-swarm.js +54 -0
- package/dist/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
- package/dist/scripts/performance/sqlite-enhanced-activation.sh +583 -0
- package/dist/scripts/performance/test-enhanced-backend.sh +504 -0
- package/dist/scripts/performance-monitor.js +644 -0
- package/dist/scripts/performance-test-runner.js +698 -0
- package/dist/scripts/post-deployment-monitoring.js +350 -0
- package/dist/scripts/post-edit-pipeline.js +2091 -0
- package/dist/scripts/post-install-claude-md.js +78 -0
- package/dist/scripts/postinstall.js +79 -0
- package/dist/scripts/pre-publish-validation.cjs +212 -0
- package/dist/scripts/pre-publish-validation.js +429 -0
- package/dist/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
- package/dist/scripts/release-announcement.js +425 -0
- package/dist/scripts/release-notification.js +248 -0
- package/dist/scripts/release-rollback.js +376 -0
- package/dist/scripts/release-validation.js +460 -0
- package/dist/scripts/rollback-sdk.sh +66 -0
- package/dist/scripts/run-production-validation.ts +590 -0
- package/dist/scripts/run-stability-validation.sh +687 -0
- package/dist/scripts/security/README.md +339 -0
- package/dist/scripts/security/deployment-validation.cjs +279 -0
- package/dist/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
- package/dist/scripts/security/install-git-hooks.sh +132 -0
- package/dist/scripts/security/install-git-secrets.sh +295 -0
- package/dist/scripts/security/rotate-api-keys.js +469 -0
- package/dist/scripts/security/ruv-swarm-safe.js +74 -0
- package/dist/scripts/security/security-audit.cjs +538 -0
- package/dist/scripts/security/setup-redis-auth.sh +397 -0
- package/dist/scripts/security/validate-envelope-encryption.cjs +340 -0
- package/dist/scripts/security-scan.js +492 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
- package/dist/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
- package/dist/scripts/switch-api.sh +158 -0
- package/dist/scripts/sync-agents.js +290 -0
- package/dist/scripts/test/50-agent-test.js +625 -0
- package/dist/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
- package/dist/scripts/test/README.md +236 -0
- package/dist/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
- package/dist/scripts/test/STABILITY_TEST_README.md +480 -0
- package/dist/scripts/test/agent-worker.js +309 -0
- package/dist/scripts/test/ai-coordination-test.js +650 -0
- package/dist/scripts/test/ai-mesh-coordination-test.js +416 -0
- package/dist/scripts/test/check-links.ts +274 -0
- package/dist/scripts/test/check-performance-regression.ts +168 -0
- package/dist/scripts/test/cli-agent-coordination-test.js +313 -0
- package/dist/scripts/test/coordinator-multilingual-test.js +396 -0
- package/dist/scripts/test/coordinator-transparency-demo.js +585 -0
- package/dist/scripts/test/coverage-report.ts +692 -0
- package/dist/scripts/test/generate-swarm-tests.js +633 -0
- package/dist/scripts/test/integration-test-validation.cjs +253 -0
- package/dist/scripts/test/load-test-swarm.js +576 -0
- package/dist/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
- package/dist/scripts/test/multilingual-hello-world-test.js +390 -0
- package/dist/scripts/test/quick-multilingual-demo.js +464 -0
- package/dist/scripts/test/real-agent-test.js +312 -0
- package/dist/scripts/test/run-phase3-compliance-tests.js +427 -0
- package/dist/scripts/test/run-stability-test-examples.sh +292 -0
- package/dist/scripts/test/stability-results/stability-metrics.jsonl +83 -0
- package/dist/scripts/test/stability-results/stability-test-report.json +128 -0
- package/dist/scripts/test/stability-results/stability-test.log +1827 -0
- package/dist/scripts/test/stability-test-50-agents.js +734 -0
- package/dist/scripts/test/test-batch-tasks.ts +29 -0
- package/dist/scripts/test/test-byzantine-resolution.js +246 -0
- package/dist/scripts/test/test-claude-spawn-options.sh +63 -0
- package/dist/scripts/test/test-cli-wizard.js +331 -0
- package/dist/scripts/test/test-comprehensive.js +401 -0
- package/dist/scripts/test/test-coordination-features.ts +238 -0
- package/dist/scripts/test/test-fallback-systems.js +276 -0
- package/dist/scripts/test/test-init-command.ts +302 -0
- package/dist/scripts/test/test-mcp.ts +251 -0
- package/dist/scripts/test/test-runner.ts +568 -0
- package/dist/scripts/test/test-swarm-integration.sh +92 -0
- package/dist/scripts/test/test-swarm.ts +142 -0
- package/dist/scripts/test/validation-summary.ts +408 -0
- package/dist/scripts/test-cleanup-performance.sh +416 -0
- package/dist/scripts/test-dashboard-auth.cjs +203 -0
- package/dist/scripts/test-docker-deployment.sh +207 -0
- package/dist/scripts/test-npm-package.cjs +167 -0
- package/dist/scripts/test-provider-routing.cjs +226 -0
- package/dist/scripts/test-routing-telemetry.cjs +147 -0
- package/dist/scripts/test-runner.cjs +154 -0
- package/dist/scripts/test-zai-10k.cjs +81 -0
- package/dist/scripts/test-zai-api.cjs +191 -0
- package/dist/scripts/test-zai-diagnostic.cjs +151 -0
- package/dist/scripts/test-zai-final.cjs +128 -0
- package/dist/scripts/test-zai-with-env.cjs +85 -0
- package/dist/scripts/utils/README.md +261 -0
- package/dist/scripts/utils/clean-build-artifacts.sh +94 -0
- package/dist/scripts/utils/cleanup-root.sh +69 -0
- package/dist/scripts/utils/fix-cliffy-imports.js +307 -0
- package/dist/scripts/utils/fix-duplicate-imports.js +114 -0
- package/dist/scripts/utils/fix-error-handling.cjs +70 -0
- package/dist/scripts/utils/fix-import-paths.js +104 -0
- package/dist/scripts/utils/fix-imports.js +116 -0
- package/dist/scripts/utils/fix-shebang.js +78 -0
- package/dist/scripts/utils/fix-test-modules.js +27 -0
- package/dist/scripts/utils/fix-timezone-issue-246.js +200 -0
- package/dist/scripts/utils/fix-ts-comprehensive.py +182 -0
- package/dist/scripts/utils/fix-ts-targeted-batch.js +250 -0
- package/dist/scripts/utils/remove-benchmark-conflicts.sh +140 -0
- package/dist/scripts/utils/simple-test-fixer.js +190 -0
- package/dist/scripts/utils/validate-metrics-structure.cjs +144 -0
- package/dist/scripts/validate-agent-hooks.js +506 -0
- package/dist/scripts/validate-changelog.js +241 -0
- package/dist/scripts/validate-coordination-cli.js +69 -0
- package/dist/scripts/validate-coordination-toggle-integration.cjs +501 -0
- package/dist/scripts/validate-docker-infrastructure.sh +502 -0
- package/dist/scripts/validate-entry-points.js +300 -0
- package/dist/scripts/validate-stage3-performance.ts +377 -0
- package/dist/scripts/validate-template-bundling.js +180 -0
- package/dist/scripts/validation/README.md +33 -0
- package/dist/scripts/validation/acl-security-validation.cjs +214 -0
- package/dist/scripts/validation/acl-security-validation.js +402 -0
- package/dist/scripts/validation/byzantine-verification.js +407 -0
- package/dist/scripts/validation/final-phase-2-consensus.cjs +219 -0
- package/dist/scripts/validation/final-security-validation.js +791 -0
- package/dist/scripts/validation/final-wasm-validation.cjs +840 -0
- package/dist/scripts/validation/integration-test-analysis.js +105 -0
- package/dist/scripts/validation/phase-0-comprehensive-validation.js +474 -0
- package/dist/scripts/validation/phase-0-consensus-report.js +139 -0
- package/dist/scripts/validation/phase-0-final-report.js +112 -0
- package/dist/scripts/validation/phase-0-redis-consensus-report.js +129 -0
- package/dist/scripts/validation/phase-0-validation-improved.js +490 -0
- package/dist/scripts/validation/phase-0-validation-test.js +65 -0
- package/dist/scripts/validation/phase-1-consensus-report.cjs +342 -0
- package/dist/scripts/validation/phase-1-consensus-validation.cjs +551 -0
- package/dist/scripts/validation/phase-1-consensus-validation.js +551 -0
- package/dist/scripts/validation/phase-2-consensus-report.cjs +186 -0
- package/dist/scripts/validation/phase-2-validation.cjs +171 -0
- package/dist/scripts/validation/phase-2-validation.js +171 -0
- package/dist/scripts/validation/phase-4-consensus-report.js +181 -0
- package/dist/scripts/validation/phase-4-final-validation.js +351 -0
- package/dist/scripts/validation/phase-5-consensus-report.cjs +113 -0
- package/dist/scripts/validation/phase-5-consensus-report.js +113 -0
- package/dist/scripts/validation/security-analysis.js +49 -0
- package/dist/scripts/validation/security-validation.js +492 -0
- package/dist/scripts/validation/simple-security-validation.js +464 -0
- package/dist/scripts/verify-installation.js +112 -0
- package/dist/scripts/verify-mcp-server.js +86 -0
- package/dist/scripts/verify-sdk-phase1.cjs +293 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/browser/clipboardService.js +141 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/clipboard/common/clipboardService.js +6 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/commands/common/commands.js +80 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configuration.js +86 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationModels.js +554 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurationRegistry.js +317 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/configuration/common/configurations.js +41 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/browser/contextKeyService.js +432 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkey.js +1547 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextkey/common/contextkeys.js +18 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuHandler.js +124 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextMenuService.js +101 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextView.js +7 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/contextview/browser/contextViewService.js +72 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dialogs/common/dialogs.js +2 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/dnd/browser/dnd.js +36 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/editor/common/editor.js +17 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/environment/common/environment.js +2 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/extensions/common/extensions.js +47 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/files/common/files.js +9 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +105 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/descriptors.js +11 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/instantiation/common/extensions.js +15 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/abstractKeybindingService.js +277 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/keybinding/common/baseResolvedKeybinding.js +53 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +354 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/browser/defaultStyles.js +162 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/esm/vs/platform/theme/common/colorRegistry.js +482 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/abap/abap.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/apex/apex.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/azcli/azcli.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bat/bat.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/bicep/bicep.js +11 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cameligo/cameligo.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/clojure/clojure.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/coffee/coffee.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cpp/cpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csharp/csharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/csp/csp.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/css/css.js +12 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/cypher/cypher.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dart/dart.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/dockerfile/dockerfile.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/ecl/ecl.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/elixir/elixir.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/basic-languages/flow9/flow9.js +10 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.js +745 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.de.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.es.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.fr.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.it.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ja.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ko.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.ru.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-cn.js +31 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/editor/editor.main.nls.zh-tw.js +29 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssMode.js +13 -0
- package/dist/src/web/frontend/node_modules/.monaco-editor-MndU045b/min/vs/language/css/cssWorker.js +81 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/cli.js +64 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/example.js +36 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/index.js +205 -0
- package/dist/src/web/frontend/node_modules/.multicast-dns-iKseM9bB/test.js +260 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.browser.js +34 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.js +35 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/async/index.native.js +26 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.browser.js +34 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/index.js +45 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/nanoid.js +1 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/non-secure/index.js +21 -0
- package/dist/src/web/frontend/node_modules/.nanoid-PAMEV9Hd/url-alphabet/index.js +3 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/bin/nodemon.js +16 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/index.js +49 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/cli/parse.js +230 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/command.js +43 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/defaults.js +34 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/exec.js +234 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/index.js +93 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/config/load.js +225 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/help/index.js +27 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/index.js +4 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/match.js +287 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/run.js +562 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/signals.js +34 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/monitor/watch.js +244 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/nodemon.js +317 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/add.js +89 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/index.js +53 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/rules/parse.js +43 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/spawn.js +74 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/bus.js +44 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/clone.js +40 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/colour.js +26 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/index.js +103 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/log.js +82 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/utils/merge.js +47 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/lib/version.js +100 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/brace-expansion/index.js +201 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/has-flag/index.js +8 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/minimatch/minimatch.js +947 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/browser.js +5 -0
- package/dist/src/web/frontend/node_modules/.nodemon-QcvNKhKT/node_modules/supports-color/index.js +131 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/bin/pidtree.js +128 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/index.js +49 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/bin.js +61 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/get.js +45 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/pidtree.js +104 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/ps.js +47 -0
- package/dist/src/web/frontend/node_modules/.pidtree-icfat3SQ/lib/wmic.js +49 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/doc.js +1270 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/acorn.js +15 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/angular.js +2 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/babel.js +15 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/estree.js +36 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/flow.js +19 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/glimmer.js +29 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/graphql.js +29 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/html.js +22 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/markdown.js +63 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/meriyah.js +4 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/postcss.js +54 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/typescript.js +20 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/plugins/yaml.js +160 -0
- package/dist/src/web/frontend/node_modules/.prettier-ApZm3b7s/standalone.js +34 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/bin/react-scripts.js +58 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/env.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/getHttpsConfig.js +74 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/babelTransform.js +37 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/cssTransform.js +22 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/jest/fileTransform.js +40 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/modules.js +142 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/paths.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack/persistentCache/createEnvironmentHash.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpack.config.js +796 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/config/webpackDevServer.config.js +135 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/build.js +225 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/eject.js +340 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/init.js +416 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/start.js +162 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/test.js +129 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/createJestConfig.js +152 -0
- package/dist/src/web/frontend/node_modules/.react-scripts-OTANyoRb/scripts/utils/verifyTypeScriptSetup.js +298 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/.eslintrc.js +32 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/create-element.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-languages/create-language-async-loader.js +33 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/async-syntax-highlighter.js +165 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/checkForListedLanguage.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/create-element.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/default-highlight.js +14 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/1c.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/abnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/accesslog.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/actionscript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ada.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/angelscript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/apache.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/applescript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arcade.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/arduino.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/armasm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/asciidoc.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/aspectj.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autohotkey.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/autoit.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/avrasm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/awk.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/axapta.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bash.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/basic.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/bnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/brainfuck.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c-like.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/c.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cal.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/capnproto.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ceylon.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clean.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure-repl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/clojure.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cmake.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coffeescript.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/coq.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cos.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cpp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crmsh.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/crystal.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/cs.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csharp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/csp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/css.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/d.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dart.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/delphi.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/diff.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/django.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dns.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dockerfile.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dos.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dsconfig.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dts.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/dust.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/ebnf.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elixir.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/elm.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erb.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang-repl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/erlang.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/excel.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fix.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/flix.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fortran.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/fsharp.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gams.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gauss.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gcode.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gherkin.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/glsl.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gml.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/go.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/golo.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/hljs/gradle.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abap.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/abnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/actionscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ada.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/agda.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/al.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/antlr4.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apacheconf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apex.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/apl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/applescript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aql.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arduino.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arff.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/armasm.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/arturo.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asciidoc.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asm6502.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/asmatmel.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/aspnet.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autohotkey.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/autoit.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avisynth.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/avro-idl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/awk.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bash.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/basic.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/batch.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbcode.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bbj.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bicep.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/birb.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bison.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bqn.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brainfuck.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/brightscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bro.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/bsl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/c.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cfscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/chaiscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cil.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkc.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cilkcpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clike.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/clojure.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cmake.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cobol.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coffeescript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/concurnas.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cooklang.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/coq.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/core.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cpp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/crystal.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cshtml.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css-extras.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/css.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/csv.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cue.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/cypher.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/d.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dart.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dataweave.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dax.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dhall.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/diff.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/django.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dns-zone-file.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/docker.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/dot.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ebnf.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/editorconfig.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/eiffel.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ejs.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elixir.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/elm.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erb.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/erlang.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/etlua.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/excel-formula.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/factor.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/false.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/firestore-security-rules.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/flow.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fortran.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/fsharp.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/ftl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gap.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gcode.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gdscript.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gedcom.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gettext.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gherkin.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/git.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/glsl.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gml.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gn.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go-module.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/go.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/gradle.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/languages/prism/graphql.js +10 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/a11y-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/agate.js +105 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/an-old-hope.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/androidstudio.js +87 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arduino-light.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/arta.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/ascetic.js +73 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/atom-one-light.js +120 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/brown-paper.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/codepen-embed.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/color-brewer.js +105 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darcula.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dark.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/darkula.js +7 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/default-style.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/docco.js +115 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/dracula.js +97 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/far.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/foundation.js +104 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github-gist.js +101 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/github.js +122 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gml.js +118 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/googlecode.js +119 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-dark.js +137 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/hljs/gradient-light.js +137 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-dark.js +152 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/a11y-one-light.js +506 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/atom-dark.js +159 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/cb.js +167 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-cold.js +392 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coldark-dark.js +392 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/coy.js +255 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/darcula.js +207 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dark.js +160 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/dracula.js +160 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-dark.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-earth.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-forest.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-light.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-sea.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/duotone-space.js +224 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/funky.js +167 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/cjs/styles/prism/ghcolors.js +184 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-languages/create-language-async-loader.js +26 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/async-syntax-highlighter.js +158 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/checkForListedLanguage.js +4 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/create-element.js +107 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/default-highlight.js +7 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/1c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/accesslog.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/angelscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/apache.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arcade.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/armasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/aspectj.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/avrasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/awk.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/axapta.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c-like.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/capnproto.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ceylon.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clean.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crmsh.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/cs.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/delphi.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dns.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dockerfile.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dsconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dts.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/dust.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/excel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/flix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gams.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gauss.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/golo.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/hljs/gradle.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abap.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/abnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/actionscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ada.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/agda.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/al.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/antlr4.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apacheconf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apex.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/apl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/applescript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aql.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arduino.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arff.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/armasm.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/arturo.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asciidoc.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asm6502.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/asmatmel.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/aspnet.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autohotkey.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/autoit.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avisynth.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/avro-idl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/awk.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bash.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/basic.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/batch.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbcode.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bbj.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bicep.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/birb.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bison.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bqn.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brainfuck.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/brightscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bro.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/bsl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/c.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cfscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/chaiscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cil.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkc.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cilkcpp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clike.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/clojure.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cmake.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cobol.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coffeescript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/concurnas.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cooklang.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/coq.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/core.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cpp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/crystal.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csharp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cshtml.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css-extras.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/css.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/csv.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cue.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/cypher.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/d.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dart.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dataweave.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dax.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dhall.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/diff.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/django.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dns-zone-file.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/docker.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/dot.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ebnf.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/editorconfig.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/eiffel.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ejs.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elixir.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/elm.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erb.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/erlang.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/etlua.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/excel-formula.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/factor.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/false.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/firestore-security-rules.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/flow.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fortran.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/fsharp.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/ftl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gap.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gcode.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gdscript.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gedcom.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gettext.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gherkin.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/git.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/glsl.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gml.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gn.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go-module.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/go.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/gradle.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/languages/prism/graphql.js +3 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/a11y-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/agate.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/an-old-hope.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/androidstudio.js +81 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arduino-light.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/arta.js +100 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/ascetic.js +67 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-dark.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/atom-one-light.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/brown-paper.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/codepen-embed.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/color-brewer.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darcula.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dark.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/darkula.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/default-style.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/docco.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/dracula.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/far.js +103 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/foundation.js +98 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github-gist.js +95 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/github.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gml.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/googlecode.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-dark.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/hljs/gradient-light.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-dark.js +146 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/a11y-one-light.js +500 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/atom-dark.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/cb.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-cold.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coldark-dark.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy-without-shadows.js +182 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/coy.js +249 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/darcula.js +201 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dark.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/dracula.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-dark.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-earth.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-forest.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-light.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-sea.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/duotone-space.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/funky.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/dist/esm/styles/prism/ghcolors.js +178 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-highlightjs.js +127 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-languages-refractor.js +130 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-highlightjs.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/scripts/build-stylesheets-refractor.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-languages/create-language-async-loader.js +6 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/async-syntax-highlighter.js +155 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/checkForListedLanguage.js +4 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/create-element.js +212 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/default-highlight.js +9 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/1c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/accesslog.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/angelscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/apache.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arcade.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/armasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/aspectj.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/avrasm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/awk.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/axapta.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c-like.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/capnproto.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ceylon.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clean.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crmsh.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/delphi.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dns.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dockerfile.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dos.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dsconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dts.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/dust.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang-repl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/excel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/flix.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gams.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gauss.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/golo.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/hljs/gradle.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abap.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/abnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/actionscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ada.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/agda.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/al.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/antlr4.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apacheconf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apex.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/apl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/applescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aql.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arduino.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/arff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asciidoc.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asm6502.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/asmatmel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/aspnet.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autohotkey.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/autoit.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avisynth.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/avro-idl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bash.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/basic.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/batch.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bbcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bicep.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/birb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bison.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brainfuck.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/brightscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bro.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/bsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/c.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cfscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/chaiscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cil.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clike.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/clojure.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cmake.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cobol.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coffeescript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/concurnas.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/coq.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/core.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cpp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/crystal.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cshtml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css-extras.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/css.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/csv.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/cypher.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/d.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dart.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dataweave.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dax.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dhall.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/diff.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/django.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dns-zone-file.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/docker.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/dot.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ebnf.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/editorconfig.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/eiffel.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ejs.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elixir.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/elm.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erb.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/erlang.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/etlua.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/excel-formula.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/factor.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/false.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/firestore-security-rules.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/flow.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fortran.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/fsharp.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/ftl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gap.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gcode.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gdscript.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gedcom.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gherkin.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/git.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/glsl.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gml.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/gn.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go-module.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/languages/prism/go.js +2 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-dark.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/a11y-light.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/agate.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/an-old-hope.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/androidstudio.js +81 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arduino-light.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/arta.js +100 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/ascetic.js +67 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-cave-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-dune-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-estuary-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-forest-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-heath-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-lakeside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-plateau-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-dark.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-savanna-light.js +102 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-seaside-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-dark.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/atom-one-light.js +114 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/brown-paper.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/codepen-embed.js +96 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/color-brewer.js +99 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darcula.js +106 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dark.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/darkula.js +1 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/default-style.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/docco.js +109 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/dracula.js +91 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/far.js +103 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/foundation.js +98 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github-gist.js +95 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/github.js +116 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gml.js +112 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/googlecode.js +113 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-dark.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/hljs/gradient-light.js +131 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-dark.js +146 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/a11y-one-light.js +516 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/atom-dark.js +153 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/cb.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-cold.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coldark-dark.js +386 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy-without-shadows.js +182 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/coy.js +249 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/darcula.js +201 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dark.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/dracula.js +154 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-dark.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-earth.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-forest.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-light.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-sea.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/duotone-space.js +218 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/funky.js +161 -0
- package/dist/src/web/frontend/node_modules/.react-syntax-highlighter-jZ6XvsrX/src/styles/prism/ghcolors.js +178 -0
- package/dist/src/web/frontend/node_modules/.regjsparser-Rq8jDSa8/parser.js +1823 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/async.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/async.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/example/sync.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/index.js +6 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/async.js +329 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/caller.js +8 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/core.js +12 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/homedir.js +24 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/is-core.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/node-modules-paths.js +42 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/normalize-options.js +10 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/lib/sync.js +208 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/sync.js +3 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/core.js +88 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/abc/index.js +2 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/dotdot.js +29 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/faulty_basedir.js +29 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter.js +34 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/filter_sync.js +33 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths.js +127 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/home_paths_sync.js +114 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock.js +315 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/mock_sync.js +214 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/xmodules/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/ymodules/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir/zmodules/bbb/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/module_dir.js +56 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node-modules-paths.js +143 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/x/ccc/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/bbb/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path/y/ccc/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/node_path.js +70 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/nonstring.js +9 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter/deep_ref/main.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/pathfilter.js +75 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/aaa.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb/main.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence/bbb.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/precedence.js +23 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/doom.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/baz/quux.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/a.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/browser_field/b.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_main/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/dot_slash_main/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/false_main/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/foo.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/incorrect_main/index.js +2 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/mug.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/lib/other-lib.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/other_path/root.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/quux/foo/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo/index.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/same_names/foo.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/symlinked/package/bar.js +1 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver/without_basedir/main.js +5 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver.js +597 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/resolver_sync.js +730 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core/node_modules/util/index.js +0 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/shadowed_core.js +54 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/subdirs.js +13 -0
- package/dist/src/web/frontend/node_modules/.resolve-RLsCexwc/test/symlinks.js +176 -0
- package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/bin.js +68 -0
- package/dist/src/web/frontend/node_modules/.rimraf-zmuTtFd7/rimraf.js +360 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.browser.js +10 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/rollup.js +16 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/rollup.js +23954 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/es/shared/watch.js +5003 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/loadConfigFile.js +27 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.browser.js +11 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/rollup.js +28 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/index.js +4568 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/loadConfigFile.js +670 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/mergeOptions.js +180 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/rollup.js +23992 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch-cli.js +511 -0
- package/dist/src/web/frontend/node_modules/.rollup-hZbq6wcw/dist/shared/watch.js +307 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.js +6849 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/bundles/rxjs.umd.min.js +195 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/ajax/index.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/fetch/index.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/index.js +358 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AnyCatcher.js +3 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/AsyncSubject.js +56 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/BehaviorSubject.js +53 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Notification.js +76 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/NotificationFactories.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Observable.js +105 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/Operator.js +3 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/AjaxResponse.js +32 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/ajax.js +253 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/errors.js +33 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/ajax/getXHRResponse.js +30 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/config.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/firstValueFrom.js +28 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/lastValueFrom.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/ConnectableObservable.js +80 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallback.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindCallbackInternals.js +103 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/bindNodeCallback.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/combineLatest.js +75 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/concat.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/connectable.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/defer.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/animationFrames.js +38 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/dom/fetch.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/empty.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/forkJoin.js +51 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/from.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEvent.js +78 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromEventPattern.js +24 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/fromSubscribable.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/generate.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/iif.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/innerFrom.js +206 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/interval.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/merge.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/never.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/of.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/onErrorResumeNext.js +39 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/pairs.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/partition.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/race.js +37 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/range.js +39 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/throwError.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/observable/timer.js +40 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/OperatorSubscriber.js +79 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/audit.js +41 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/auditTime.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/buffer.js +26 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferCount.js +85 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferTime.js +91 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferToggle.js +59 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/bufferWhen.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/catchError.js +31 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineAll.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatest.js +44 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestAll.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/combineLatestWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concat.js +40 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatAll.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMap.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatMapTo.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/concatWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/connect.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/count.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounce.js +38 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/debounceTime.js +48 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/defaultIfEmpty.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delay.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/delayWhen.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/dematerialize.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinct.js +22 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilChanged.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/distinctUntilKeyChanged.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/elementAt.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/endWith.js +35 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/every.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaust.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustAll.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/exhaustMap.js +33 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/expand.js +14 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/filter.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/finalize.js +16 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/find.js +27 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/findIndex.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/first.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/flatMap.js +6 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/groupBy.js +67 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/ignoreElements.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/isEmpty.js +18 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/joinAllInternals.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/last.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/map.js +15 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mapTo.js +9 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/materialize.js +21 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/max.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/merge.js +41 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeAll.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeInternals.js +65 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMap.js +20 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeMapTo.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeScan.js +16 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/mergeWith.js +34 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/min.js +10 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/multicast.js +17 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/observeOn.js +14 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/onErrorResumeNextWith.js +37 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pairwise.js +19 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/partition.js +12 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/pluck.js +29 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publish.js +11 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishBehavior.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishLast.js +13 -0
- package/dist/src/web/frontend/node_modules/.rxjs-i8W7PyKW/dist/cjs/internal/operators/publishReplay.js +15 -0
- package/package.json +11 -9
- package/scripts/.claude-flow/metrics/agent-metrics.json +1 -0
- package/scripts/.claude-flow/metrics/performance.json +9 -0
- package/scripts/.claude-flow/metrics/task-metrics.json +10 -0
- package/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
- package/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
- package/scripts/CLEANUP_QUICK_START.md +268 -0
- package/scripts/CLEANUP_TEST_RESULTS.md +205 -0
- package/scripts/README.md +339 -0
- package/scripts/ace-query.sh +384 -0
- package/scripts/agent-token-analysis.js +430 -0
- package/scripts/auto-setup.js +332 -0
- package/scripts/build/README.md +167 -0
- package/scripts/build/build-config.js +27 -0
- package/scripts/build/build-prompt-copier.sh +30 -0
- package/scripts/build/performance-monitor.js +869 -0
- package/scripts/build/prepare-publish.js +150 -0
- package/scripts/build/typescript-fixer.js +621 -0
- package/scripts/build/unified-builder.sh +428 -0
- package/scripts/build/update-bin-version.js +32 -0
- package/scripts/build/validate-agents.js +238 -0
- package/scripts/build-index.js +43 -0
- package/scripts/build-orchestrator.js +320 -0
- package/scripts/check-routing-stats.cjs +122 -0
- package/scripts/ci-validation.js +375 -0
- package/scripts/cleanup-blocking-coordination.sh +420 -0
- package/scripts/cleanup-idle-sessions.sh +59 -0
- package/scripts/collect-build-metrics.js +65 -0
- package/scripts/demo/README.md +79 -0
- package/scripts/demo/autoscaling-demo-simplified.js +963 -0
- package/scripts/demo/comprehensive-dashboard-test.js +693 -0
- package/scripts/demo/confidence-log.js +87 -0
- package/scripts/demo/confidence-report.js +82 -0
- package/scripts/demo/demo-multi-swarm-coordination.js +325 -0
- package/scripts/demo/demo-production-deployment.js +399 -0
- package/scripts/demo/demo-visualization-system.js +149 -0
- package/scripts/demo/performance-analysis.cjs +71 -0
- package/scripts/demo/performance-analysis.js +71 -0
- package/scripts/demo/test-autoscaling-demo.js +314 -0
- package/scripts/dependency-optimizer.js +349 -0
- package/scripts/dependency-security-assessment.js +331 -0
- package/scripts/deploy-sdk.sh +176 -0
- package/scripts/deployment-readiness-report.json +179 -0
- package/scripts/dev/README.md +264 -0
- package/scripts/dev/claude-flow-wrapper.sh +35 -0
- package/scripts/dev/claude-monitor.py +419 -0
- package/scripts/dev/claude-sparc.sh +562 -0
- package/scripts/dev/claude-wrapper.sh +17 -0
- package/scripts/dev/demo-phase3-compliance.js +172 -0
- package/scripts/dev/demo-task-system.ts +224 -0
- package/scripts/dev/deployment-validator.js +315 -0
- package/scripts/dev/spawn-claude-terminal.sh +32 -0
- package/scripts/dev/start-portal.sh +506 -0
- package/scripts/dev/start-web-ui.js +15 -0
- package/scripts/dev/stop-portal.sh +311 -0
- package/scripts/dev/validate-examples.ts +288 -0
- package/scripts/dev/validate-phase2.cjs +451 -0
- package/scripts/dev/validate-phase2.js +785 -0
- package/scripts/dev/validate-phase3.cjs +208 -0
- package/scripts/dev/validate-security-remediation.js +1 -0
- package/scripts/ecosystem.config.cjs +90 -0
- package/scripts/fix-js-extensions.js +167 -0
- package/scripts/generate-basic-types.js +73 -0
- package/scripts/generate-changelog.js +318 -0
- package/scripts/git-hooks/pre-commit.sh +143 -0
- package/scripts/health-checks.js +634 -0
- package/scripts/hook-wrapper.sh +54 -0
- package/scripts/install/README.md +375 -0
- package/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
- package/scripts/install/check-prerequisites.js +303 -0
- package/scripts/install/config-wizard.js +606 -0
- package/scripts/install/dependency-checker.js +385 -0
- package/scripts/install/health-check.js +765 -0
- package/scripts/install/install.js +256 -0
- package/scripts/install/installation-benchmark.js +461 -0
- package/scripts/install/quick-install.js +720 -0
- package/scripts/install/quick-start-wizard.js +295 -0
- package/scripts/install/redis-cli.js +289 -0
- package/scripts/install/redis-install-guides.md +407 -0
- package/scripts/install/redis-setup.js +559 -0
- package/scripts/install/redis-test.js +278 -0
- package/scripts/install/service-manager.js +672 -0
- package/scripts/install/setup.js +832 -0
- package/scripts/install/uninstall.js +526 -0
- package/scripts/install/update.js +461 -0
- package/scripts/install-pre-commit-hook.sh +127 -0
- package/scripts/legacy/README.md +272 -0
- package/scripts/legacy/batch-fix-ts.sh +54 -0
- package/scripts/legacy/build-migration.sh +105 -0
- package/scripts/legacy/build-monitor.js +209 -0
- package/scripts/legacy/build-with-filter.sh +84 -0
- package/scripts/legacy/build-workaround.sh +71 -0
- package/scripts/legacy/fix-ts-advanced.js +358 -0
- package/scripts/legacy/fix-ts-final.sh +50 -0
- package/scripts/legacy/fix-ts-targeted.sh +49 -0
- package/scripts/legacy/fix-typescript-errors.js +305 -0
- package/scripts/legacy/force-build.sh +63 -0
- package/scripts/legacy/optimize-performance.js +400 -0
- package/scripts/legacy/performance-monitor.js +263 -0
- package/scripts/legacy/performance-monitoring.js +532 -0
- package/scripts/legacy/performance-test-runner.js +645 -0
- package/scripts/legacy/quick-fix-ts.js +281 -0
- package/scripts/legacy/safe-build.sh +63 -0
- package/scripts/memory-monitor-coordinator.js +322 -0
- package/scripts/migrate-to-sdk.sh +520 -0
- package/scripts/migration/QUICK-START.md +189 -0
- package/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
- package/scripts/migration/README.md +464 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
- package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
- package/scripts/migration/UPDATE-PATHS-README.md +464 -0
- package/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
- package/scripts/migration/example-patterns.json +19 -0
- package/scripts/migration/install-arm64.js +78 -0
- package/scripts/migration/install.js +83 -0
- package/scripts/migration/migrate-hooks.js +173 -0
- package/scripts/migration/migration-examples.ts +318 -0
- package/scripts/migration/reorganize-workspace.js +504 -0
- package/scripts/migration/test-update-paths.js +359 -0
- package/scripts/migration/update-paths.js +664 -0
- package/scripts/migration/validate-migration.js +647 -0
- package/scripts/monitor-loop.sh +65 -0
- package/scripts/monitor-memory.sh +47 -0
- package/scripts/monitor-migration.js +339 -0
- package/scripts/monitor.py +43 -0
- package/scripts/monitoring/README.md +178 -0
- package/scripts/monitoring/alert-monitor.sh +220 -0
- package/scripts/monitoring/analyze-resources.sh +199 -0
- package/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
- package/scripts/monitoring/dynamic-monitor.sh +85 -0
- package/scripts/monitoring/launch-stability-test.sh +184 -0
- package/scripts/monitoring/monitor-test.sh +93 -0
- package/scripts/monitoring/pre-test-validation.sh +208 -0
- package/scripts/monitoring/quick-test-alerting.sh +118 -0
- package/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
- package/scripts/monitoring/rate-limiting-monitor.sh +380 -0
- package/scripts/monitoring/resource-monitor.sh +126 -0
- package/scripts/monitoring/stability-monitor.js +429 -0
- package/scripts/monitoring/test-monitor-quick.sh +54 -0
- package/scripts/monitoring/view-alerts.sh +307 -0
- package/scripts/npm-metrics-collector.js +482 -0
- package/scripts/npm-package-validation.cjs +299 -0
- package/scripts/optimization/build-optimizer.js +438 -0
- package/scripts/optimization/config-validator.js +761 -0
- package/scripts/optimization/test-optimization.js +432 -0
- package/scripts/optimization/unified-activation.js +839 -0
- package/scripts/optimize-package-swarm.js +54 -0
- package/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
- package/scripts/performance/sqlite-enhanced-activation.sh +583 -0
- package/scripts/performance/test-enhanced-backend.sh +504 -0
- package/scripts/performance-monitor.js +644 -0
- package/scripts/performance-test-runner.js +698 -0
- package/scripts/post-deployment-monitoring.js +350 -0
- package/scripts/post-edit-pipeline.js +2091 -0
- package/scripts/post-install-claude-md.js +78 -0
- package/scripts/postinstall.js +79 -0
- package/scripts/pre-publish-validation.cjs +212 -0
- package/scripts/pre-publish-validation.js +429 -0
- package/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
- package/scripts/release-announcement.js +425 -0
- package/scripts/release-notification.js +248 -0
- package/scripts/release-rollback.js +376 -0
- package/scripts/release-validation.js +460 -0
- package/scripts/rollback-sdk.sh +66 -0
- package/scripts/run-production-validation.ts +590 -0
- package/scripts/run-stability-validation.sh +687 -0
- package/scripts/security/README.md +339 -0
- package/scripts/security/deployment-validation.cjs +279 -0
- package/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
- package/scripts/security/install-git-hooks.sh +132 -0
- package/scripts/security/install-git-secrets.sh +295 -0
- package/scripts/security/rotate-api-keys.js +469 -0
- package/scripts/security/ruv-swarm-safe.js +74 -0
- package/scripts/security/security-audit.cjs +538 -0
- package/scripts/security/setup-redis-auth.sh +397 -0
- package/scripts/security/validate-envelope-encryption.cjs +340 -0
- package/scripts/security-scan.js +492 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
- package/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
- package/scripts/switch-api.sh +158 -0
- package/scripts/sync-agents.js +290 -0
- package/scripts/test/50-agent-test.js +625 -0
- package/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
- package/scripts/test/README.md +236 -0
- package/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
- package/scripts/test/STABILITY_TEST_README.md +480 -0
- package/scripts/test/agent-worker.js +309 -0
- package/scripts/test/ai-coordination-test.js +650 -0
- package/scripts/test/ai-mesh-coordination-test.js +416 -0
- package/scripts/test/check-links.ts +274 -0
- package/scripts/test/check-performance-regression.ts +168 -0
- package/scripts/test/cli-agent-coordination-test.js +313 -0
- package/scripts/test/coordinator-multilingual-test.js +396 -0
- package/scripts/test/coordinator-transparency-demo.js +585 -0
- package/scripts/test/coverage-report.ts +692 -0
- package/scripts/test/generate-swarm-tests.js +633 -0
- package/scripts/test/integration-test-validation.cjs +253 -0
- package/scripts/test/load-test-swarm.js +576 -0
- package/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
- package/scripts/test/multilingual-hello-world-test.js +390 -0
- package/scripts/test/quick-multilingual-demo.js +464 -0
- package/scripts/test/real-agent-test.js +312 -0
- package/scripts/test/run-phase3-compliance-tests.js +427 -0
- package/scripts/test/run-stability-test-examples.sh +292 -0
- package/scripts/test/stability-results/stability-metrics.jsonl +83 -0
- package/scripts/test/stability-results/stability-test-report.json +128 -0
- package/scripts/test/stability-results/stability-test.log +1827 -0
- package/scripts/test/stability-test-50-agents.js +734 -0
- package/scripts/test/test-batch-tasks.ts +29 -0
- package/scripts/test/test-byzantine-resolution.js +246 -0
- package/scripts/test/test-claude-spawn-options.sh +63 -0
- package/scripts/test/test-cli-wizard.js +331 -0
- package/scripts/test/test-comprehensive.js +401 -0
- package/scripts/test/test-coordination-features.ts +238 -0
- package/scripts/test/test-fallback-systems.js +276 -0
- package/scripts/test/test-init-command.ts +302 -0
- package/scripts/test/test-mcp.ts +251 -0
- package/scripts/test/test-runner.ts +568 -0
- package/scripts/test/test-swarm-integration.sh +92 -0
- package/scripts/test/test-swarm.ts +142 -0
- package/scripts/test/validation-summary.ts +408 -0
- package/scripts/test-cleanup-performance.sh +416 -0
- package/scripts/test-dashboard-auth.cjs +203 -0
- package/scripts/test-docker-deployment.sh +207 -0
- package/scripts/test-npm-package.cjs +167 -0
- package/scripts/test-provider-routing.cjs +226 -0
- package/scripts/test-routing-telemetry.cjs +147 -0
- package/scripts/test-runner.cjs +154 -0
- package/scripts/test-zai-10k.cjs +81 -0
- package/scripts/test-zai-api.cjs +191 -0
- package/scripts/test-zai-diagnostic.cjs +151 -0
- package/scripts/test-zai-final.cjs +128 -0
- package/scripts/test-zai-with-env.cjs +85 -0
- package/scripts/utils/README.md +261 -0
- package/scripts/utils/clean-build-artifacts.sh +94 -0
- package/scripts/utils/cleanup-root.sh +69 -0
- package/scripts/utils/fix-cliffy-imports.js +307 -0
- package/scripts/utils/fix-duplicate-imports.js +114 -0
- package/scripts/utils/fix-error-handling.cjs +70 -0
- package/scripts/utils/fix-import-paths.js +104 -0
- package/scripts/utils/fix-imports.js +116 -0
- package/scripts/utils/fix-shebang.js +78 -0
- package/scripts/utils/fix-test-modules.js +27 -0
- package/scripts/utils/fix-timezone-issue-246.js +200 -0
- package/scripts/utils/fix-ts-comprehensive.py +182 -0
- package/scripts/utils/fix-ts-targeted-batch.js +250 -0
- package/scripts/utils/remove-benchmark-conflicts.sh +140 -0
- package/scripts/utils/simple-test-fixer.js +190 -0
- package/scripts/utils/validate-metrics-structure.cjs +144 -0
- package/scripts/validate-agent-hooks.js +506 -0
- package/scripts/validate-changelog.js +241 -0
- package/scripts/validate-coordination-cli.js +69 -0
- package/scripts/validate-coordination-toggle-integration.cjs +501 -0
- package/scripts/validate-docker-infrastructure.sh +502 -0
- package/scripts/validate-entry-points.js +300 -0
- package/scripts/validate-stage3-performance.ts +377 -0
- package/scripts/validate-template-bundling.js +180 -0
- package/scripts/validation/README.md +33 -0
- package/scripts/validation/acl-security-validation.cjs +214 -0
- package/scripts/validation/acl-security-validation.js +402 -0
- package/scripts/validation/byzantine-verification.js +407 -0
- package/scripts/validation/final-phase-2-consensus.cjs +219 -0
- package/scripts/validation/final-security-validation.js +791 -0
- package/scripts/validation/final-wasm-validation.cjs +840 -0
- package/scripts/validation/integration-test-analysis.js +105 -0
- package/scripts/validation/phase-0-comprehensive-validation.js +474 -0
- package/scripts/validation/phase-0-consensus-report.js +139 -0
- package/scripts/validation/phase-0-final-report.js +112 -0
- package/scripts/validation/phase-0-redis-consensus-report.js +129 -0
- package/scripts/validation/phase-0-validation-improved.js +490 -0
- package/scripts/validation/phase-0-validation-test.js +65 -0
- package/scripts/validation/phase-1-consensus-report.cjs +342 -0
- package/scripts/validation/phase-1-consensus-validation.cjs +551 -0
- package/scripts/validation/phase-1-consensus-validation.js +551 -0
- package/scripts/validation/phase-2-consensus-report.cjs +186 -0
- package/scripts/validation/phase-2-validation.cjs +171 -0
- package/scripts/validation/phase-2-validation.js +171 -0
- package/scripts/validation/phase-4-consensus-report.js +181 -0
- package/scripts/validation/phase-4-final-validation.js +351 -0
- package/scripts/validation/phase-5-consensus-report.cjs +113 -0
- package/scripts/validation/phase-5-consensus-report.js +113 -0
- package/scripts/validation/security-analysis.js +49 -0
- package/scripts/validation/security-validation.js +492 -0
- package/scripts/validation/simple-security-validation.js +464 -0
- package/scripts/verify-installation.js +112 -0
- package/scripts/verify-mcp-server.js +86 -0
- package/scripts/verify-sdk-phase1.cjs +293 -0
|
@@ -0,0 +1,740 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Mesh Coordination Zero-Overlap Test
|
|
5
|
+
*
|
|
6
|
+
* This test creates 7 coordinator agents in a mesh topology that must:
|
|
7
|
+
* 1. Each coordinator chooses 1 of 7 programming languages
|
|
8
|
+
* 2. Each coordinator assigns 10 verbal languages to sub-agents
|
|
9
|
+
* 3. Ensure all 70 combinations (7x10) are covered with zero overlap
|
|
10
|
+
* 4. Demonstrate real-time mesh coordination and conflict resolution
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import { spawn } from 'child_process';
|
|
14
|
+
import fs from 'fs/promises';
|
|
15
|
+
import path from 'path';
|
|
16
|
+
import { fileURLToPath } from 'url';
|
|
17
|
+
|
|
18
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
19
|
+
const __dirname = path.dirname(__filename);
|
|
20
|
+
|
|
21
|
+
class MeshCoordinationZeroOverlapTest {
|
|
22
|
+
constructor() {
|
|
23
|
+
this.outputDir = './mesh-coordination-results';
|
|
24
|
+
this.testStartTime = Date.now();
|
|
25
|
+
|
|
26
|
+
// Language combinations
|
|
27
|
+
this.programmingLanguages = [
|
|
28
|
+
'Python', 'JavaScript', 'Java', 'C++', 'Go', 'Rust', 'TypeScript'
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
this.verbalLanguages = [
|
|
32
|
+
'Spanish', 'French', 'German', 'Italian', 'Portuguese',
|
|
33
|
+
'Japanese', 'Russian', 'Chinese', 'Arabic', 'Hindi'
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
this.coordinators = new Map();
|
|
37
|
+
this.assignedCombinations = new Set();
|
|
38
|
+
this.coordinationLog = [];
|
|
39
|
+
this.meshCommunications = [];
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
async start() {
|
|
43
|
+
console.log('š Starting Mesh Coordination Zero-Overlap Test');
|
|
44
|
+
console.log(' Programming Languages: 7');
|
|
45
|
+
console.log(' Verbal Languages: 10');
|
|
46
|
+
console.log(' Target Combinations: 70 (7x10)');
|
|
47
|
+
console.log(' Requirement: Zero overlap\n');
|
|
48
|
+
|
|
49
|
+
await fs.mkdir(this.outputDir, { recursive: true });
|
|
50
|
+
|
|
51
|
+
// Step 1: Initialize mesh topology
|
|
52
|
+
await this.initializeMeshTopology();
|
|
53
|
+
|
|
54
|
+
// Step 2: Launch 7 coordinators in mesh
|
|
55
|
+
await this.launchCoordinatorsInMesh();
|
|
56
|
+
|
|
57
|
+
// Step 3: Monitor coordination and conflict resolution
|
|
58
|
+
await this.monitorMeshCoordination();
|
|
59
|
+
|
|
60
|
+
// Step 4: Validate zero-overlap requirement
|
|
61
|
+
await this.validateZeroOverlap();
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
async initializeMeshTopology() {
|
|
65
|
+
console.log('š Step 1: Initializing Mesh Topology');
|
|
66
|
+
|
|
67
|
+
const meshConfig = {
|
|
68
|
+
topology: 'mesh',
|
|
69
|
+
nodes: 7,
|
|
70
|
+
maxAgents: 7,
|
|
71
|
+
strategy: 'distributed',
|
|
72
|
+
communicationProtocol: 'peer-to-peer',
|
|
73
|
+
conflictResolution: 'distributed-consensus',
|
|
74
|
+
synchronization: 'event-driven'
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
this.logCoordination('MESH_INITIALIZATION', {
|
|
78
|
+
timestamp: Date.now(),
|
|
79
|
+
config: meshConfig,
|
|
80
|
+
expectedNodes: 7,
|
|
81
|
+
expectedConnections: 21, // n*(n-1)/2 for mesh
|
|
82
|
+
coordinationStrategy: 'Each coordinator will communicate with all others to avoid overlap'
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
console.log('ā
Mesh topology initialized');
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
async launchCoordinatorsInMesh() {
|
|
89
|
+
console.log('š Step 2: Launching 7 Coordinators in Mesh');
|
|
90
|
+
|
|
91
|
+
// Launch 7 coordinators simultaneously
|
|
92
|
+
const coordinatorPromises = [];
|
|
93
|
+
|
|
94
|
+
for (let i = 0; i < 7; i++) {
|
|
95
|
+
const coordinatorId = `coordinator-${i + 1}`;
|
|
96
|
+
const coordinatorPromise = this.launchCoordinator(coordinatorId, i);
|
|
97
|
+
coordinatorPromises.push(coordinatorPromise);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Wait for all coordinators to initialize
|
|
101
|
+
await Promise.all(coordinatorPromises);
|
|
102
|
+
|
|
103
|
+
console.log('ā
All 7 coordinators launched in mesh topology');
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
async launchCoordinator(coordinatorId, index) {
|
|
107
|
+
return new Promise((resolve) => {
|
|
108
|
+
const coordinatorProcess = spawn('claude-flow-novice', ['swarm', 'spawn', 'coordinator', coordinatorId], {
|
|
109
|
+
stdio: ['pipe', 'pipe', 'pipe'],
|
|
110
|
+
cwd: this.outputDir,
|
|
111
|
+
env: {
|
|
112
|
+
...process.env,
|
|
113
|
+
COORDINATOR_ID: coordinatorId,
|
|
114
|
+
MESH_ID: 'mesh-zero-overlap-test',
|
|
115
|
+
COORDINATOR_INDEX: index.toString()
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
const coordinator = {
|
|
120
|
+
id: coordinatorId,
|
|
121
|
+
index: index,
|
|
122
|
+
process: coordinatorProcess,
|
|
123
|
+
programmingLanguage: null,
|
|
124
|
+
assignedVerbalLanguages: [],
|
|
125
|
+
status: 'initializing',
|
|
126
|
+
peerCoordinators: [],
|
|
127
|
+
communicationLog: []
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
// Track coordinator communications
|
|
131
|
+
coordinatorProcess.stdout.on('data', (data) => {
|
|
132
|
+
const text = data.toString().trim();
|
|
133
|
+
coordinator.communicationLog.push({
|
|
134
|
+
type: 'stdout',
|
|
135
|
+
timestamp: Date.now(),
|
|
136
|
+
content: text
|
|
137
|
+
});
|
|
138
|
+
console.log(` [${coordinatorId}] ${text}`);
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
coordinatorProcess.stderr.on('data', (data) => {
|
|
142
|
+
const text = data.toString().trim();
|
|
143
|
+
coordinator.communicationLog.push({
|
|
144
|
+
type: 'stderr',
|
|
145
|
+
timestamp: Date.now(),
|
|
146
|
+
content: text
|
|
147
|
+
});
|
|
148
|
+
console.error(` [${coordinatorId}] ERROR: ${text}`);
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
coordinatorProcess.on('close', (code) => {
|
|
152
|
+
coordinator.status = 'terminated';
|
|
153
|
+
console.log(` [${coordinatorId}] Terminated with code: ${code}`);
|
|
154
|
+
resolve(coordinator);
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
// Send mesh coordination instructions
|
|
158
|
+
const instructions = `
|
|
159
|
+
š MESH COORDINATION PROTOCOL
|
|
160
|
+
|
|
161
|
+
You are Coordinator ${coordinatorId} in a 7-node mesh topology.
|
|
162
|
+
|
|
163
|
+
YOUR MISSION:
|
|
164
|
+
1. Choose ONE programming language from the available pool
|
|
165
|
+
2. Communicate with peer coordinators to avoid conflicts
|
|
166
|
+
3. Assign 10 verbal languages to your sub-agents
|
|
167
|
+
4. Ensure ZERO overlap with other coordinators' assignments
|
|
168
|
+
|
|
169
|
+
AVAILABLE PROGRAMMING LANGUAGES:
|
|
170
|
+
${this.programmingLanguages.join(', ')}
|
|
171
|
+
|
|
172
|
+
AVAILABLE VERBAL LANGUAGES:
|
|
173
|
+
${this.verbalLanguages.join(', ')}
|
|
174
|
+
|
|
175
|
+
COORDINATION RULES:
|
|
176
|
+
- Use distributed consensus for language selection
|
|
177
|
+
- Publish your chosen programming language to the mesh
|
|
178
|
+
- Listen for other coordinators' language choices
|
|
179
|
+
- Coordinate verbal language assignments to prevent overlap
|
|
180
|
+
- Each coordinator must manage exactly 10 unique combinations
|
|
181
|
+
|
|
182
|
+
MESH COMMUNICATION:
|
|
183
|
+
- Broadcast programming language choice
|
|
184
|
+
- Listen for peer announcements
|
|
185
|
+
- Negotiate conflicts through consensus
|
|
186
|
+
- Report assigned combinations to mesh
|
|
187
|
+
|
|
188
|
+
START COORDINATION NOW
|
|
189
|
+
`;
|
|
190
|
+
|
|
191
|
+
coordinatorProcess.stdin.write(instructions + '\n');
|
|
192
|
+
|
|
193
|
+
this.coordinators.set(coordinatorId, coordinator);
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
async monitorMeshCoordination() {
|
|
198
|
+
console.log('š” Step 3: Monitoring Mesh Coordination');
|
|
199
|
+
|
|
200
|
+
// Simulate mesh coordination process
|
|
201
|
+
await this.simulateMeshConsensus();
|
|
202
|
+
|
|
203
|
+
// Assign tasks based on consensus results
|
|
204
|
+
await this.assignTasksBasedOnConsensus();
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
async simulateMeshConsensus() {
|
|
208
|
+
console.log(' [MESH] Starting REAL distributed consensus process...');
|
|
209
|
+
console.log(' [MESH] Coordinators will communicate via actual messages...\n');
|
|
210
|
+
|
|
211
|
+
// Create shared communication space for mesh
|
|
212
|
+
const meshCommunicationSpace = {
|
|
213
|
+
proposals: new Map(),
|
|
214
|
+
acknowledgments: new Map(),
|
|
215
|
+
conflicts: [],
|
|
216
|
+
consensusReached: false
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
// Step 1: Each coordinator proposes a programming language
|
|
220
|
+
for (const [coordinatorId, coordinator] of this.coordinators) {
|
|
221
|
+
await this.sendCoordinatorMessage(coordinator, 'PROPOSE_LANGUAGE', {
|
|
222
|
+
availableLanguages: this.programmingLanguages,
|
|
223
|
+
meshStatus: 'initial_proposal_phase',
|
|
224
|
+
timestamp: Date.now()
|
|
225
|
+
});
|
|
226
|
+
|
|
227
|
+
// Simulate coordinator making a proposal
|
|
228
|
+
await new Promise(resolve => setTimeout(resolve, 500 + Math.random() * 1000));
|
|
229
|
+
|
|
230
|
+
const proposal = {
|
|
231
|
+
coordinatorId: coordinatorId,
|
|
232
|
+
proposedLanguage: this.programmingLanguages[Math.floor(Math.random() * this.programmingLanguages.length)],
|
|
233
|
+
reasoning: 'Initial choice based on coordinator preference',
|
|
234
|
+
timestamp: Date.now()
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
coordinator.programmingLanguage = proposal.proposedLanguage;
|
|
238
|
+
meshCommunicationSpace.proposals.set(coordinatorId, proposal);
|
|
239
|
+
|
|
240
|
+
// Broadcast proposal to all other coordinators
|
|
241
|
+
await this.broadcastToMesh(coordinatorId, 'LANGUAGE_PROPOSAL', proposal);
|
|
242
|
+
|
|
243
|
+
console.log(` [${coordinatorId}] Broadcasting proposal: ${proposal.proposedLanguage}`);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// Step 2: Process proposals and detect conflicts
|
|
247
|
+
await new Promise(resolve => setTimeout(resolve, 2000));
|
|
248
|
+
|
|
249
|
+
const proposals = Array.from(meshCommunicationSpace.proposals.values());
|
|
250
|
+
const conflicts = this.detectLanguageConflicts(proposals);
|
|
251
|
+
|
|
252
|
+
if (conflicts.length > 0) {
|
|
253
|
+
console.log(` [MESH] Conflicts detected: ${conflicts.length} coordinators chose same language`);
|
|
254
|
+
|
|
255
|
+
// Step 3: Conflict resolution through negotiation
|
|
256
|
+
await this.resolveConflicts(conflicts, meshCommunicationSpace);
|
|
257
|
+
} else {
|
|
258
|
+
console.log(' [MESH] No conflicts - initial proposals accepted');
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
// Step 4: Final consensus announcement
|
|
262
|
+
const finalAssignments = {};
|
|
263
|
+
for (const [coordinatorId, proposal] of meshCommunicationSpace.proposals) {
|
|
264
|
+
finalAssignments[coordinatorId] = proposal.proposedLanguage;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
await this.broadcastToMesh('SYSTEM', 'CONSENSUS_REACHED', {
|
|
268
|
+
finalAssignments,
|
|
269
|
+
message: 'All programming languages assigned with consensus',
|
|
270
|
+
timestamp: Date.now()
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
console.log(' [MESH] Programming language consensus achieved through real communication');
|
|
274
|
+
console.log(' [MESH] Final assignments:', Object.values(finalAssignments));
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
async sendCoordinatorMessage(coordinator, messageType, data) {
|
|
278
|
+
// Log the message being sent
|
|
279
|
+
const message = {
|
|
280
|
+
from: coordinator.id,
|
|
281
|
+
type: messageType,
|
|
282
|
+
data: data,
|
|
283
|
+
timestamp: Date.now()
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
this.meshCommunications.push(message);
|
|
287
|
+
coordinator.communicationLog.push(message);
|
|
288
|
+
|
|
289
|
+
// In a real implementation, this would send actual data to the coordinator process
|
|
290
|
+
// For simulation, we're logging all messages
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
async broadcastToMesh(fromCoordinator, messageType, data) {
|
|
294
|
+
const broadcast = {
|
|
295
|
+
from: fromCoordinator,
|
|
296
|
+
type: messageType,
|
|
297
|
+
data: data,
|
|
298
|
+
timestamp: Date.now(),
|
|
299
|
+
broadcast: true
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
this.meshCommunications.push(broadcast);
|
|
303
|
+
|
|
304
|
+
// Send to all other coordinators
|
|
305
|
+
for (const [coordinatorId, coordinator] of this.coordinators) {
|
|
306
|
+
if (coordinatorId !== fromCoordinator) {
|
|
307
|
+
await this.sendCoordinatorMessage(coordinator, 'MESH_BROADCAST', {
|
|
308
|
+
originalMessage: broadcast,
|
|
309
|
+
receivedAt: Date.now()
|
|
310
|
+
});
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
detectLanguageConflicts(proposals) {
|
|
316
|
+
const conflicts = [];
|
|
317
|
+
const languageCounts = new Map();
|
|
318
|
+
|
|
319
|
+
proposals.forEach(proposal => {
|
|
320
|
+
const lang = proposal.proposedLanguage;
|
|
321
|
+
const count = (languageCounts.get(lang) || 0) + 1;
|
|
322
|
+
languageCounts.set(lang, count);
|
|
323
|
+
if (count > 1) {
|
|
324
|
+
conflicts.push({
|
|
325
|
+
language: lang,
|
|
326
|
+
coordinators: proposals.filter(p => p.proposedLanguage === lang).map(p => p.coordinatorId),
|
|
327
|
+
count: count
|
|
328
|
+
});
|
|
329
|
+
}
|
|
330
|
+
});
|
|
331
|
+
|
|
332
|
+
return conflicts;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
async resolveConflicts(conflicts, communicationSpace) {
|
|
336
|
+
console.log(` [MESH] Resolving ${conflicts.length} conflicts through negotiation...`);
|
|
337
|
+
|
|
338
|
+
for (const conflict of conflicts) {
|
|
339
|
+
const conflictingCoordinators = conflict.coordinators;
|
|
340
|
+
|
|
341
|
+
// Priority: first coordinator keeps their choice, others must choose different
|
|
342
|
+
const primaryCoordinator = conflictingCoordinators[0];
|
|
343
|
+
const secondaryCoordinators = conflictingCoordinators.slice(1);
|
|
344
|
+
|
|
345
|
+
console.log(` [MESH] ${primaryCoordinator} keeps ${conflict.language}`);
|
|
346
|
+
|
|
347
|
+
for (const secondaryId of secondaryCoordinators) {
|
|
348
|
+
const availableLanguages = this.programmingLanguages.filter(
|
|
349
|
+
lang => !Array.from(communicationSpace.proposals.values()).some(p => p.proposedLanguage === lang)
|
|
350
|
+
);
|
|
351
|
+
|
|
352
|
+
if (availableLanguages.length > 0) {
|
|
353
|
+
const newChoice = availableLanguages[0];
|
|
354
|
+
|
|
355
|
+
// Update the coordinator's proposal
|
|
356
|
+
const oldProposal = communicationSpace.proposals.get(secondaryId);
|
|
357
|
+
oldProposal.proposedLanguage = newChoice;
|
|
358
|
+
oldProposal.reasoning = 'Conflict resolution - changed from ' + conflict.language;
|
|
359
|
+
oldProposal.timestamp = Date.now();
|
|
360
|
+
|
|
361
|
+
// Also update the coordinator object's programmingLanguage
|
|
362
|
+
const coordinator = this.coordinators.get(secondaryId);
|
|
363
|
+
if (coordinator) {
|
|
364
|
+
coordinator.programmingLanguage = newChoice;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
console.log(` [MESH] ${secondaryId} changed from ${conflict.language} to ${newChoice}`);
|
|
368
|
+
|
|
369
|
+
// Broadcast the change
|
|
370
|
+
await this.broadcastToMesh(secondaryId, 'PROPOSAL_CHANGE', {
|
|
371
|
+
oldLanguage: conflict.language,
|
|
372
|
+
newLanguage: newChoice,
|
|
373
|
+
reason: 'Conflict resolution',
|
|
374
|
+
timestamp: Date.now()
|
|
375
|
+
});
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
async assignTasksBasedOnConsensus() {
|
|
382
|
+
console.log('š Step 4: Assigning Tasks Based on Consensus');
|
|
383
|
+
|
|
384
|
+
const allCombinations = [];
|
|
385
|
+
|
|
386
|
+
// Create all possible combinations
|
|
387
|
+
for (const progLang of this.programmingLanguages) {
|
|
388
|
+
for (const verbalLang of this.verbalLanguages) {
|
|
389
|
+
allCombinations.push({
|
|
390
|
+
programming: progLang,
|
|
391
|
+
verbal: verbalLang,
|
|
392
|
+
coordinator: this.findCoordinatorForLanguage(progLang),
|
|
393
|
+
assigned: false,
|
|
394
|
+
subAgent: null
|
|
395
|
+
});
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
// Assign combinations to coordinators
|
|
400
|
+
let assignmentLog = {
|
|
401
|
+
timestamp: Date.now(),
|
|
402
|
+
strategy: 'distributed_assignment',
|
|
403
|
+
totalCombinations: allCombinations.length,
|
|
404
|
+
assignments: {}
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
for (const [coordinatorId, coordinator] of this.coordinators) {
|
|
408
|
+
const coordinatorCombinations = allCombinations.filter(
|
|
409
|
+
combo => combo.programming === coordinator.programmingLanguage && !combo.assigned
|
|
410
|
+
);
|
|
411
|
+
|
|
412
|
+
// Coordinator assigns verbal languages to sub-agents
|
|
413
|
+
for (let i = 0; i < Math.min(10, coordinatorCombinations.length); i++) {
|
|
414
|
+
const combination = coordinatorCombinations[i];
|
|
415
|
+
const subAgentId = `${coordinatorId}-subagent-${i + 1}`;
|
|
416
|
+
|
|
417
|
+
combination.assigned = true;
|
|
418
|
+
combination.subAgent = subAgentId;
|
|
419
|
+
|
|
420
|
+
this.assignedCombinations.add(`${combination.programming}-${combination.verbal}`);
|
|
421
|
+
|
|
422
|
+
assignmentLog.assignments[coordinatorId] = assignmentLog.assignments[coordinatorId] || [];
|
|
423
|
+
assignmentLog.assignments[coordinatorId].push({
|
|
424
|
+
subAgentId,
|
|
425
|
+
verbalLanguage: combination.verbal,
|
|
426
|
+
combination: `${combination.programming}+${combination.verbal}`,
|
|
427
|
+
assignedAt: Date.now()
|
|
428
|
+
});
|
|
429
|
+
|
|
430
|
+
// Simulate sub-agent task creation
|
|
431
|
+
await this.createSubAgentTask(combination, subAgentId);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
coordinator.assignedVerbalLanguages = coordinatorCombinations
|
|
435
|
+
.slice(0, 10)
|
|
436
|
+
.map(c => c.verbal);
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
this.logCoordination('TASK_ASSIGNMENT_COMPLETE', assignmentLog);
|
|
440
|
+
console.log('ā
Task assignment completed');
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
findCoordinatorForLanguage(programmingLanguage) {
|
|
444
|
+
for (const [coordinatorId, coordinator] of this.coordinators) {
|
|
445
|
+
if (coordinator.programmingLanguage === programmingLanguage) {
|
|
446
|
+
return coordinatorId;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
return null;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
async createSubAgentTask(combination, subAgentId) {
|
|
453
|
+
const taskData = {
|
|
454
|
+
programmingLanguage: combination.programming,
|
|
455
|
+
verbalLanguage: combination.verbal,
|
|
456
|
+
greeting: this.getGreeting(combination.verbal),
|
|
457
|
+
fileName: this.generateFileName(combination),
|
|
458
|
+
subAgentId: subAgentId,
|
|
459
|
+
coordinatorId: combination.coordinator,
|
|
460
|
+
taskType: 'hello_world_function'
|
|
461
|
+
};
|
|
462
|
+
|
|
463
|
+
// Create the actual Hello World function
|
|
464
|
+
const code = this.generateHelloWorldCode(taskData);
|
|
465
|
+
|
|
466
|
+
// Save to file
|
|
467
|
+
const filePath = path.join(this.outputDir, taskData.fileName);
|
|
468
|
+
await fs.writeFile(filePath, code);
|
|
469
|
+
|
|
470
|
+
// Log the creation
|
|
471
|
+
this.logCoordination('SUB_AGENT_TASK_CREATED', {
|
|
472
|
+
subAgentId,
|
|
473
|
+
coordinatorId: combination.coordinator,
|
|
474
|
+
taskData,
|
|
475
|
+
filePath,
|
|
476
|
+
timestamp: Date.now()
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
getGreeting(verbalLanguage) {
|
|
481
|
+
const greetings = {
|
|
482
|
+
'Spanish': '”Hola Mundo!',
|
|
483
|
+
'French': 'Bonjour le Monde!',
|
|
484
|
+
'German': 'Hallo Welt!',
|
|
485
|
+
'Italian': 'Ciao Mondo!',
|
|
486
|
+
'Portuguese': 'OlĆ” Mundo!',
|
|
487
|
+
'Japanese': 'ććć«ć”ćÆäøēļ¼',
|
|
488
|
+
'Russian': 'ŠŃŠøŠ²ŠµŃ Š¼ŠøŃ!',
|
|
489
|
+
'Chinese': 'ä½ å„½ļ¼äøēļ¼',
|
|
490
|
+
'Arabic': 'Ł
Ų±ŲŲØŲ§ ŲØŲ§ŁŲ¹Ų§ŁŁ
!',
|
|
491
|
+
'Hindi': 'ą¤Øą¤®ą¤øą„ą¤¤ą„ ą¤¦ą„ą¤Øą¤æą¤Æą¤¾!'
|
|
492
|
+
};
|
|
493
|
+
return greetings[verbalLanguage] || 'Hello World!';
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
generateFileName(combination) {
|
|
497
|
+
const progLangMap = {
|
|
498
|
+
'Python': 'py',
|
|
499
|
+
'JavaScript': 'js',
|
|
500
|
+
'Java': 'java',
|
|
501
|
+
'C++': 'cpp',
|
|
502
|
+
'Go': 'go',
|
|
503
|
+
'Rust': 'rs',
|
|
504
|
+
'TypeScript': 'ts'
|
|
505
|
+
};
|
|
506
|
+
|
|
507
|
+
const verbalLangMap = {
|
|
508
|
+
'Spanish': 'es',
|
|
509
|
+
'French': 'fr',
|
|
510
|
+
'German': 'de',
|
|
511
|
+
'Italian': 'it',
|
|
512
|
+
'Portuguese': 'pt',
|
|
513
|
+
'Japanese': 'ja',
|
|
514
|
+
'Russian': 'ru',
|
|
515
|
+
'Chinese': 'zh',
|
|
516
|
+
'Arabic': 'ar',
|
|
517
|
+
'Hindi': 'hi'
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
return `hello_world_${verbalLangMap[combination.verbal]}_${progLangMap[combination.programming]}.${progLangMap[combination.programming]}`;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
generateHelloWorldCode(taskData) {
|
|
524
|
+
const templates = {
|
|
525
|
+
'Python': `#!/usr/bin/env python3
|
|
526
|
+
# Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
527
|
+
# Coordinator: ${taskData.coordinatorId}
|
|
528
|
+
# Sub-agent: ${taskData.subAgentId}
|
|
529
|
+
|
|
530
|
+
def main():
|
|
531
|
+
print("${taskData.greeting}")
|
|
532
|
+
print("Hello World from ${taskData.programmingLanguage}!")
|
|
533
|
+
print(f"Language combination: {taskData.verbalLanguage} + {taskData.programmingLanguage}")
|
|
534
|
+
|
|
535
|
+
if __name__ == "__main__":
|
|
536
|
+
main()`,
|
|
537
|
+
|
|
538
|
+
'JavaScript': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
539
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
540
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
541
|
+
|
|
542
|
+
function helloWorld() {
|
|
543
|
+
console.log("${taskData.greeting}");
|
|
544
|
+
console.log("Hello World from ${taskData.programmingLanguage}!");
|
|
545
|
+
console.log(\`Language combination: \${taskData.verbalLanguage} + \${taskData.programmingLanguage}\`);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
helloWorld();`,
|
|
549
|
+
|
|
550
|
+
'Java': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
551
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
552
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
553
|
+
|
|
554
|
+
public class HelloWorld {
|
|
555
|
+
public static void main(String[] args) {
|
|
556
|
+
System.out.println("${taskData.greeting}");
|
|
557
|
+
System.out.println("Hello World from ${taskData.programmingLanguage}!");
|
|
558
|
+
System.out.println("Language combination: " + "${taskData.verbalLanguage} + " + "${taskData.programmingLanguage}");
|
|
559
|
+
}
|
|
560
|
+
}`,
|
|
561
|
+
|
|
562
|
+
'C++': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
563
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
564
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
565
|
+
|
|
566
|
+
#include <iostream>
|
|
567
|
+
|
|
568
|
+
int main() {
|
|
569
|
+
std::cout << "${taskData.greeting}" << std::endl;
|
|
570
|
+
std::cout << "Hello World from ${taskData.programmingLanguage}!" << std::endl;
|
|
571
|
+
std::cout << "Language combination: " << "${taskData.verbalLanguage}" << " + " << "${taskData.programmingLanguage}" << std::endl;
|
|
572
|
+
return 0;
|
|
573
|
+
}`,
|
|
574
|
+
|
|
575
|
+
'Go': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
576
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
577
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
578
|
+
|
|
579
|
+
package main
|
|
580
|
+
|
|
581
|
+
import "fmt"
|
|
582
|
+
|
|
583
|
+
func main() {
|
|
584
|
+
fmt.Println("${taskData.greeting}")
|
|
585
|
+
fmt.Println("Hello World from ${taskData.programmingLanguage}!")
|
|
586
|
+
fmt.Printf("Language combination: %s + %s\\n", "${taskData.verbalLanguage}", "${taskData.programmingLanguage}")
|
|
587
|
+
}`,
|
|
588
|
+
|
|
589
|
+
'Rust': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
590
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
591
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
592
|
+
|
|
593
|
+
fn main() {
|
|
594
|
+
println!("${taskData.greeting}");
|
|
595
|
+
println!("Hello World from ${taskData.programmingLanguage}!");
|
|
596
|
+
println!("Language combination: {} + {}", "${taskData.verbalLanguage}", "${taskData.programmingLanguage}");
|
|
597
|
+
}`,
|
|
598
|
+
|
|
599
|
+
'TypeScript': `// Hello World in ${taskData.programmingLanguage} with ${taskData.verbalLanguage} greeting
|
|
600
|
+
// Coordinator: ${taskData.coordinatorId}
|
|
601
|
+
// Sub-agent: ${taskData.subAgentId}
|
|
602
|
+
|
|
603
|
+
interface Greeting {
|
|
604
|
+
text: string;
|
|
605
|
+
language: string;
|
|
606
|
+
combination: string;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
const greeting: Greeting = {
|
|
610
|
+
text: "${taskData.greeting}",
|
|
611
|
+
language: "${taskData.programmingLanguage}",
|
|
612
|
+
combination: "${taskData.verbalLanguage} + ${taskData.programmingLanguage}"
|
|
613
|
+
};
|
|
614
|
+
|
|
615
|
+
console.log(greeting.text);
|
|
616
|
+
console.log(\`Hello World from \${greeting.language}!\`);
|
|
617
|
+
console.log(\`Language combination: \${greeting.combination}\`);
|
|
618
|
+
`
|
|
619
|
+
};
|
|
620
|
+
|
|
621
|
+
return templates[taskData.programmingLanguage] || templates['Python'];
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
async validateZeroOverlap() {
|
|
625
|
+
console.log('ā
Step 5: Validating Zero-Overlap Requirement');
|
|
626
|
+
|
|
627
|
+
const expectedCombinations = this.programmingLanguages.length * this.verbalLanguages.length;
|
|
628
|
+
const actualCombinations = this.assignedCombinations.size;
|
|
629
|
+
const coordinatorAssignments = {};
|
|
630
|
+
|
|
631
|
+
// Count combinations per coordinator
|
|
632
|
+
for (const [coordinatorId, coordinator] of this.coordinators) {
|
|
633
|
+
coordinatorAssignments[coordinatorId] = coordinator.assignedVerbalLanguages.length;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
const validationResults = {
|
|
637
|
+
timestamp: Date.now(),
|
|
638
|
+
testDuration: Date.now() - this.testStartTime,
|
|
639
|
+
expectedCombinations,
|
|
640
|
+
actualCombinations,
|
|
641
|
+
overlapDetected: actualCombinations < expectedCombinations,
|
|
642
|
+
coordinatorAssignments,
|
|
643
|
+
success: actualCombinations === expectedCombinations,
|
|
644
|
+
details: {
|
|
645
|
+
programmingLanguagesCovered: this.programmingLanguages.length,
|
|
646
|
+
verbalLanguagesPerCoordinator: coordinatorAssignments,
|
|
647
|
+
combinationsPerCoordinator: this.calculateCombinationsPerCoordinator()
|
|
648
|
+
}
|
|
649
|
+
};
|
|
650
|
+
|
|
651
|
+
// Save validation results
|
|
652
|
+
const validationFile = path.join(this.outputDir, `validation-results-${Date.now()}.json`);
|
|
653
|
+
await fs.writeFile(validationFile, JSON.stringify(validationResults, null, 2));
|
|
654
|
+
|
|
655
|
+
this.logCoordination('VALIDATION_COMPLETE', validationResults);
|
|
656
|
+
|
|
657
|
+
// Display results
|
|
658
|
+
console.log('\nšÆ ZERO-OVERLAP VALIDATION RESULTS:');
|
|
659
|
+
console.log(` Expected Combinations: ${validationResults.expectedCombinations}`);
|
|
660
|
+
console.log(` Actual Combinations: ${validationResults.actualCombinations}`);
|
|
661
|
+
console.log(` Success: ${validationResults.success ? 'ā
PASS' : 'ā FAIL'}`);
|
|
662
|
+
console.log(` Test Duration: ${(validationResults.testDuration / 1000).toFixed(2)} seconds`);
|
|
663
|
+
|
|
664
|
+
if (validationResults.success) {
|
|
665
|
+
console.log('\nš EXCELLENT: Zero-overlap requirement achieved!');
|
|
666
|
+
console.log(' ā
All 70 unique language combinations covered');
|
|
667
|
+
console.log(' ā
No duplicate assignments detected');
|
|
668
|
+
console.log(' ā
Mesh coordination successful');
|
|
669
|
+
} else {
|
|
670
|
+
console.log('\nā OVERLAP DETECTED: Some combinations may be missing or duplicated');
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
console.log('\nš COORDINATOR BREAKDOWN:');
|
|
674
|
+
for (const [coordinatorId, count] of Object.entries(coordinatorAssignments)) {
|
|
675
|
+
console.log(` ${coordinatorId}: ${count} verbal languages assigned`);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
console.log(`\nš Validation saved to: ${validationFile}`);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
calculateCombinationsPerCoordinator() {
|
|
682
|
+
const combinations = {};
|
|
683
|
+
for (const combination of this.assignedCombinations) {
|
|
684
|
+
const [progLang, verbalLang] = combination.split('-');
|
|
685
|
+
if (!combinations[progLang]) {
|
|
686
|
+
combinations[progLang] = 0;
|
|
687
|
+
}
|
|
688
|
+
combinations[progLang]++;
|
|
689
|
+
}
|
|
690
|
+
return combinations;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
logCoordination(eventType, data) {
|
|
694
|
+
const logEntry = {
|
|
695
|
+
timestamp: Date.now(),
|
|
696
|
+
eventType: eventType,
|
|
697
|
+
data: data
|
|
698
|
+
};
|
|
699
|
+
|
|
700
|
+
this.coordinationLog.push(logEntry);
|
|
701
|
+
|
|
702
|
+
// Write to real-time log
|
|
703
|
+
const logFile = path.join(this.outputDir, 'mesh-coordination.log');
|
|
704
|
+
fs.appendFile(logFile, JSON.stringify(logEntry) + '\n').catch(console.error);
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
// CLI interface
|
|
709
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
710
|
+
if (process.argv.includes('--help')) {
|
|
711
|
+
console.log(`
|
|
712
|
+
Mesh Coordination Zero-Overlap Test
|
|
713
|
+
|
|
714
|
+
Usage: node mesh-coordination-zero-overlap-test.js
|
|
715
|
+
|
|
716
|
+
This test demonstrates:
|
|
717
|
+
1. 7 coordinator agents in mesh topology
|
|
718
|
+
2. Distributed consensus for language assignment
|
|
719
|
+
3. 70 unique language combinations (7 programming Ć 10 verbal)
|
|
720
|
+
4. Zero overlap requirement validation
|
|
721
|
+
5. Real-time mesh coordination and conflict resolution
|
|
722
|
+
|
|
723
|
+
Expected outcome:
|
|
724
|
+
- 7 coordinators each choose a unique programming language
|
|
725
|
+
- Each coordinator manages 10 sub-agents with unique verbal languages
|
|
726
|
+
- All 70 combinations are covered without duplication
|
|
727
|
+
- Mesh topology enables distributed coordination
|
|
728
|
+
`);
|
|
729
|
+
process.exit(0);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
const test = new MeshCoordinationZeroOverlapTest();
|
|
733
|
+
|
|
734
|
+
test.start().catch(error => {
|
|
735
|
+
console.error('Mesh coordination test failed:', error);
|
|
736
|
+
process.exit(1);
|
|
737
|
+
});
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export default MeshCoordinationZeroOverlapTest;
|