byterover-cli 3.13.0 → 3.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -0
- package/dist/agent/infra/agent/cipher-agent.js +6 -0
- package/dist/agent/infra/agent/service-initializer.d.ts +13 -0
- package/dist/agent/infra/agent/service-initializer.js +2 -0
- package/dist/agent/infra/llm/agent-llm-service.js +2 -1
- package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.d.ts +57 -0
- package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.js +87 -0
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.d.ts +10 -0
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.js +90 -63
- package/dist/agent/infra/llm/providers/anthropic.js +1 -0
- package/dist/agent/infra/llm/providers/cerebras.js +1 -0
- package/dist/agent/infra/llm/providers/cohere.js +1 -0
- package/dist/agent/infra/llm/providers/deepinfra.js +1 -0
- package/dist/agent/infra/llm/providers/deepseek.js +1 -0
- package/dist/agent/infra/llm/providers/glm-coding-plan.js +1 -0
- package/dist/agent/infra/llm/providers/google.js +1 -0
- package/dist/agent/infra/llm/providers/groq.js +1 -0
- package/dist/agent/infra/llm/providers/minimax.js +1 -0
- package/dist/agent/infra/llm/providers/mistral.js +1 -0
- package/dist/agent/infra/llm/providers/openai-compatible.js +1 -0
- package/dist/agent/infra/llm/providers/openai.js +1 -0
- package/dist/agent/infra/llm/providers/perplexity.js +1 -0
- package/dist/agent/infra/llm/providers/togetherai.js +1 -0
- package/dist/agent/infra/llm/providers/types.d.ts +8 -1
- package/dist/agent/infra/llm/providers/xai.js +1 -0
- package/dist/agent/infra/session/session-manager.d.ts +2 -0
- package/dist/agent/infra/settings/agent-settings-snapshot.d.ts +17 -0
- package/dist/agent/infra/settings/agent-settings-snapshot.js +53 -0
- package/dist/oclif/commands/curate/index.js +7 -5
- package/dist/oclif/commands/dream.js +8 -7
- package/dist/oclif/commands/mcp.js +42 -17
- package/dist/oclif/commands/query.js +8 -4
- package/dist/oclif/commands/settings/get.d.ts +17 -0
- package/dist/oclif/commands/settings/get.js +96 -0
- package/dist/oclif/commands/settings/index.d.ts +13 -0
- package/dist/oclif/commands/settings/index.js +106 -0
- package/dist/oclif/commands/settings/list.d.ts +5 -0
- package/dist/oclif/commands/settings/list.js +8 -0
- package/dist/oclif/commands/settings/reset.d.ts +16 -0
- package/dist/oclif/commands/settings/reset.js +81 -0
- package/dist/oclif/commands/settings/set.d.ts +17 -0
- package/dist/oclif/commands/settings/set.js +131 -0
- package/dist/oclif/lib/mcp-cleanup.d.ts +10 -0
- package/dist/oclif/lib/mcp-cleanup.js +28 -0
- package/dist/oclif/lib/mcp-crash-handler.d.ts +23 -0
- package/dist/oclif/lib/mcp-crash-handler.js +69 -0
- package/dist/oclif/lib/task-client.d.ts +4 -6
- package/dist/oclif/lib/task-client.js +92 -20
- package/dist/oclif/lib/timeout-deprecation.d.ts +31 -0
- package/dist/oclif/lib/timeout-deprecation.js +33 -0
- package/dist/server/constants.d.ts +5 -0
- package/dist/server/constants.js +15 -0
- package/dist/server/core/domain/entities/settings.d.ts +55 -0
- package/dist/server/core/domain/entities/settings.js +71 -0
- package/dist/server/core/interfaces/storage/i-settings-store.d.ts +43 -0
- package/dist/server/core/interfaces/storage/i-settings-store.js +1 -0
- package/dist/server/infra/daemon/agent-process.js +9 -1
- package/dist/server/infra/daemon/brv-server.js +34 -21
- package/dist/server/infra/daemon/settings-bootstrap.d.ts +25 -0
- package/dist/server/infra/daemon/settings-bootstrap.js +23 -0
- package/dist/server/infra/git/isomorphic-git-service.d.ts +14 -1
- package/dist/server/infra/git/isomorphic-git-service.js +57 -9
- package/dist/server/infra/mcp/mcp-server.d.ts +5 -1
- package/dist/server/infra/mcp/mcp-server.js +10 -1
- package/dist/server/infra/process/feature-handlers.d.ts +3 -1
- package/dist/server/infra/process/feature-handlers.js +4 -3
- package/dist/server/infra/process/task-heartbeat-manager.d.ts +51 -0
- package/dist/server/infra/process/task-heartbeat-manager.js +83 -0
- package/dist/server/infra/process/task-history-store-cache.d.ts +8 -0
- package/dist/server/infra/process/task-history-store-cache.js +21 -1
- package/dist/server/infra/process/task-router.d.ts +10 -0
- package/dist/server/infra/process/task-router.js +13 -0
- package/dist/server/infra/process/transport-handlers.d.ts +6 -0
- package/dist/server/infra/process/transport-handlers.js +1 -0
- package/dist/server/infra/storage/file-settings-store.d.ts +28 -0
- package/dist/server/infra/storage/file-settings-store.js +132 -0
- package/dist/server/infra/storage/settings-validator.d.ts +56 -0
- package/dist/server/infra/storage/settings-validator.js +124 -0
- package/dist/server/infra/transport/handlers/index.d.ts +2 -0
- package/dist/server/infra/transport/handlers/index.js +1 -0
- package/dist/server/infra/transport/handlers/push-handler.js +3 -6
- package/dist/server/infra/transport/handlers/review-handler.d.ts +1 -0
- package/dist/server/infra/transport/handlers/review-handler.js +53 -8
- package/dist/server/infra/transport/handlers/settings-handler.d.ts +18 -0
- package/dist/server/infra/transport/handlers/settings-handler.js +94 -0
- package/dist/server/infra/transport/handlers/status-handler.js +3 -4
- package/dist/server/infra/transport/handlers/vc-handler.js +10 -4
- package/dist/server/templates/skill/SKILL.md +3 -3
- package/dist/server/utils/base64url.d.ts +2 -0
- package/dist/server/utils/base64url.js +6 -0
- package/dist/server/utils/build-review-url.d.ts +1 -0
- package/dist/server/utils/build-review-url.js +4 -0
- package/dist/shared/transport/events/context-tree-events.d.ts +4 -1
- package/dist/shared/transport/events/index.d.ts +8 -0
- package/dist/shared/transport/events/index.js +3 -0
- package/dist/shared/transport/events/review-events.d.ts +24 -1
- package/dist/shared/transport/events/review-events.js +1 -0
- package/dist/shared/transport/events/settings-events.d.ts +70 -0
- package/dist/shared/transport/events/settings-events.js +6 -0
- package/dist/shared/transport/events/task-events.d.ts +11 -0
- package/dist/shared/transport/events/task-events.js +1 -0
- package/dist/shared/types/settings-row.d.ts +28 -0
- package/dist/shared/types/settings-row.js +1 -0
- package/dist/shared/utils/format-duration.d.ts +43 -0
- package/dist/shared/utils/format-duration.js +108 -0
- package/dist/shared/utils/format-settings.d.ts +4 -0
- package/dist/shared/utils/format-settings.js +75 -0
- package/dist/tui/features/activity/hooks/use-activity-logs.js +1 -1
- package/dist/tui/features/commands/definitions/index.js +3 -0
- package/dist/tui/features/commands/definitions/settings.d.ts +2 -0
- package/dist/tui/features/commands/definitions/settings.js +11 -0
- package/dist/tui/features/settings/api/settings-api.d.ts +30 -0
- package/dist/tui/features/settings/api/settings-api.js +49 -0
- package/dist/tui/features/settings/components/settings-page.d.ts +3 -0
- package/dist/tui/features/settings/components/settings-page.js +152 -0
- package/dist/tui/features/settings/utils/format-settings.d.ts +12 -0
- package/dist/tui/features/settings/utils/format-settings.js +59 -0
- package/dist/tui/features/tasks/stores/tasks-store.d.ts +1 -1
- package/dist/webui/assets/antigravity-connector-DgAQAdn3.svg +1 -0
- package/dist/webui/assets/hermes-connector-CgLB73DY.svg +1 -0
- package/dist/webui/assets/index-7dsrsbU1.js +130 -0
- package/dist/webui/assets/index-r3wVsmem.css +1 -0
- package/dist/webui/assets/qoder-connector-Dy7h8E12.svg +1 -0
- package/dist/webui/index.html +2 -2
- package/dist/webui/sw.js +1 -1
- package/node_modules/@campfirein/byterover-packages/package.json +9 -0
- package/node_modules/@campfirein/byterover-packages/ui/package.json +11 -1
- package/node_modules/@campfirein/byterover-packages/{scripts → ui/scripts}/sync-deps.js +11 -4
- package/node_modules/@campfirein/byterover-packages/ui/src/components/badge.tsx +12 -12
- package/node_modules/@campfirein/byterover-packages/ui/src/components/collapsible.tsx +21 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/detail-body.tsx +12 -7
- package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/folder-detail.tsx +2 -6
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/diff-line.tsx +68 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/file-block.tsx +287 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/highlight-words.ts +53 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-header.tsx +111 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-pair.tsx +98 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-unified.tsx +114 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/index.tsx +90 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/is-prose-file.ts +9 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/styles.ts +20 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/types.ts +68 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/use-expand-state.ts +177 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/switch.tsx +2 -2
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-callout.tsx +82 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-fact.tsx +30 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-flow.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-pattern.tsx +19 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-rule.tsx +41 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-section.tsx +33 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-task.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-topic.tsx +318 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/code-block.tsx +71 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/dom-utils.ts +51 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/editorial.css +773 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/group.ts +55 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/index.ts +3 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/mermaid.tsx +62 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/prose.css +124 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-editor.tsx +75 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-viewer.tsx +285 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/types.ts +44 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/hooks/use-is-mac.ts +23 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/lib/initials.ts +19 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/lib/syntax-highlighter.ts +59 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/styles/globals.css +96 -1
- package/node_modules/@types/hast/LICENSE +21 -0
- package/node_modules/@types/hast/README.md +15 -0
- package/node_modules/@types/hast/index.d.ts +282 -0
- package/node_modules/@types/hast/package.json +42 -0
- package/node_modules/@types/prismjs/LICENSE +21 -0
- package/node_modules/@types/prismjs/README.md +15 -0
- package/node_modules/@types/prismjs/components/index.d.ts +19 -0
- package/node_modules/@types/prismjs/components.d.ts +4 -0
- package/node_modules/@types/prismjs/dependencies.d.ts +35 -0
- package/node_modules/@types/prismjs/index.d.ts +402 -0
- package/node_modules/@types/prismjs/package.json +46 -0
- package/node_modules/@types/unist/LICENSE +21 -0
- package/node_modules/@types/unist/README.md +15 -0
- package/node_modules/@types/unist/index.d.ts +119 -0
- package/node_modules/@types/unist/package.json +60 -0
- package/node_modules/character-entities/index.d.ts +6 -0
- package/node_modules/character-entities/index.js +2132 -0
- package/node_modules/character-entities/license +22 -0
- package/node_modules/character-entities/package.json +78 -0
- package/node_modules/character-entities/readme.md +152 -0
- package/node_modules/character-entities-legacy/index.d.ts +6 -0
- package/node_modules/character-entities-legacy/index.js +113 -0
- package/node_modules/character-entities-legacy/license +22 -0
- package/node_modules/character-entities-legacy/package.json +77 -0
- package/node_modules/character-entities-legacy/readme.md +157 -0
- package/node_modules/character-reference-invalid/index.d.ts +6 -0
- package/node_modules/character-reference-invalid/index.js +35 -0
- package/node_modules/character-reference-invalid/license +22 -0
- package/node_modules/character-reference-invalid/package.json +83 -0
- package/node_modules/character-reference-invalid/readme.md +156 -0
- package/node_modules/comma-separated-tokens/index.d.ts +52 -0
- package/node_modules/comma-separated-tokens/index.js +74 -0
- package/node_modules/comma-separated-tokens/license +22 -0
- package/node_modules/comma-separated-tokens/package.json +72 -0
- package/node_modules/comma-separated-tokens/readme.md +167 -0
- package/node_modules/decode-named-character-reference/index.d.ts +13 -0
- package/node_modules/decode-named-character-reference/index.d.ts.map +1 -0
- package/node_modules/decode-named-character-reference/index.dom.d.ts +6 -0
- package/node_modules/decode-named-character-reference/index.dom.d.ts.map +1 -0
- package/node_modules/decode-named-character-reference/index.dom.js +36 -0
- package/node_modules/decode-named-character-reference/index.js +19 -0
- package/node_modules/decode-named-character-reference/license +22 -0
- package/node_modules/decode-named-character-reference/package.json +89 -0
- package/node_modules/decode-named-character-reference/readme.md +136 -0
- package/node_modules/diff/CONTRIBUTING.md +28 -0
- package/node_modules/diff/LICENSE +29 -0
- package/node_modules/diff/README.md +468 -0
- package/node_modules/diff/dist/diff.js +2313 -0
- package/node_modules/diff/dist/diff.min.js +1 -0
- package/node_modules/diff/eslint.config.mjs +182 -0
- package/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
- package/node_modules/diff/libcjs/convert/dmp.d.ts.map +1 -0
- package/node_modules/diff/libcjs/convert/dmp.js +24 -0
- package/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
- package/node_modules/diff/libcjs/convert/xml.d.ts.map +1 -0
- package/node_modules/diff/libcjs/convert/xml.js +34 -0
- package/node_modules/diff/libcjs/diff/array.d.ts +19 -0
- package/node_modules/diff/libcjs/diff/array.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/array.js +23 -0
- package/node_modules/diff/libcjs/diff/base.d.ts +20 -0
- package/node_modules/diff/libcjs/diff/base.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/base.js +256 -0
- package/node_modules/diff/libcjs/diff/character.d.ts +19 -0
- package/node_modules/diff/libcjs/diff/character.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/character.js +14 -0
- package/node_modules/diff/libcjs/diff/css.d.ts +18 -0
- package/node_modules/diff/libcjs/diff/css.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/css.js +17 -0
- package/node_modules/diff/libcjs/diff/json.d.ts +24 -0
- package/node_modules/diff/libcjs/diff/json.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/json.js +86 -0
- package/node_modules/diff/libcjs/diff/line.d.ts +24 -0
- package/node_modules/diff/libcjs/diff/line.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/line.js +74 -0
- package/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
- package/node_modules/diff/libcjs/diff/sentence.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/sentence.js +50 -0
- package/node_modules/diff/libcjs/diff/word.d.ts +35 -0
- package/node_modules/diff/libcjs/diff/word.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/word.js +289 -0
- package/node_modules/diff/libcjs/index.d.ts +20 -0
- package/node_modules/diff/libcjs/index.d.ts.map +1 -0
- package/node_modules/diff/libcjs/index.js +67 -0
- package/node_modules/diff/libcjs/package.json +1 -0
- package/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
- package/node_modules/diff/libcjs/patch/apply.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/apply.js +264 -0
- package/node_modules/diff/libcjs/patch/create.d.ts +131 -0
- package/node_modules/diff/libcjs/patch/create.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/create.js +364 -0
- package/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
- package/node_modules/diff/libcjs/patch/line-endings.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/line-endings.js +50 -0
- package/node_modules/diff/libcjs/patch/parse.d.ts +16 -0
- package/node_modules/diff/libcjs/patch/parse.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/parse.js +515 -0
- package/node_modules/diff/libcjs/patch/reverse.d.ts +22 -0
- package/node_modules/diff/libcjs/patch/reverse.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/reverse.js +63 -0
- package/node_modules/diff/libcjs/types.d.ts +260 -0
- package/node_modules/diff/libcjs/types.d.ts.map +1 -0
- package/node_modules/diff/libcjs/types.js +2 -0
- package/node_modules/diff/libcjs/util/array.d.ts +3 -0
- package/node_modules/diff/libcjs/util/array.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/array.js +21 -0
- package/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
- package/node_modules/diff/libcjs/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
- package/node_modules/diff/libcjs/util/params.d.ts +4 -0
- package/node_modules/diff/libcjs/util/params.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/params.js +17 -0
- package/node_modules/diff/libcjs/util/string.d.ts +30 -0
- package/node_modules/diff/libcjs/util/string.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/string.js +199 -0
- package/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
- package/node_modules/diff/libesm/convert/dmp.d.ts.map +1 -0
- package/node_modules/diff/libesm/convert/dmp.js +21 -0
- package/node_modules/diff/libesm/convert/xml.d.ts +6 -0
- package/node_modules/diff/libesm/convert/xml.d.ts.map +1 -0
- package/node_modules/diff/libesm/convert/xml.js +31 -0
- package/node_modules/diff/libesm/diff/array.d.ts +19 -0
- package/node_modules/diff/libesm/diff/array.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/array.js +16 -0
- package/node_modules/diff/libesm/diff/base.d.ts +20 -0
- package/node_modules/diff/libesm/diff/base.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/base.js +253 -0
- package/node_modules/diff/libesm/diff/character.d.ts +19 -0
- package/node_modules/diff/libesm/diff/character.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/character.js +7 -0
- package/node_modules/diff/libesm/diff/css.d.ts +18 -0
- package/node_modules/diff/libesm/diff/css.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/css.js +10 -0
- package/node_modules/diff/libesm/diff/json.d.ts +24 -0
- package/node_modules/diff/libesm/diff/json.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/json.js +78 -0
- package/node_modules/diff/libesm/diff/line.d.ts +24 -0
- package/node_modules/diff/libesm/diff/line.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/line.js +65 -0
- package/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
- package/node_modules/diff/libesm/diff/sentence.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/sentence.js +43 -0
- package/node_modules/diff/libesm/diff/word.d.ts +35 -0
- package/node_modules/diff/libesm/diff/word.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/word.js +281 -0
- package/node_modules/diff/libesm/index.d.ts +20 -0
- package/node_modules/diff/libesm/index.d.ts.map +1 -0
- package/node_modules/diff/libesm/index.js +30 -0
- package/node_modules/diff/libesm/package.json +1 -0
- package/node_modules/diff/libesm/patch/apply.d.ts +62 -0
- package/node_modules/diff/libesm/patch/apply.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/apply.js +257 -0
- package/node_modules/diff/libesm/patch/create.d.ts +131 -0
- package/node_modules/diff/libesm/patch/create.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/create.js +357 -0
- package/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
- package/node_modules/diff/libesm/patch/line-endings.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/line-endings.js +44 -0
- package/node_modules/diff/libesm/patch/parse.d.ts +16 -0
- package/node_modules/diff/libesm/patch/parse.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/parse.js +512 -0
- package/node_modules/diff/libesm/patch/reverse.d.ts +22 -0
- package/node_modules/diff/libesm/patch/reverse.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/reverse.js +60 -0
- package/node_modules/diff/libesm/types.d.ts +260 -0
- package/node_modules/diff/libesm/types.d.ts.map +1 -0
- package/node_modules/diff/libesm/types.js +1 -0
- package/node_modules/diff/libesm/util/array.d.ts +3 -0
- package/node_modules/diff/libesm/util/array.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/array.js +17 -0
- package/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
- package/node_modules/diff/libesm/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/distance-iterator.js +37 -0
- package/node_modules/diff/libesm/util/params.d.ts +4 -0
- package/node_modules/diff/libesm/util/params.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/params.js +14 -0
- package/node_modules/diff/libesm/util/string.d.ts +30 -0
- package/node_modules/diff/libesm/util/string.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/string.js +184 -0
- package/node_modules/diff/package.json +130 -0
- package/node_modules/diff/release-notes.md +474 -0
- package/node_modules/format/.npmignore +1 -0
- package/node_modules/format/Makefile +13 -0
- package/node_modules/format/Readme.md +46 -0
- package/node_modules/format/component.json +9 -0
- package/node_modules/format/format-min.js +2 -0
- package/node_modules/format/format.js +128 -0
- package/node_modules/format/package.json +27 -0
- package/node_modules/format/test_format.js +54 -0
- package/node_modules/hast-util-parse-selector/index.d.ts +1 -0
- package/node_modules/hast-util-parse-selector/index.js +1 -0
- package/node_modules/hast-util-parse-selector/lib/index.d.ts +27 -0
- package/node_modules/hast-util-parse-selector/lib/index.js +87 -0
- package/node_modules/hast-util-parse-selector/license +22 -0
- package/node_modules/hast-util-parse-selector/package.json +79 -0
- package/node_modules/hast-util-parse-selector/readme.md +203 -0
- package/node_modules/hastscript/index.d.ts +5 -0
- package/node_modules/hastscript/index.d.ts.map +1 -0
- package/node_modules/hastscript/index.js +7 -0
- package/node_modules/hastscript/lib/automatic-runtime-html.d.ts +36 -0
- package/node_modules/hastscript/lib/automatic-runtime-html.js +9 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts +36 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts.map +1 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.js +7 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.d.ts +237 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.d.ts.map +1 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.js +52 -0
- package/node_modules/hastscript/lib/create-h.d.ts +148 -0
- package/node_modules/hastscript/lib/create-h.d.ts.map +1 -0
- package/node_modules/hastscript/lib/create-h.js +365 -0
- package/node_modules/hastscript/lib/index.d.ts +22 -0
- package/node_modules/hastscript/lib/index.d.ts.map +1 -0
- package/node_modules/hastscript/lib/index.js +27 -0
- package/node_modules/hastscript/lib/jsx-automatic.d.ts +43 -0
- package/node_modules/hastscript/lib/jsx-automatic.js +2 -0
- package/node_modules/hastscript/lib/jsx-classic.d.ts +47 -0
- package/node_modules/hastscript/lib/jsx-classic.js +2 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts +7 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts.map +1 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +46 -0
- package/node_modules/hastscript/license +22 -0
- package/node_modules/hastscript/package.json +126 -0
- package/node_modules/hastscript/readme.md +477 -0
- package/node_modules/highlight.js/LICENSE +29 -0
- package/node_modules/highlight.js/README.md +371 -0
- package/node_modules/highlight.js/lib/core.js +2517 -0
- package/node_modules/highlight.js/lib/highlight.js +2 -0
- package/node_modules/highlight.js/lib/index.js +195 -0
- package/node_modules/highlight.js/lib/languages/1c.js +521 -0
- package/node_modules/highlight.js/lib/languages/abnf.js +103 -0
- package/node_modules/highlight.js/lib/languages/accesslog.js +127 -0
- package/node_modules/highlight.js/lib/languages/actionscript.js +113 -0
- package/node_modules/highlight.js/lib/languages/ada.js +194 -0
- package/node_modules/highlight.js/lib/languages/angelscript.js +123 -0
- package/node_modules/highlight.js/lib/languages/apache.js +89 -0
- package/node_modules/highlight.js/lib/languages/applescript.js +189 -0
- package/node_modules/highlight.js/lib/languages/arcade.js +165 -0
- package/node_modules/highlight.js/lib/languages/arduino.js +576 -0
- package/node_modules/highlight.js/lib/languages/armasm.js +131 -0
- package/node_modules/highlight.js/lib/languages/asciidoc.js +303 -0
- package/node_modules/highlight.js/lib/languages/aspectj.js +186 -0
- package/node_modules/highlight.js/lib/languages/autohotkey.js +84 -0
- package/node_modules/highlight.js/lib/languages/autoit.js +183 -0
- package/node_modules/highlight.js/lib/languages/avrasm.js +80 -0
- package/node_modules/highlight.js/lib/languages/awk.js +73 -0
- package/node_modules/highlight.js/lib/languages/axapta.js +179 -0
- package/node_modules/highlight.js/lib/languages/bash.js +169 -0
- package/node_modules/highlight.js/lib/languages/basic.js +65 -0
- package/node_modules/highlight.js/lib/languages/bnf.js +38 -0
- package/node_modules/highlight.js/lib/languages/brainfuck.js +46 -0
- package/node_modules/highlight.js/lib/languages/c-like.js +501 -0
- package/node_modules/highlight.js/lib/languages/c.js +309 -0
- package/node_modules/highlight.js/lib/languages/cal.js +104 -0
- package/node_modules/highlight.js/lib/languages/capnproto.js +64 -0
- package/node_modules/highlight.js/lib/languages/ceylon.js +82 -0
- package/node_modules/highlight.js/lib/languages/clean.js +40 -0
- package/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
- package/node_modules/highlight.js/lib/languages/clojure.js +158 -0
- package/node_modules/highlight.js/lib/languages/cmake.js +64 -0
- package/node_modules/highlight.js/lib/languages/coffeescript.js +356 -0
- package/node_modules/highlight.js/lib/languages/coq.js +79 -0
- package/node_modules/highlight.js/lib/languages/cos.js +138 -0
- package/node_modules/highlight.js/lib/languages/cpp.js +464 -0
- package/node_modules/highlight.js/lib/languages/crmsh.js +102 -0
- package/node_modules/highlight.js/lib/languages/crystal.js +326 -0
- package/node_modules/highlight.js/lib/languages/csharp.js +441 -0
- package/node_modules/highlight.js/lib/languages/csp.js +37 -0
- package/node_modules/highlight.js/lib/languages/css.js +608 -0
- package/node_modules/highlight.js/lib/languages/d.js +271 -0
- package/node_modules/highlight.js/lib/languages/dart.js +199 -0
- package/node_modules/highlight.js/lib/languages/delphi.js +126 -0
- package/node_modules/highlight.js/lib/languages/diff.js +85 -0
- package/node_modules/highlight.js/lib/languages/django.js +77 -0
- package/node_modules/highlight.js/lib/languages/dns.js +46 -0
- package/node_modules/highlight.js/lib/languages/dockerfile.js +34 -0
- package/node_modules/highlight.js/lib/languages/dos.js +70 -0
- package/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
- package/node_modules/highlight.js/lib/languages/dts.js +153 -0
- package/node_modules/highlight.js/lib/languages/dust.js +45 -0
- package/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
- package/node_modules/highlight.js/lib/languages/elixir.js +259 -0
- package/node_modules/highlight.js/lib/languages/elm.js +129 -0
- package/node_modules/highlight.js/lib/languages/erb.js +29 -0
- package/node_modules/highlight.js/lib/languages/erlang-repl.js +86 -0
- package/node_modules/highlight.js/lib/languages/erlang.js +199 -0
- package/node_modules/highlight.js/lib/languages/excel.js +64 -0
- package/node_modules/highlight.js/lib/languages/fix.js +37 -0
- package/node_modules/highlight.js/lib/languages/flix.js +54 -0
- package/node_modules/highlight.js/lib/languages/fortran.js +159 -0
- package/node_modules/highlight.js/lib/languages/fsharp.js +86 -0
- package/node_modules/highlight.js/lib/languages/gams.js +208 -0
- package/node_modules/highlight.js/lib/languages/gauss.js +316 -0
- package/node_modules/highlight.js/lib/languages/gcode.js +88 -0
- package/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
- package/node_modules/highlight.js/lib/languages/glsl.js +128 -0
- package/node_modules/highlight.js/lib/languages/gml.js +885 -0
- package/node_modules/highlight.js/lib/languages/go.js +74 -0
- package/node_modules/highlight.js/lib/languages/golo.js +33 -0
- package/node_modules/highlight.js/lib/languages/gradle.js +44 -0
- package/node_modules/highlight.js/lib/languages/groovy.js +174 -0
- package/node_modules/highlight.js/lib/languages/haml.js +117 -0
- package/node_modules/highlight.js/lib/languages/handlebars.js +324 -0
- package/node_modules/highlight.js/lib/languages/haskell.js +173 -0
- package/node_modules/highlight.js/lib/languages/haxe.js +157 -0
- package/node_modules/highlight.js/lib/languages/hsp.js +65 -0
- package/node_modules/highlight.js/lib/languages/htmlbars.js +352 -0
- package/node_modules/highlight.js/lib/languages/http.js +121 -0
- package/node_modules/highlight.js/lib/languages/hy.js +109 -0
- package/node_modules/highlight.js/lib/languages/inform7.js +70 -0
- package/node_modules/highlight.js/lib/languages/ini.js +173 -0
- package/node_modules/highlight.js/lib/languages/irpf90.js +141 -0
- package/node_modules/highlight.js/lib/languages/isbl.js +3207 -0
- package/node_modules/highlight.js/lib/languages/java.js +181 -0
- package/node_modules/highlight.js/lib/languages/javascript.js +604 -0
- package/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
- package/node_modules/highlight.js/lib/languages/json.js +63 -0
- package/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
- package/node_modules/highlight.js/lib/languages/julia.js +416 -0
- package/node_modules/highlight.js/lib/languages/kotlin.js +284 -0
- package/node_modules/highlight.js/lib/languages/lasso.js +187 -0
- package/node_modules/highlight.js/lib/languages/latex.js +276 -0
- package/node_modules/highlight.js/lib/languages/ldif.js +42 -0
- package/node_modules/highlight.js/lib/languages/leaf.js +49 -0
- package/node_modules/highlight.js/lib/languages/less.js +666 -0
- package/node_modules/highlight.js/lib/languages/lisp.js +111 -0
- package/node_modules/highlight.js/lib/languages/livecodeserver.js +189 -0
- package/node_modules/highlight.js/lib/languages/livescript.js +374 -0
- package/node_modules/highlight.js/lib/languages/llvm.js +154 -0
- package/node_modules/highlight.js/lib/languages/lsl.js +95 -0
- package/node_modules/highlight.js/lib/languages/lua.js +82 -0
- package/node_modules/highlight.js/lib/languages/makefile.js +92 -0
- package/node_modules/highlight.js/lib/languages/markdown.js +258 -0
- package/node_modules/highlight.js/lib/languages/mathematica.js +6797 -0
- package/node_modules/highlight.js/lib/languages/matlab.js +106 -0
- package/node_modules/highlight.js/lib/languages/maxima.js +417 -0
- package/node_modules/highlight.js/lib/languages/mel.js +236 -0
- package/node_modules/highlight.js/lib/languages/mercury.js +121 -0
- package/node_modules/highlight.js/lib/languages/mipsasm.js +109 -0
- package/node_modules/highlight.js/lib/languages/mizar.js +29 -0
- package/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
- package/node_modules/highlight.js/lib/languages/monkey.js +89 -0
- package/node_modules/highlight.js/lib/languages/moonscript.js +147 -0
- package/node_modules/highlight.js/lib/languages/n1ql.js +77 -0
- package/node_modules/highlight.js/lib/languages/nginx.js +140 -0
- package/node_modules/highlight.js/lib/languages/nim.js +79 -0
- package/node_modules/highlight.js/lib/languages/nix.js +65 -0
- package/node_modules/highlight.js/lib/languages/node-repl.js +37 -0
- package/node_modules/highlight.js/lib/languages/nsis.js +119 -0
- package/node_modules/highlight.js/lib/languages/objectivec.js +121 -0
- package/node_modules/highlight.js/lib/languages/ocaml.js +82 -0
- package/node_modules/highlight.js/lib/languages/openscad.js +81 -0
- package/node_modules/highlight.js/lib/languages/oxygene.js +101 -0
- package/node_modules/highlight.js/lib/languages/parser3.js +57 -0
- package/node_modules/highlight.js/lib/languages/perl.js +515 -0
- package/node_modules/highlight.js/lib/languages/pf.js +59 -0
- package/node_modules/highlight.js/lib/languages/pgsql.js +630 -0
- package/node_modules/highlight.js/lib/languages/php-template.js +54 -0
- package/node_modules/highlight.js/lib/languages/php.js +204 -0
- package/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
- package/node_modules/highlight.js/lib/languages/pony.js +89 -0
- package/node_modules/highlight.js/lib/languages/powershell.js +331 -0
- package/node_modules/highlight.js/lib/languages/processing.js +58 -0
- package/node_modules/highlight.js/lib/languages/profile.js +43 -0
- package/node_modules/highlight.js/lib/languages/prolog.js +102 -0
- package/node_modules/highlight.js/lib/languages/properties.js +85 -0
- package/node_modules/highlight.js/lib/languages/protobuf.js +47 -0
- package/node_modules/highlight.js/lib/languages/puppet.js +147 -0
- package/node_modules/highlight.js/lib/languages/purebasic.js +101 -0
- package/node_modules/highlight.js/lib/languages/python-repl.js +36 -0
- package/node_modules/highlight.js/lib/languages/python.js +446 -0
- package/node_modules/highlight.js/lib/languages/q.js +37 -0
- package/node_modules/highlight.js/lib/languages/qml.js +225 -0
- package/node_modules/highlight.js/lib/languages/r.js +231 -0
- package/node_modules/highlight.js/lib/languages/reasonml.js +321 -0
- package/node_modules/highlight.js/lib/languages/rib.js +37 -0
- package/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
- package/node_modules/highlight.js/lib/languages/routeros.js +172 -0
- package/node_modules/highlight.js/lib/languages/rsl.js +49 -0
- package/node_modules/highlight.js/lib/languages/ruby.js +387 -0
- package/node_modules/highlight.js/lib/languages/ruleslanguage.js +78 -0
- package/node_modules/highlight.js/lib/languages/rust.js +146 -0
- package/node_modules/highlight.js/lib/languages/sas.js +133 -0
- package/node_modules/highlight.js/lib/languages/scala.js +140 -0
- package/node_modules/highlight.js/lib/languages/scheme.js +207 -0
- package/node_modules/highlight.js/lib/languages/scilab.js +73 -0
- package/node_modules/highlight.js/lib/languages/scss.js +545 -0
- package/node_modules/highlight.js/lib/languages/shell.js +30 -0
- package/node_modules/highlight.js/lib/languages/smali.js +135 -0
- package/node_modules/highlight.js/lib/languages/smalltalk.js +63 -0
- package/node_modules/highlight.js/lib/languages/sml.js +81 -0
- package/node_modules/highlight.js/lib/languages/sqf.js +448 -0
- package/node_modules/highlight.js/lib/languages/sql.js +699 -0
- package/node_modules/highlight.js/lib/languages/sql_more.js +183 -0
- package/node_modules/highlight.js/lib/languages/stan.js +548 -0
- package/node_modules/highlight.js/lib/languages/stata.js +60 -0
- package/node_modules/highlight.js/lib/languages/step21.js +66 -0
- package/node_modules/highlight.js/lib/languages/stylus.js +609 -0
- package/node_modules/highlight.js/lib/languages/subunit.js +51 -0
- package/node_modules/highlight.js/lib/languages/swift.js +873 -0
- package/node_modules/highlight.js/lib/languages/taggerscript.js +52 -0
- package/node_modules/highlight.js/lib/languages/tap.js +55 -0
- package/node_modules/highlight.js/lib/languages/tcl.js +115 -0
- package/node_modules/highlight.js/lib/languages/thrift.js +51 -0
- package/node_modules/highlight.js/lib/languages/tp.js +95 -0
- package/node_modules/highlight.js/lib/languages/twig.js +77 -0
- package/node_modules/highlight.js/lib/languages/typescript.js +697 -0
- package/node_modules/highlight.js/lib/languages/vala.js +61 -0
- package/node_modules/highlight.js/lib/languages/vbnet.js +214 -0
- package/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
- package/node_modules/highlight.js/lib/languages/vbscript.js +109 -0
- package/node_modules/highlight.js/lib/languages/verilog.js +131 -0
- package/node_modules/highlight.js/lib/languages/vhdl.js +71 -0
- package/node_modules/highlight.js/lib/languages/vim.js +123 -0
- package/node_modules/highlight.js/lib/languages/x86asm.js +163 -0
- package/node_modules/highlight.js/lib/languages/xl.js +92 -0
- package/node_modules/highlight.js/lib/languages/xml.js +287 -0
- package/node_modules/highlight.js/lib/languages/xquery.js +197 -0
- package/node_modules/highlight.js/lib/languages/yaml.js +176 -0
- package/node_modules/highlight.js/lib/languages/zephir.js +140 -0
- package/node_modules/highlight.js/package.json +86 -0
- package/node_modules/highlight.js/scss/a11y-dark.scss +99 -0
- package/node_modules/highlight.js/scss/a11y-light.scss +99 -0
- package/node_modules/highlight.js/scss/agate.scss +108 -0
- package/node_modules/highlight.js/scss/an-old-hope.scss +89 -0
- package/node_modules/highlight.js/scss/androidstudio.scss +66 -0
- package/node_modules/highlight.js/scss/arduino-light.scss +87 -0
- package/node_modules/highlight.js/scss/arta.scss +73 -0
- package/node_modules/highlight.js/scss/ascetic.scss +45 -0
- package/node_modules/highlight.js/scss/atelier-cave-dark.scss +83 -0
- package/node_modules/highlight.js/scss/atelier-cave-light.scss +85 -0
- package/node_modules/highlight.js/scss/atelier-dune-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-dune-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-estuary-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-estuary-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-forest-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-forest-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-heath-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-heath-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-lakeside-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-lakeside-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-plateau-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-plateau-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-savanna-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-savanna-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-seaside-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-seaside-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-sulphurpool-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-sulphurpool-light.scss +69 -0
- package/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +75 -0
- package/node_modules/highlight.js/scss/atom-one-dark.scss +96 -0
- package/node_modules/highlight.js/scss/atom-one-light.scss +96 -0
- package/node_modules/highlight.js/scss/brown-paper.scss +64 -0
- package/node_modules/highlight.js/scss/brown-papersq.png +0 -0
- package/node_modules/highlight.js/scss/codepen-embed.scss +60 -0
- package/node_modules/highlight.js/scss/color-brewer.scss +71 -0
- package/node_modules/highlight.js/scss/darcula.scss +74 -0
- package/node_modules/highlight.js/scss/dark.scss +63 -0
- package/node_modules/highlight.js/scss/default.scss +99 -0
- package/node_modules/highlight.js/scss/docco.scss +97 -0
- package/node_modules/highlight.js/scss/dracula.scss +76 -0
- package/node_modules/highlight.js/scss/far.scss +71 -0
- package/node_modules/highlight.js/scss/foundation.scss +89 -0
- package/node_modules/highlight.js/scss/github-gist.scss +79 -0
- package/node_modules/highlight.js/scss/github.scss +99 -0
- package/node_modules/highlight.js/scss/gml.scss +78 -0
- package/node_modules/highlight.js/scss/googlecode.scss +89 -0
- package/node_modules/highlight.js/scss/gradient-dark.scss +122 -0
- package/node_modules/highlight.js/scss/gradient-light.scss +130 -0
- package/node_modules/highlight.js/scss/grayscale.scss +101 -0
- package/node_modules/highlight.js/scss/gruvbox-dark.scss +108 -0
- package/node_modules/highlight.js/scss/gruvbox-light.scss +108 -0
- package/node_modules/highlight.js/scss/hopscotch.scss +84 -0
- package/node_modules/highlight.js/scss/hybrid.scss +102 -0
- package/node_modules/highlight.js/scss/idea.scss +97 -0
- package/node_modules/highlight.js/scss/ir-black.scss +73 -0
- package/node_modules/highlight.js/scss/isbl-editor-dark.scss +112 -0
- package/node_modules/highlight.js/scss/isbl-editor-light.scss +111 -0
- package/node_modules/highlight.js/scss/kimbie.dark.scss +74 -0
- package/node_modules/highlight.js/scss/kimbie.light.scss +74 -0
- package/node_modules/highlight.js/scss/lightfair.scss +88 -0
- package/node_modules/highlight.js/scss/lioshi.scss +88 -0
- package/node_modules/highlight.js/scss/magula.scss +70 -0
- package/node_modules/highlight.js/scss/mono-blue.scss +56 -0
- package/node_modules/highlight.js/scss/monokai-sublime.scss +83 -0
- package/node_modules/highlight.js/scss/monokai.scss +71 -0
- package/node_modules/highlight.js/scss/night-owl.scss +182 -0
- package/node_modules/highlight.js/scss/nnfx-dark.scss +106 -0
- package/node_modules/highlight.js/scss/nnfx.scss +106 -0
- package/node_modules/highlight.js/scss/nord.scss +309 -0
- package/node_modules/highlight.js/scss/obsidian.scss +88 -0
- package/node_modules/highlight.js/scss/ocean.scss +74 -0
- package/node_modules/highlight.js/scss/paraiso-dark.scss +72 -0
- package/node_modules/highlight.js/scss/paraiso-light.scss +72 -0
- package/node_modules/highlight.js/scss/pojoaque.jpg +0 -0
- package/node_modules/highlight.js/scss/pojoaque.scss +83 -0
- package/node_modules/highlight.js/scss/purebasic.scss +96 -0
- package/node_modules/highlight.js/scss/qtcreator_dark.scss +83 -0
- package/node_modules/highlight.js/scss/qtcreator_light.scss +83 -0
- package/node_modules/highlight.js/scss/railscasts.scss +106 -0
- package/node_modules/highlight.js/scss/rainbow.scss +85 -0
- package/node_modules/highlight.js/scss/routeros.scss +108 -0
- package/node_modules/highlight.js/scss/school-book.png +0 -0
- package/node_modules/highlight.js/scss/school-book.scss +69 -0
- package/node_modules/highlight.js/scss/shades-of-purple.scss +96 -0
- package/node_modules/highlight.js/scss/solarized-dark.scss +84 -0
- package/node_modules/highlight.js/scss/solarized-light.scss +84 -0
- package/node_modules/highlight.js/scss/srcery.scss +78 -0
- package/node_modules/highlight.js/scss/stackoverflow-dark.scss +78 -0
- package/node_modules/highlight.js/scss/stackoverflow-light.scss +78 -0
- package/node_modules/highlight.js/scss/sunburst.scss +102 -0
- package/node_modules/highlight.js/scss/tomorrow-night-blue.scss +75 -0
- package/node_modules/highlight.js/scss/tomorrow-night-bright.scss +74 -0
- package/node_modules/highlight.js/scss/tomorrow-night-eighties.scss +74 -0
- package/node_modules/highlight.js/scss/tomorrow-night.scss +75 -0
- package/node_modules/highlight.js/scss/tomorrow.scss +72 -0
- package/node_modules/highlight.js/scss/vs.scss +68 -0
- package/node_modules/highlight.js/scss/vs2015.scss +115 -0
- package/node_modules/highlight.js/scss/xcode.scss +104 -0
- package/node_modules/highlight.js/scss/xt256.scss +92 -0
- package/node_modules/highlight.js/scss/zenburn.scss +80 -0
- package/node_modules/highlight.js/styles/a11y-dark.css +99 -0
- package/node_modules/highlight.js/styles/a11y-light.css +99 -0
- package/node_modules/highlight.js/styles/agate.css +108 -0
- package/node_modules/highlight.js/styles/an-old-hope.css +89 -0
- package/node_modules/highlight.js/styles/androidstudio.css +66 -0
- package/node_modules/highlight.js/styles/arduino-light.css +87 -0
- package/node_modules/highlight.js/styles/arta.css +73 -0
- package/node_modules/highlight.js/styles/ascetic.css +45 -0
- package/node_modules/highlight.js/styles/atelier-cave-dark.css +83 -0
- package/node_modules/highlight.js/styles/atelier-cave-light.css +85 -0
- package/node_modules/highlight.js/styles/atelier-dune-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-dune-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-estuary-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-estuary-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-forest-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-forest-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-heath-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-heath-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-lakeside-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-lakeside-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-plateau-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-plateau-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-savanna-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-savanna-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-seaside-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-seaside-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-sulphurpool-light.css +69 -0
- package/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +75 -0
- package/node_modules/highlight.js/styles/atom-one-dark.css +96 -0
- package/node_modules/highlight.js/styles/atom-one-light.css +96 -0
- package/node_modules/highlight.js/styles/brown-paper.css +64 -0
- package/node_modules/highlight.js/styles/brown-papersq.png +0 -0
- package/node_modules/highlight.js/styles/codepen-embed.css +60 -0
- package/node_modules/highlight.js/styles/color-brewer.css +71 -0
- package/node_modules/highlight.js/styles/darcula.css +74 -0
- package/node_modules/highlight.js/styles/dark.css +63 -0
- package/node_modules/highlight.js/styles/default.css +99 -0
- package/node_modules/highlight.js/styles/docco.css +97 -0
- package/node_modules/highlight.js/styles/dracula.css +76 -0
- package/node_modules/highlight.js/styles/far.css +71 -0
- package/node_modules/highlight.js/styles/foundation.css +89 -0
- package/node_modules/highlight.js/styles/github-gist.css +79 -0
- package/node_modules/highlight.js/styles/github.css +99 -0
- package/node_modules/highlight.js/styles/gml.css +78 -0
- package/node_modules/highlight.js/styles/googlecode.css +89 -0
- package/node_modules/highlight.js/styles/gradient-dark.css +122 -0
- package/node_modules/highlight.js/styles/gradient-light.css +130 -0
- package/node_modules/highlight.js/styles/grayscale.css +101 -0
- package/node_modules/highlight.js/styles/gruvbox-dark.css +108 -0
- package/node_modules/highlight.js/styles/gruvbox-light.css +108 -0
- package/node_modules/highlight.js/styles/hopscotch.css +84 -0
- package/node_modules/highlight.js/styles/hybrid.css +102 -0
- package/node_modules/highlight.js/styles/idea.css +97 -0
- package/node_modules/highlight.js/styles/ir-black.css +73 -0
- package/node_modules/highlight.js/styles/isbl-editor-dark.css +112 -0
- package/node_modules/highlight.js/styles/isbl-editor-light.css +111 -0
- package/node_modules/highlight.js/styles/kimbie.dark.css +74 -0
- package/node_modules/highlight.js/styles/kimbie.light.css +74 -0
- package/node_modules/highlight.js/styles/lightfair.css +88 -0
- package/node_modules/highlight.js/styles/lioshi.css +88 -0
- package/node_modules/highlight.js/styles/magula.css +70 -0
- package/node_modules/highlight.js/styles/mono-blue.css +56 -0
- package/node_modules/highlight.js/styles/monokai-sublime.css +83 -0
- package/node_modules/highlight.js/styles/monokai.css +71 -0
- package/node_modules/highlight.js/styles/night-owl.css +182 -0
- package/node_modules/highlight.js/styles/nnfx-dark.css +106 -0
- package/node_modules/highlight.js/styles/nnfx.css +106 -0
- package/node_modules/highlight.js/styles/nord.css +309 -0
- package/node_modules/highlight.js/styles/obsidian.css +88 -0
- package/node_modules/highlight.js/styles/ocean.css +74 -0
- package/node_modules/highlight.js/styles/paraiso-dark.css +72 -0
- package/node_modules/highlight.js/styles/paraiso-light.css +72 -0
- package/node_modules/highlight.js/styles/pojoaque.css +83 -0
- package/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
- package/node_modules/highlight.js/styles/purebasic.css +96 -0
- package/node_modules/highlight.js/styles/qtcreator_dark.css +83 -0
- package/node_modules/highlight.js/styles/qtcreator_light.css +83 -0
- package/node_modules/highlight.js/styles/railscasts.css +106 -0
- package/node_modules/highlight.js/styles/rainbow.css +85 -0
- package/node_modules/highlight.js/styles/routeros.css +108 -0
- package/node_modules/highlight.js/styles/school-book.css +69 -0
- package/node_modules/highlight.js/styles/school-book.png +0 -0
- package/node_modules/highlight.js/styles/shades-of-purple.css +96 -0
- package/node_modules/highlight.js/styles/solarized-dark.css +84 -0
- package/node_modules/highlight.js/styles/solarized-light.css +84 -0
- package/node_modules/highlight.js/styles/srcery.css +78 -0
- package/node_modules/highlight.js/styles/stackoverflow-dark.css +78 -0
- package/node_modules/highlight.js/styles/stackoverflow-light.css +78 -0
- package/node_modules/highlight.js/styles/sunburst.css +102 -0
- package/node_modules/highlight.js/styles/tomorrow-night-blue.css +75 -0
- package/node_modules/highlight.js/styles/tomorrow-night-bright.css +74 -0
- package/node_modules/highlight.js/styles/tomorrow-night-eighties.css +74 -0
- package/node_modules/highlight.js/styles/tomorrow-night.css +75 -0
- package/node_modules/highlight.js/styles/tomorrow.css +72 -0
- package/node_modules/highlight.js/styles/vs.css +68 -0
- package/node_modules/highlight.js/styles/vs2015.css +115 -0
- package/node_modules/highlight.js/styles/xcode.css +104 -0
- package/node_modules/highlight.js/styles/xt256.css +92 -0
- package/node_modules/highlight.js/styles/zenburn.css +80 -0
- package/node_modules/highlight.js/types/index.d.ts +261 -0
- package/node_modules/highlightjs-vue/README.md +33 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.cjs.js +61 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.esm.js +59 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.js +66 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.min.js +1 -0
- package/node_modules/highlightjs-vue/package.json +40 -0
- package/node_modules/is-alphabetical/index.d.ts +8 -0
- package/node_modules/is-alphabetical/index.js +16 -0
- package/node_modules/is-alphabetical/license +22 -0
- package/node_modules/is-alphabetical/package.json +73 -0
- package/node_modules/is-alphabetical/readme.md +141 -0
- package/node_modules/is-alphanumerical/index.d.ts +8 -0
- package/node_modules/is-alphanumerical/index.js +13 -0
- package/node_modules/is-alphanumerical/license +22 -0
- package/node_modules/is-alphanumerical/package.json +79 -0
- package/node_modules/is-alphanumerical/readme.md +142 -0
- package/node_modules/is-decimal/index.d.ts +8 -0
- package/node_modules/is-decimal/index.js +13 -0
- package/node_modules/is-decimal/license +22 -0
- package/node_modules/is-decimal/package.json +73 -0
- package/node_modules/is-decimal/readme.md +139 -0
- package/node_modules/is-hexadecimal/index.d.ts +8 -0
- package/node_modules/is-hexadecimal/index.js +17 -0
- package/node_modules/is-hexadecimal/license +22 -0
- package/node_modules/is-hexadecimal/package.json +73 -0
- package/node_modules/is-hexadecimal/readme.md +141 -0
- package/node_modules/lowlight/index.js +299 -0
- package/node_modules/lowlight/lib/core.js +207 -0
- package/node_modules/lowlight/license +22 -0
- package/node_modules/lowlight/node_modules/fault/index.js +31 -0
- package/node_modules/lowlight/node_modules/fault/license +22 -0
- package/node_modules/lowlight/node_modules/fault/package.json +79 -0
- package/node_modules/lowlight/node_modules/fault/readme.md +138 -0
- package/node_modules/lowlight/package.json +91 -0
- package/node_modules/lowlight/readme.md +339 -0
- package/node_modules/parse-entities/index.d.ts +126 -0
- package/node_modules/parse-entities/index.js +3 -0
- package/node_modules/parse-entities/lib/index.d.ts +9 -0
- package/node_modules/parse-entities/lib/index.d.ts.map +1 -0
- package/node_modules/parse-entities/lib/index.js +407 -0
- package/node_modules/parse-entities/license +22 -0
- package/node_modules/parse-entities/node_modules/@types/unist/LICENSE +21 -0
- package/node_modules/parse-entities/node_modules/@types/unist/README.md +122 -0
- package/node_modules/parse-entities/node_modules/@types/unist/index.d.ts +103 -0
- package/node_modules/parse-entities/node_modules/@types/unist/package.json +55 -0
- package/node_modules/parse-entities/package.json +91 -0
- package/node_modules/parse-entities/readme.md +266 -0
- package/node_modules/prismjs/CHANGELOG.md +3068 -0
- package/node_modules/prismjs/LICENSE +21 -0
- package/node_modules/prismjs/README.md +51 -0
- package/node_modules/prismjs/_headers +2 -0
- package/node_modules/prismjs/components/index.js +56 -0
- package/node_modules/prismjs/components/prism-abap.js +48 -0
- package/node_modules/prismjs/components/prism-abap.min.js +1 -0
- package/node_modules/prismjs/components/prism-abnf.js +54 -0
- package/node_modules/prismjs/components/prism-abnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-actionscript.js +19 -0
- package/node_modules/prismjs/components/prism-actionscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-ada.js +22 -0
- package/node_modules/prismjs/components/prism-ada.min.js +1 -0
- package/node_modules/prismjs/components/prism-agda.js +24 -0
- package/node_modules/prismjs/components/prism-agda.min.js +1 -0
- package/node_modules/prismjs/components/prism-al.js +25 -0
- package/node_modules/prismjs/components/prism-al.min.js +1 -0
- package/node_modules/prismjs/components/prism-antlr4.js +65 -0
- package/node_modules/prismjs/components/prism-antlr4.min.js +1 -0
- package/node_modules/prismjs/components/prism-apacheconf.js +47 -0
- package/node_modules/prismjs/components/prism-apacheconf.min.js +1 -0
- package/node_modules/prismjs/components/prism-apex.js +65 -0
- package/node_modules/prismjs/components/prism-apex.min.js +1 -0
- package/node_modules/prismjs/components/prism-apl.js +32 -0
- package/node_modules/prismjs/components/prism-apl.min.js +1 -0
- package/node_modules/prismjs/components/prism-applescript.js +17 -0
- package/node_modules/prismjs/components/prism-applescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-aql.js +49 -0
- package/node_modules/prismjs/components/prism-aql.min.js +1 -0
- package/node_modules/prismjs/components/prism-arduino.js +7 -0
- package/node_modules/prismjs/components/prism-arduino.min.js +1 -0
- package/node_modules/prismjs/components/prism-arff.js +10 -0
- package/node_modules/prismjs/components/prism-arff.min.js +1 -0
- package/node_modules/prismjs/components/prism-armasm.js +49 -0
- package/node_modules/prismjs/components/prism-armasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-arturo.js +105 -0
- package/node_modules/prismjs/components/prism-arturo.min.js +1 -0
- package/node_modules/prismjs/components/prism-asciidoc.js +234 -0
- package/node_modules/prismjs/components/prism-asciidoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-asm6502.js +29 -0
- package/node_modules/prismjs/components/prism-asm6502.min.js +1 -0
- package/node_modules/prismjs/components/prism-asmatmel.js +43 -0
- package/node_modules/prismjs/components/prism-asmatmel.min.js +1 -0
- package/node_modules/prismjs/components/prism-aspnet.js +48 -0
- package/node_modules/prismjs/components/prism-aspnet.min.js +1 -0
- package/node_modules/prismjs/components/prism-autohotkey.js +44 -0
- package/node_modules/prismjs/components/prism-autohotkey.min.js +1 -0
- package/node_modules/prismjs/components/prism-autoit.js +34 -0
- package/node_modules/prismjs/components/prism-autoit.min.js +1 -0
- package/node_modules/prismjs/components/prism-avisynth.js +188 -0
- package/node_modules/prismjs/components/prism-avisynth.min.js +1 -0
- package/node_modules/prismjs/components/prism-avro-idl.js +50 -0
- package/node_modules/prismjs/components/prism-avro-idl.min.js +1 -0
- package/node_modules/prismjs/components/prism-awk.js +32 -0
- package/node_modules/prismjs/components/prism-awk.min.js +1 -0
- package/node_modules/prismjs/components/prism-bash.js +235 -0
- package/node_modules/prismjs/components/prism-bash.min.js +1 -0
- package/node_modules/prismjs/components/prism-basic.js +17 -0
- package/node_modules/prismjs/components/prism-basic.min.js +1 -0
- package/node_modules/prismjs/components/prism-batch.js +99 -0
- package/node_modules/prismjs/components/prism-batch.min.js +1 -0
- package/node_modules/prismjs/components/prism-bbcode.js +29 -0
- package/node_modules/prismjs/components/prism-bbcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-bbj.js +19 -0
- package/node_modules/prismjs/components/prism-bbj.min.js +1 -0
- package/node_modules/prismjs/components/prism-bicep.js +77 -0
- package/node_modules/prismjs/components/prism-bicep.min.js +1 -0
- package/node_modules/prismjs/components/prism-birb.js +23 -0
- package/node_modules/prismjs/components/prism-birb.min.js +1 -0
- package/node_modules/prismjs/components/prism-bison.js +39 -0
- package/node_modules/prismjs/components/prism-bison.min.js +1 -0
- package/node_modules/prismjs/components/prism-bnf.js +21 -0
- package/node_modules/prismjs/components/prism-bnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-bqn.js +63 -0
- package/node_modules/prismjs/components/prism-bqn.min.js +1 -0
- package/node_modules/prismjs/components/prism-brainfuck.js +20 -0
- package/node_modules/prismjs/components/prism-brainfuck.min.js +1 -0
- package/node_modules/prismjs/components/prism-brightscript.js +44 -0
- package/node_modules/prismjs/components/prism-brightscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-bro.js +37 -0
- package/node_modules/prismjs/components/prism-bro.min.js +1 -0
- package/node_modules/prismjs/components/prism-bsl.js +75 -0
- package/node_modules/prismjs/components/prism-bsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-c.js +80 -0
- package/node_modules/prismjs/components/prism-c.min.js +1 -0
- package/node_modules/prismjs/components/prism-cfscript.js +44 -0
- package/node_modules/prismjs/components/prism-cfscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-chaiscript.js +60 -0
- package/node_modules/prismjs/components/prism-chaiscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-cil.js +27 -0
- package/node_modules/prismjs/components/prism-cil.min.js +1 -0
- package/node_modules/prismjs/components/prism-cilkc.js +8 -0
- package/node_modules/prismjs/components/prism-cilkc.min.js +1 -0
- package/node_modules/prismjs/components/prism-cilkcpp.js +9 -0
- package/node_modules/prismjs/components/prism-cilkcpp.min.js +1 -0
- package/node_modules/prismjs/components/prism-clike.js +31 -0
- package/node_modules/prismjs/components/prism-clike.min.js +1 -0
- package/node_modules/prismjs/components/prism-clojure.js +31 -0
- package/node_modules/prismjs/components/prism-clojure.min.js +1 -0
- package/node_modules/prismjs/components/prism-cmake.js +29 -0
- package/node_modules/prismjs/components/prism-cmake.min.js +1 -0
- package/node_modules/prismjs/components/prism-cobol.js +53 -0
- package/node_modules/prismjs/components/prism-cobol.min.js +1 -0
- package/node_modules/prismjs/components/prism-coffeescript.js +96 -0
- package/node_modules/prismjs/components/prism-coffeescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-concurnas.js +61 -0
- package/node_modules/prismjs/components/prism-concurnas.min.js +1 -0
- package/node_modules/prismjs/components/prism-cooklang.js +146 -0
- package/node_modules/prismjs/components/prism-cooklang.min.js +1 -0
- package/node_modules/prismjs/components/prism-coq.js +54 -0
- package/node_modules/prismjs/components/prism-coq.min.js +1 -0
- package/node_modules/prismjs/components/prism-core.js +1263 -0
- package/node_modules/prismjs/components/prism-core.min.js +1 -0
- package/node_modules/prismjs/components/prism-cpp.js +99 -0
- package/node_modules/prismjs/components/prism-cpp.min.js +1 -0
- package/node_modules/prismjs/components/prism-crystal.js +57 -0
- package/node_modules/prismjs/components/prism-crystal.min.js +1 -0
- package/node_modules/prismjs/components/prism-csharp.js +366 -0
- package/node_modules/prismjs/components/prism-csharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-cshtml.js +199 -0
- package/node_modules/prismjs/components/prism-cshtml.min.js +1 -0
- package/node_modules/prismjs/components/prism-csp.js +76 -0
- package/node_modules/prismjs/components/prism-csp.min.js +1 -0
- package/node_modules/prismjs/components/prism-css-extras.js +120 -0
- package/node_modules/prismjs/components/prism-css-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-css.js +64 -0
- package/node_modules/prismjs/components/prism-css.min.js +1 -0
- package/node_modules/prismjs/components/prism-csv.js +6 -0
- package/node_modules/prismjs/components/prism-csv.min.js +1 -0
- package/node_modules/prismjs/components/prism-cue.js +84 -0
- package/node_modules/prismjs/components/prism-cue.min.js +1 -0
- package/node_modules/prismjs/components/prism-cypher.js +36 -0
- package/node_modules/prismjs/components/prism-cypher.min.js +1 -0
- package/node_modules/prismjs/components/prism-d.js +84 -0
- package/node_modules/prismjs/components/prism-d.min.js +1 -0
- package/node_modules/prismjs/components/prism-dart.js +79 -0
- package/node_modules/prismjs/components/prism-dart.min.js +1 -0
- package/node_modules/prismjs/components/prism-dataweave.js +41 -0
- package/node_modules/prismjs/components/prism-dataweave.min.js +1 -0
- package/node_modules/prismjs/components/prism-dax.js +27 -0
- package/node_modules/prismjs/components/prism-dax.min.js +1 -0
- package/node_modules/prismjs/components/prism-dhall.js +69 -0
- package/node_modules/prismjs/components/prism-dhall.min.js +1 -0
- package/node_modules/prismjs/components/prism-diff.js +64 -0
- package/node_modules/prismjs/components/prism-diff.min.js +1 -0
- package/node_modules/prismjs/components/prism-django.js +60 -0
- package/node_modules/prismjs/components/prism-django.min.js +1 -0
- package/node_modules/prismjs/components/prism-dns-zone-file.js +33 -0
- package/node_modules/prismjs/components/prism-dns-zone-file.min.js +1 -0
- package/node_modules/prismjs/components/prism-docker.js +98 -0
- package/node_modules/prismjs/components/prism-docker.min.js +1 -0
- package/node_modules/prismjs/components/prism-dot.js +76 -0
- package/node_modules/prismjs/components/prism-dot.min.js +1 -0
- package/node_modules/prismjs/components/prism-ebnf.js +22 -0
- package/node_modules/prismjs/components/prism-ebnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-editorconfig.js +26 -0
- package/node_modules/prismjs/components/prism-editorconfig.min.js +1 -0
- package/node_modules/prismjs/components/prism-eiffel.js +34 -0
- package/node_modules/prismjs/components/prism-eiffel.min.js +1 -0
- package/node_modules/prismjs/components/prism-ejs.js +26 -0
- package/node_modules/prismjs/components/prism-ejs.min.js +1 -0
- package/node_modules/prismjs/components/prism-elixir.js +98 -0
- package/node_modules/prismjs/components/prism-elixir.min.js +1 -0
- package/node_modules/prismjs/components/prism-elm.js +45 -0
- package/node_modules/prismjs/components/prism-elm.min.js +1 -0
- package/node_modules/prismjs/components/prism-erb.js +25 -0
- package/node_modules/prismjs/components/prism-erb.min.js +1 -0
- package/node_modules/prismjs/components/prism-erlang.js +44 -0
- package/node_modules/prismjs/components/prism-erlang.min.js +1 -0
- package/node_modules/prismjs/components/prism-etlua.js +23 -0
- package/node_modules/prismjs/components/prism-etlua.min.js +1 -0
- package/node_modules/prismjs/components/prism-excel-formula.js +66 -0
- package/node_modules/prismjs/components/prism-excel-formula.min.js +1 -0
- package/node_modules/prismjs/components/prism-factor.js +403 -0
- package/node_modules/prismjs/components/prism-factor.min.js +1 -0
- package/node_modules/prismjs/components/prism-false.js +32 -0
- package/node_modules/prismjs/components/prism-false.min.js +1 -0
- package/node_modules/prismjs/components/prism-firestore-security-rules.js +35 -0
- package/node_modules/prismjs/components/prism-firestore-security-rules.min.js +1 -0
- package/node_modules/prismjs/components/prism-flow.js +35 -0
- package/node_modules/prismjs/components/prism-flow.min.js +1 -0
- package/node_modules/prismjs/components/prism-fortran.js +40 -0
- package/node_modules/prismjs/components/prism-fortran.min.js +1 -0
- package/node_modules/prismjs/components/prism-fsharp.js +75 -0
- package/node_modules/prismjs/components/prism-fsharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-ftl.js +98 -0
- package/node_modules/prismjs/components/prism-ftl.min.js +1 -0
- package/node_modules/prismjs/components/prism-gap.js +54 -0
- package/node_modules/prismjs/components/prism-gap.min.js +1 -0
- package/node_modules/prismjs/components/prism-gcode.js +16 -0
- package/node_modules/prismjs/components/prism-gcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-gdscript.js +27 -0
- package/node_modules/prismjs/components/prism-gdscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-gedcom.js +28 -0
- package/node_modules/prismjs/components/prism-gedcom.min.js +1 -0
- package/node_modules/prismjs/components/prism-gettext.js +43 -0
- package/node_modules/prismjs/components/prism-gettext.min.js +1 -0
- package/node_modules/prismjs/components/prism-gherkin.js +85 -0
- package/node_modules/prismjs/components/prism-gherkin.min.js +1 -0
- package/node_modules/prismjs/components/prism-git.js +68 -0
- package/node_modules/prismjs/components/prism-git.min.js +1 -0
- package/node_modules/prismjs/components/prism-glsl.js +3 -0
- package/node_modules/prismjs/components/prism-glsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-gml.js +7 -0
- package/node_modules/prismjs/components/prism-gml.min.js +1 -0
- package/node_modules/prismjs/components/prism-gn.js +51 -0
- package/node_modules/prismjs/components/prism-gn.min.js +1 -0
- package/node_modules/prismjs/components/prism-go-module.js +24 -0
- package/node_modules/prismjs/components/prism-go-module.min.js +1 -0
- package/node_modules/prismjs/components/prism-go.js +28 -0
- package/node_modules/prismjs/components/prism-go.min.js +1 -0
- package/node_modules/prismjs/components/prism-gradle.js +63 -0
- package/node_modules/prismjs/components/prism-gradle.min.js +1 -0
- package/node_modules/prismjs/components/prism-graphql.js +211 -0
- package/node_modules/prismjs/components/prism-graphql.min.js +1 -0
- package/node_modules/prismjs/components/prism-groovy.js +65 -0
- package/node_modules/prismjs/components/prism-groovy.min.js +1 -0
- package/node_modules/prismjs/components/prism-haml.js +149 -0
- package/node_modules/prismjs/components/prism-haml.min.js +1 -0
- package/node_modules/prismjs/components/prism-handlebars.js +40 -0
- package/node_modules/prismjs/components/prism-handlebars.min.js +1 -0
- package/node_modules/prismjs/components/prism-haskell.js +66 -0
- package/node_modules/prismjs/components/prism-haskell.min.js +1 -0
- package/node_modules/prismjs/components/prism-haxe.js +78 -0
- package/node_modules/prismjs/components/prism-haxe.min.js +1 -0
- package/node_modules/prismjs/components/prism-hcl.js +63 -0
- package/node_modules/prismjs/components/prism-hcl.min.js +1 -0
- package/node_modules/prismjs/components/prism-hlsl.js +20 -0
- package/node_modules/prismjs/components/prism-hlsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-hoon.js +14 -0
- package/node_modules/prismjs/components/prism-hoon.min.js +1 -0
- package/node_modules/prismjs/components/prism-hpkp.js +14 -0
- package/node_modules/prismjs/components/prism-hpkp.min.js +1 -0
- package/node_modules/prismjs/components/prism-hsts.js +14 -0
- package/node_modules/prismjs/components/prism-hsts.min.js +1 -0
- package/node_modules/prismjs/components/prism-http.js +151 -0
- package/node_modules/prismjs/components/prism-http.min.js +1 -0
- package/node_modules/prismjs/components/prism-ichigojam.js +15 -0
- package/node_modules/prismjs/components/prism-ichigojam.min.js +1 -0
- package/node_modules/prismjs/components/prism-icon.js +20 -0
- package/node_modules/prismjs/components/prism-icon.min.js +1 -0
- package/node_modules/prismjs/components/prism-icu-message-format.js +148 -0
- package/node_modules/prismjs/components/prism-icu-message-format.min.js +1 -0
- package/node_modules/prismjs/components/prism-idris.js +19 -0
- package/node_modules/prismjs/components/prism-idris.min.js +1 -0
- package/node_modules/prismjs/components/prism-iecst.js +32 -0
- package/node_modules/prismjs/components/prism-iecst.min.js +1 -0
- package/node_modules/prismjs/components/prism-ignore.js +23 -0
- package/node_modules/prismjs/components/prism-ignore.min.js +1 -0
- package/node_modules/prismjs/components/prism-inform7.js +61 -0
- package/node_modules/prismjs/components/prism-inform7.min.js +1 -0
- package/node_modules/prismjs/components/prism-ini.js +42 -0
- package/node_modules/prismjs/components/prism-ini.min.js +1 -0
- package/node_modules/prismjs/components/prism-io.js +22 -0
- package/node_modules/prismjs/components/prism-io.min.js +1 -0
- package/node_modules/prismjs/components/prism-j.js +28 -0
- package/node_modules/prismjs/components/prism-j.min.js +1 -0
- package/node_modules/prismjs/components/prism-java.js +124 -0
- package/node_modules/prismjs/components/prism-java.min.js +1 -0
- package/node_modules/prismjs/components/prism-javadoc.js +82 -0
- package/node_modules/prismjs/components/prism-javadoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-javadoclike.js +87 -0
- package/node_modules/prismjs/components/prism-javadoclike.min.js +1 -0
- package/node_modules/prismjs/components/prism-javascript.js +172 -0
- package/node_modules/prismjs/components/prism-javascript.min.js +1 -0
- package/node_modules/prismjs/components/prism-javastacktrace.js +142 -0
- package/node_modules/prismjs/components/prism-javastacktrace.min.js +1 -0
- package/node_modules/prismjs/components/prism-jexl.js +14 -0
- package/node_modules/prismjs/components/prism-jexl.min.js +1 -0
- package/node_modules/prismjs/components/prism-jolie.js +41 -0
- package/node_modules/prismjs/components/prism-jolie.min.js +1 -0
- package/node_modules/prismjs/components/prism-jq.js +69 -0
- package/node_modules/prismjs/components/prism-jq.min.js +1 -0
- package/node_modules/prismjs/components/prism-js-extras.js +135 -0
- package/node_modules/prismjs/components/prism-js-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-js-templates.js +349 -0
- package/node_modules/prismjs/components/prism-js-templates.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsdoc.js +78 -0
- package/node_modules/prismjs/components/prism-jsdoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-json.js +27 -0
- package/node_modules/prismjs/components/prism-json.min.js +1 -0
- package/node_modules/prismjs/components/prism-json5.js +23 -0
- package/node_modules/prismjs/components/prism-json5.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsonp.js +7 -0
- package/node_modules/prismjs/components/prism-jsonp.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsstacktrace.js +49 -0
- package/node_modules/prismjs/components/prism-jsstacktrace.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsx.js +145 -0
- package/node_modules/prismjs/components/prism-jsx.min.js +1 -0
- package/node_modules/prismjs/components/prism-julia.js +35 -0
- package/node_modules/prismjs/components/prism-julia.min.js +1 -0
- package/node_modules/prismjs/components/prism-keepalived.js +51 -0
- package/node_modules/prismjs/components/prism-keepalived.min.js +1 -0
- package/node_modules/prismjs/components/prism-keyman.js +44 -0
- package/node_modules/prismjs/components/prism-keyman.min.js +1 -0
- package/node_modules/prismjs/components/prism-kotlin.js +88 -0
- package/node_modules/prismjs/components/prism-kotlin.min.js +1 -0
- package/node_modules/prismjs/components/prism-kumir.js +106 -0
- package/node_modules/prismjs/components/prism-kumir.min.js +1 -0
- package/node_modules/prismjs/components/prism-kusto.js +44 -0
- package/node_modules/prismjs/components/prism-kusto.min.js +1 -0
- package/node_modules/prismjs/components/prism-latex.js +64 -0
- package/node_modules/prismjs/components/prism-latex.min.js +1 -0
- package/node_modules/prismjs/components/prism-latte.js +63 -0
- package/node_modules/prismjs/components/prism-latte.min.js +1 -0
- package/node_modules/prismjs/components/prism-less.js +54 -0
- package/node_modules/prismjs/components/prism-less.min.js +1 -0
- package/node_modules/prismjs/components/prism-lilypond.js +69 -0
- package/node_modules/prismjs/components/prism-lilypond.min.js +1 -0
- package/node_modules/prismjs/components/prism-linker-script.js +30 -0
- package/node_modules/prismjs/components/prism-linker-script.min.js +1 -0
- package/node_modules/prismjs/components/prism-liquid.js +66 -0
- package/node_modules/prismjs/components/prism-liquid.min.js +1 -0
- package/node_modules/prismjs/components/prism-lisp.js +197 -0
- package/node_modules/prismjs/components/prism-lisp.min.js +1 -0
- package/node_modules/prismjs/components/prism-livescript.js +119 -0
- package/node_modules/prismjs/components/prism-livescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-llvm.js +19 -0
- package/node_modules/prismjs/components/prism-llvm.min.js +1 -0
- package/node_modules/prismjs/components/prism-log.js +120 -0
- package/node_modules/prismjs/components/prism-log.min.js +1 -0
- package/node_modules/prismjs/components/prism-lolcode.js +55 -0
- package/node_modules/prismjs/components/prism-lolcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-lua.js +20 -0
- package/node_modules/prismjs/components/prism-lua.min.js +1 -0
- package/node_modules/prismjs/components/prism-magma.js +35 -0
- package/node_modules/prismjs/components/prism-magma.min.js +1 -0
- package/node_modules/prismjs/components/prism-makefile.js +34 -0
- package/node_modules/prismjs/components/prism-makefile.min.js +1 -0
- package/node_modules/prismjs/components/prism-markdown.js +415 -0
- package/node_modules/prismjs/components/prism-markdown.min.js +1 -0
- package/node_modules/prismjs/components/prism-markup-templating.js +124 -0
- package/node_modules/prismjs/components/prism-markup-templating.min.js +1 -0
- package/node_modules/prismjs/components/prism-markup.js +186 -0
- package/node_modules/prismjs/components/prism-markup.min.js +1 -0
- package/node_modules/prismjs/components/prism-mata.js +50 -0
- package/node_modules/prismjs/components/prism-mata.min.js +1 -0
- package/node_modules/prismjs/components/prism-matlab.js +16 -0
- package/node_modules/prismjs/components/prism-matlab.min.js +1 -0
- package/node_modules/prismjs/components/prism-maxscript.js +91 -0
- package/node_modules/prismjs/components/prism-maxscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-mel.js +46 -0
- package/node_modules/prismjs/components/prism-mel.min.js +1 -0
- package/node_modules/prismjs/components/prism-mermaid.js +113 -0
- package/node_modules/prismjs/components/prism-mermaid.min.js +1 -0
- package/node_modules/prismjs/components/prism-metafont.js +84 -0
- package/node_modules/prismjs/components/prism-metafont.min.js +1 -0
- package/node_modules/prismjs/components/prism-mizar.js +12 -0
- package/node_modules/prismjs/components/prism-mizar.min.js +1 -0
- package/node_modules/prismjs/components/prism-mongodb.js +97 -0
- package/node_modules/prismjs/components/prism-mongodb.min.js +1 -0
- package/node_modules/prismjs/components/prism-monkey.js +29 -0
- package/node_modules/prismjs/components/prism-monkey.min.js +1 -0
- package/node_modules/prismjs/components/prism-moonscript.js +57 -0
- package/node_modules/prismjs/components/prism-moonscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-n1ql.js +24 -0
- package/node_modules/prismjs/components/prism-n1ql.min.js +1 -0
- package/node_modules/prismjs/components/prism-n4js.js +14 -0
- package/node_modules/prismjs/components/prism-n4js.min.js +1 -0
- package/node_modules/prismjs/components/prism-nand2tetris-hdl.js +9 -0
- package/node_modules/prismjs/components/prism-nand2tetris-hdl.min.js +1 -0
- package/node_modules/prismjs/components/prism-naniscript.js +170 -0
- package/node_modules/prismjs/components/prism-naniscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-nasm.js +24 -0
- package/node_modules/prismjs/components/prism-nasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-neon.js +40 -0
- package/node_modules/prismjs/components/prism-neon.min.js +1 -0
- package/node_modules/prismjs/components/prism-nevod.js +125 -0
- package/node_modules/prismjs/components/prism-nevod.min.js +1 -0
- package/node_modules/prismjs/components/prism-nginx.js +54 -0
- package/node_modules/prismjs/components/prism-nginx.min.js +1 -0
- package/node_modules/prismjs/components/prism-nim.js +44 -0
- package/node_modules/prismjs/components/prism-nim.min.js +1 -0
- package/node_modules/prismjs/components/prism-nix.js +37 -0
- package/node_modules/prismjs/components/prism-nix.min.js +1 -0
- package/node_modules/prismjs/components/prism-nsis.js +30 -0
- package/node_modules/prismjs/components/prism-nsis.min.js +1 -0
- package/node_modules/prismjs/components/prism-objectivec.js +12 -0
- package/node_modules/prismjs/components/prism-objectivec.min.js +1 -0
- package/node_modules/prismjs/components/prism-ocaml.js +58 -0
- package/node_modules/prismjs/components/prism-ocaml.min.js +1 -0
- package/node_modules/prismjs/components/prism-odin.js +99 -0
- package/node_modules/prismjs/components/prism-odin.min.js +1 -0
- package/node_modules/prismjs/components/prism-opencl.js +61 -0
- package/node_modules/prismjs/components/prism-opencl.min.js +1 -0
- package/node_modules/prismjs/components/prism-openqasm.js +23 -0
- package/node_modules/prismjs/components/prism-openqasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-oz.js +28 -0
- package/node_modules/prismjs/components/prism-oz.min.js +1 -0
- package/node_modules/prismjs/components/prism-parigp.js +30 -0
- package/node_modules/prismjs/components/prism-parigp.min.js +1 -0
- package/node_modules/prismjs/components/prism-parser.js +73 -0
- package/node_modules/prismjs/components/prism-parser.min.js +1 -0
- package/node_modules/prismjs/components/prism-pascal.js +71 -0
- package/node_modules/prismjs/components/prism-pascal.min.js +1 -0
- package/node_modules/prismjs/components/prism-pascaligo.js +62 -0
- package/node_modules/prismjs/components/prism-pascaligo.min.js +1 -0
- package/node_modules/prismjs/components/prism-pcaxis.js +53 -0
- package/node_modules/prismjs/components/prism-pcaxis.min.js +1 -0
- package/node_modules/prismjs/components/prism-peoplecode.js +42 -0
- package/node_modules/prismjs/components/prism-peoplecode.min.js +1 -0
- package/node_modules/prismjs/components/prism-perl.js +156 -0
- package/node_modules/prismjs/components/prism-perl.min.js +1 -0
- package/node_modules/prismjs/components/prism-php-extras.js +14 -0
- package/node_modules/prismjs/components/prism-php-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-php.js +342 -0
- package/node_modules/prismjs/components/prism-php.min.js +1 -0
- package/node_modules/prismjs/components/prism-phpdoc.js +27 -0
- package/node_modules/prismjs/components/prism-phpdoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-plant-uml.js +103 -0
- package/node_modules/prismjs/components/prism-plant-uml.min.js +1 -0
- package/node_modules/prismjs/components/prism-plsql.js +17 -0
- package/node_modules/prismjs/components/prism-plsql.min.js +1 -0
- package/node_modules/prismjs/components/prism-powerquery.js +55 -0
- package/node_modules/prismjs/components/prism-powerquery.min.js +1 -0
- package/node_modules/prismjs/components/prism-powershell.js +58 -0
- package/node_modules/prismjs/components/prism-powershell.min.js +1 -0
- package/node_modules/prismjs/components/prism-processing.js +15 -0
- package/node_modules/prismjs/components/prism-processing.min.js +1 -0
- package/node_modules/prismjs/components/prism-prolog.js +19 -0
- package/node_modules/prismjs/components/prism-prolog.min.js +1 -0
- package/node_modules/prismjs/components/prism-promql.js +99 -0
- package/node_modules/prismjs/components/prism-promql.min.js +1 -0
- package/node_modules/prismjs/components/prism-properties.js +13 -0
- package/node_modules/prismjs/components/prism-properties.min.js +1 -0
- package/node_modules/prismjs/components/prism-protobuf.js +43 -0
- package/node_modules/prismjs/components/prism-protobuf.min.js +1 -0
- package/node_modules/prismjs/components/prism-psl.js +35 -0
- package/node_modules/prismjs/components/prism-psl.min.js +1 -0
- package/node_modules/prismjs/components/prism-pug.js +188 -0
- package/node_modules/prismjs/components/prism-pug.min.js +1 -0
- package/node_modules/prismjs/components/prism-puppet.js +136 -0
- package/node_modules/prismjs/components/prism-puppet.min.js +1 -0
- package/node_modules/prismjs/components/prism-pure.js +82 -0
- package/node_modules/prismjs/components/prism-pure.min.js +1 -0
- package/node_modules/prismjs/components/prism-purebasic.js +70 -0
- package/node_modules/prismjs/components/prism-purebasic.min.js +1 -0
- package/node_modules/prismjs/components/prism-purescript.js +31 -0
- package/node_modules/prismjs/components/prism-purescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-python.js +65 -0
- package/node_modules/prismjs/components/prism-python.min.js +1 -0
- package/node_modules/prismjs/components/prism-q.js +51 -0
- package/node_modules/prismjs/components/prism-q.min.js +1 -0
- package/node_modules/prismjs/components/prism-qml.js +61 -0
- package/node_modules/prismjs/components/prism-qml.min.js +1 -0
- package/node_modules/prismjs/components/prism-qore.js +20 -0
- package/node_modules/prismjs/components/prism-qore.min.js +1 -0
- package/node_modules/prismjs/components/prism-qsharp.js +132 -0
- package/node_modules/prismjs/components/prism-qsharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-r.js +22 -0
- package/node_modules/prismjs/components/prism-r.min.js +1 -0
- package/node_modules/prismjs/components/prism-racket.js +18 -0
- package/node_modules/prismjs/components/prism-racket.min.js +1 -0
- package/node_modules/prismjs/components/prism-reason.js +25 -0
- package/node_modules/prismjs/components/prism-reason.min.js +1 -0
- package/node_modules/prismjs/components/prism-regex.js +104 -0
- package/node_modules/prismjs/components/prism-regex.min.js +1 -0
- package/node_modules/prismjs/components/prism-rego.js +30 -0
- package/node_modules/prismjs/components/prism-rego.min.js +1 -0
- package/node_modules/prismjs/components/prism-renpy.js +29 -0
- package/node_modules/prismjs/components/prism-renpy.min.js +1 -0
- package/node_modules/prismjs/components/prism-rescript.js +60 -0
- package/node_modules/prismjs/components/prism-rescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-rest.js +205 -0
- package/node_modules/prismjs/components/prism-rest.min.js +1 -0
- package/node_modules/prismjs/components/prism-rip.js +38 -0
- package/node_modules/prismjs/components/prism-rip.min.js +1 -0
- package/node_modules/prismjs/components/prism-roboconf.js +27 -0
- package/node_modules/prismjs/components/prism-roboconf.min.js +1 -0
- package/node_modules/prismjs/components/prism-robotframework.js +104 -0
- package/node_modules/prismjs/components/prism-robotframework.min.js +1 -0
- package/node_modules/prismjs/components/prism-ruby.js +189 -0
- package/node_modules/prismjs/components/prism-ruby.min.js +1 -0
- package/node_modules/prismjs/components/prism-rust.js +128 -0
- package/node_modules/prismjs/components/prism-rust.min.js +1 -0
- package/node_modules/prismjs/components/prism-sas.js +326 -0
- package/node_modules/prismjs/components/prism-sas.min.js +1 -0
- package/node_modules/prismjs/components/prism-sass.js +77 -0
- package/node_modules/prismjs/components/prism-sass.min.js +1 -0
- package/node_modules/prismjs/components/prism-scala.js +50 -0
- package/node_modules/prismjs/components/prism-scala.min.js +1 -0
- package/node_modules/prismjs/components/prism-scheme.js +120 -0
- package/node_modules/prismjs/components/prism-scheme.min.js +1 -0
- package/node_modules/prismjs/components/prism-scss.js +81 -0
- package/node_modules/prismjs/components/prism-scss.min.js +1 -0
- package/node_modules/prismjs/components/prism-shell-session.js +70 -0
- package/node_modules/prismjs/components/prism-shell-session.min.js +1 -0
- package/node_modules/prismjs/components/prism-smali.js +87 -0
- package/node_modules/prismjs/components/prism-smali.min.js +1 -0
- package/node_modules/prismjs/components/prism-smalltalk.js +38 -0
- package/node_modules/prismjs/components/prism-smalltalk.min.js +1 -0
- package/node_modules/prismjs/components/prism-smarty.js +131 -0
- package/node_modules/prismjs/components/prism-smarty.min.js +1 -0
- package/node_modules/prismjs/components/prism-sml.js +68 -0
- package/node_modules/prismjs/components/prism-sml.min.js +1 -0
- package/node_modules/prismjs/components/prism-solidity.js +22 -0
- package/node_modules/prismjs/components/prism-solidity.min.js +1 -0
- package/node_modules/prismjs/components/prism-solution-file.js +51 -0
- package/node_modules/prismjs/components/prism-solution-file.min.js +1 -0
- package/node_modules/prismjs/components/prism-soy.js +96 -0
- package/node_modules/prismjs/components/prism-soy.min.js +1 -0
- package/node_modules/prismjs/components/prism-sparql.js +18 -0
- package/node_modules/prismjs/components/prism-sparql.min.js +1 -0
- package/node_modules/prismjs/components/prism-splunk-spl.js +24 -0
- package/node_modules/prismjs/components/prism-splunk-spl.min.js +1 -0
- package/node_modules/prismjs/components/prism-sqf.js +34 -0
- package/node_modules/prismjs/components/prism-sqf.min.js +1 -0
- package/node_modules/prismjs/components/prism-sql.js +32 -0
- package/node_modules/prismjs/components/prism-sql.min.js +1 -0
- package/node_modules/prismjs/components/prism-squirrel.js +47 -0
- package/node_modules/prismjs/components/prism-squirrel.min.js +1 -0
- package/node_modules/prismjs/components/prism-stan.js +65 -0
- package/node_modules/prismjs/components/prism-stan.min.js +1 -0
- package/node_modules/prismjs/components/prism-stata.js +76 -0
- package/node_modules/prismjs/components/prism-stata.min.js +1 -0
- package/node_modules/prismjs/components/prism-stylus.js +143 -0
- package/node_modules/prismjs/components/prism-stylus.min.js +1 -0
- package/node_modules/prismjs/components/prism-supercollider.js +36 -0
- package/node_modules/prismjs/components/prism-supercollider.min.js +1 -0
- package/node_modules/prismjs/components/prism-swift.js +148 -0
- package/node_modules/prismjs/components/prism-swift.min.js +1 -0
- package/node_modules/prismjs/components/prism-systemd.js +74 -0
- package/node_modules/prismjs/components/prism-systemd.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-cs.js +1 -0
- package/node_modules/prismjs/components/prism-t4-cs.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-templating.js +49 -0
- package/node_modules/prismjs/components/prism-t4-templating.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-vb.js +1 -0
- package/node_modules/prismjs/components/prism-t4-vb.min.js +1 -0
- package/node_modules/prismjs/components/prism-tap.js +22 -0
- package/node_modules/prismjs/components/prism-tap.min.js +1 -0
- package/node_modules/prismjs/components/prism-tcl.js +46 -0
- package/node_modules/prismjs/components/prism-tcl.min.js +1 -0
- package/node_modules/prismjs/components/prism-textile.js +286 -0
- package/node_modules/prismjs/components/prism-textile.min.js +1 -0
- package/node_modules/prismjs/components/prism-toml.js +49 -0
- package/node_modules/prismjs/components/prism-toml.min.js +1 -0
- package/node_modules/prismjs/components/prism-tremor.js +72 -0
- package/node_modules/prismjs/components/prism-tremor.min.js +1 -0
- package/node_modules/prismjs/components/prism-tsx.js +15 -0
- package/node_modules/prismjs/components/prism-tsx.min.js +1 -0
- package/node_modules/prismjs/components/prism-tt2.js +53 -0
- package/node_modules/prismjs/components/prism-tt2.min.js +1 -0
- package/node_modules/prismjs/components/prism-turtle.js +54 -0
- package/node_modules/prismjs/components/prism-turtle.min.js +1 -0
- package/node_modules/prismjs/components/prism-twig.js +44 -0
- package/node_modules/prismjs/components/prism-twig.min.js +1 -0
- package/node_modules/prismjs/components/prism-typescript.js +60 -0
- package/node_modules/prismjs/components/prism-typescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-typoscript.js +80 -0
- package/node_modules/prismjs/components/prism-typoscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-unrealscript.js +42 -0
- package/node_modules/prismjs/components/prism-unrealscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-uorazor.js +48 -0
- package/node_modules/prismjs/components/prism-uorazor.min.js +1 -0
- package/node_modules/prismjs/components/prism-uri.js +96 -0
- package/node_modules/prismjs/components/prism-uri.min.js +1 -0
- package/node_modules/prismjs/components/prism-v.js +81 -0
- package/node_modules/prismjs/components/prism-v.min.js +1 -0
- package/node_modules/prismjs/components/prism-vala.js +84 -0
- package/node_modules/prismjs/components/prism-vala.min.js +1 -0
- package/node_modules/prismjs/components/prism-vbnet.js +22 -0
- package/node_modules/prismjs/components/prism-vbnet.min.js +1 -0
- package/node_modules/prismjs/components/prism-velocity.js +72 -0
- package/node_modules/prismjs/components/prism-velocity.min.js +1 -0
- package/node_modules/prismjs/components/prism-verilog.js +26 -0
- package/node_modules/prismjs/components/prism-verilog.min.js +1 -0
- package/node_modules/prismjs/components/prism-vhdl.js +26 -0
- package/node_modules/prismjs/components/prism-vhdl.min.js +1 -0
- package/node_modules/prismjs/components/prism-vim.js +10 -0
- package/node_modules/prismjs/components/prism-vim.min.js +1 -0
- package/node_modules/prismjs/components/prism-visual-basic.js +29 -0
- package/node_modules/prismjs/components/prism-visual-basic.min.js +1 -0
- package/node_modules/prismjs/components/prism-warpscript.js +21 -0
- package/node_modules/prismjs/components/prism-warpscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-wasm.js +31 -0
- package/node_modules/prismjs/components/prism-wasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-web-idl.js +101 -0
- package/node_modules/prismjs/components/prism-web-idl.min.js +1 -0
- package/node_modules/prismjs/components/prism-wgsl.js +69 -0
- package/node_modules/prismjs/components/prism-wgsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-wiki.js +82 -0
- package/node_modules/prismjs/components/prism-wiki.min.js +1 -0
- package/node_modules/prismjs/components/prism-wolfram.js +29 -0
- package/node_modules/prismjs/components/prism-wolfram.min.js +1 -0
- package/node_modules/prismjs/components/prism-wren.js +100 -0
- package/node_modules/prismjs/components/prism-wren.min.js +1 -0
- package/node_modules/prismjs/components/prism-xeora.js +114 -0
- package/node_modules/prismjs/components/prism-xeora.min.js +1 -0
- package/node_modules/prismjs/components/prism-xml-doc.js +40 -0
- package/node_modules/prismjs/components/prism-xml-doc.min.js +1 -0
- package/node_modules/prismjs/components/prism-xojo.js +21 -0
- package/node_modules/prismjs/components/prism-xojo.min.js +1 -0
- package/node_modules/prismjs/components/prism-xquery.js +162 -0
- package/node_modules/prismjs/components/prism-xquery.min.js +1 -0
- package/node_modules/prismjs/components/prism-yaml.js +83 -0
- package/node_modules/prismjs/components/prism-yaml.min.js +1 -0
- package/node_modules/prismjs/components/prism-yang.js +20 -0
- package/node_modules/prismjs/components/prism-yang.min.js +1 -0
- package/node_modules/prismjs/components/prism-zig.js +101 -0
- package/node_modules/prismjs/components/prism-zig.min.js +1 -0
- package/node_modules/prismjs/components.js +2 -0
- package/node_modules/prismjs/components.json +1766 -0
- package/node_modules/prismjs/dependencies.js +452 -0
- package/node_modules/prismjs/package.json +89 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.css +3 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.js +76 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.css +1 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.js +1 -0
- package/node_modules/prismjs/plugins/autoloader/prism-autoloader.js +541 -0
- package/node_modules/prismjs/plugins/autoloader/prism-autoloader.min.js +1 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.css +43 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.js +239 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.min.css +1 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.min.js +1 -0
- package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js +160 -0
- package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js +1 -0
- package/node_modules/prismjs/plugins/custom-class/prism-custom-class.js +110 -0
- package/node_modules/prismjs/plugins/custom-class/prism-custom-class.min.js +1 -0
- package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.js +94 -0
- package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.css +13 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.js +90 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.css +1 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/download-button/prism-download-button.js +20 -0
- package/node_modules/prismjs/plugins/download-button/prism-download-button.min.js +1 -0
- package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.js +195 -0
- package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.js +127 -0
- package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.min.js +1 -0
- package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.js +14 -0
- package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js +1 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.css +33 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.js +105 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.css +1 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.js +1 -0
- package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.js +303 -0
- package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.js +126 -0
- package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.min.js +1 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.css +70 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.js +346 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.css +1 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.css +40 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.js +252 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.css +1 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.js +1 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.css +29 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.js +190 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.css +1 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.js +1 -0
- package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js +229 -0
- package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.min.js +1 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.css +243 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.js +712 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.min.css +1 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.min.js +1 -0
- package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js +21 -0
- package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js +1 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.css +34 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.js +83 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.css +1 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.js +1 -0
- package/node_modules/prismjs/plugins/show-language/prism-show-language.js +325 -0
- package/node_modules/prismjs/plugins/show-language/prism-show-language.min.js +1 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.css +65 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.js +179 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.css +1 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.js +1 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.css +168 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.js +70 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.min.css +1 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.min.js +1 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.css +10 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.js +62 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.css +1 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.js +1 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.css +11 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.js +154 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.min.css +1 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.min.js +1 -0
- package/node_modules/prismjs/prism.js +1946 -0
- package/node_modules/prismjs/themes/prism-coy.css +219 -0
- package/node_modules/prismjs/themes/prism-coy.min.css +1 -0
- package/node_modules/prismjs/themes/prism-dark.css +129 -0
- package/node_modules/prismjs/themes/prism-dark.min.css +1 -0
- package/node_modules/prismjs/themes/prism-funky.css +130 -0
- package/node_modules/prismjs/themes/prism-funky.min.css +1 -0
- package/node_modules/prismjs/themes/prism-okaidia.css +123 -0
- package/node_modules/prismjs/themes/prism-okaidia.min.css +1 -0
- package/node_modules/prismjs/themes/prism-solarizedlight.css +150 -0
- package/node_modules/prismjs/themes/prism-solarizedlight.min.css +1 -0
- package/node_modules/prismjs/themes/prism-tomorrow.css +122 -0
- package/node_modules/prismjs/themes/prism-tomorrow.min.css +1 -0
- package/node_modules/prismjs/themes/prism-twilight.css +169 -0
- package/node_modules/prismjs/themes/prism-twilight.min.css +1 -0
- package/node_modules/prismjs/themes/prism.css +140 -0
- package/node_modules/prismjs/themes/prism.min.css +1 -0
- package/node_modules/property-information/index.d.ts +118 -0
- package/node_modules/property-information/index.js +17 -0
- package/node_modules/property-information/lib/aria.d.ts +2 -0
- package/node_modules/property-information/lib/aria.d.ts.map +1 -0
- package/node_modules/property-information/lib/aria.js +61 -0
- package/node_modules/property-information/lib/find.d.ts +34 -0
- package/node_modules/property-information/lib/find.d.ts.map +1 -0
- package/node_modules/property-information/lib/find.js +97 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts +13 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts.map +1 -0
- package/node_modules/property-information/lib/hast-to-react.js +30 -0
- package/node_modules/property-information/lib/html.d.ts +2 -0
- package/node_modules/property-information/lib/html.d.ts.map +1 -0
- package/node_modules/property-information/lib/html.js +322 -0
- package/node_modules/property-information/lib/normalize.d.ts +11 -0
- package/node_modules/property-information/lib/normalize.d.ts.map +1 -0
- package/node_modules/property-information/lib/normalize.js +12 -0
- package/node_modules/property-information/lib/svg.d.ts +2 -0
- package/node_modules/property-information/lib/svg.d.ts.map +1 -0
- package/node_modules/property-information/lib/svg.js +567 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.js +13 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.js +11 -0
- package/node_modules/property-information/lib/util/create.d.ts +39 -0
- package/node_modules/property-information/lib/util/create.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/create.js +69 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts +19 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/defined-info.js +60 -0
- package/node_modules/property-information/lib/util/info.d.ts +28 -0
- package/node_modules/property-information/lib/util/info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/info.js +32 -0
- package/node_modules/property-information/lib/util/merge.d.ts +12 -0
- package/node_modules/property-information/lib/util/merge.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/merge.js +27 -0
- package/node_modules/property-information/lib/util/schema.d.ts +23 -0
- package/node_modules/property-information/lib/util/schema.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/schema.js +29 -0
- package/node_modules/property-information/lib/util/types.d.ts +8 -0
- package/node_modules/property-information/lib/util/types.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/types.js +13 -0
- package/node_modules/property-information/lib/xlink.d.ts +2 -0
- package/node_modules/property-information/lib/xlink.d.ts.map +1 -0
- package/node_modules/property-information/lib/xlink.js +17 -0
- package/node_modules/property-information/lib/xml.d.ts +2 -0
- package/node_modules/property-information/lib/xml.d.ts.map +1 -0
- package/node_modules/property-information/lib/xml.js +9 -0
- package/node_modules/property-information/lib/xmlns.d.ts +2 -0
- package/node_modules/property-information/lib/xmlns.d.ts.map +1 -0
- package/node_modules/property-information/lib/xmlns.js +9 -0
- package/node_modules/property-information/license +22 -0
- package/node_modules/property-information/package.json +121 -0
- package/node_modules/property-information/readme.md +1062 -0
- package/node_modules/react-syntax-highlighter/.codecov.yml +3 -0
- package/node_modules/react-syntax-highlighter/.eslintignore +8 -0
- package/node_modules/react-syntax-highlighter/.eslintrc.js +37 -0
- package/node_modules/react-syntax-highlighter/.github/FUNDING.yml +3 -0
- package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/bug_report.md +35 -0
- package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- package/node_modules/react-syntax-highlighter/.github/workflows/codeql-analysis.yml +72 -0
- package/node_modules/react-syntax-highlighter/.github/workflows/nodejs.yml +25 -0
- package/node_modules/react-syntax-highlighter/.prettierignore +8 -0
- package/node_modules/react-syntax-highlighter/.prettierrc +3 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_HLJS.MD +192 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_PRISM.MD +298 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_HLJS.MD +98 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_PRISM.MD +45 -0
- package/node_modules/react-syntax-highlighter/CHANGELOG.MD +612 -0
- package/node_modules/react-syntax-highlighter/CODE_OF_CONDUCT.md +46 -0
- package/node_modules/react-syntax-highlighter/LICENSE +21 -0
- package/node_modules/react-syntax-highlighter/README.md +208 -0
- package/node_modules/react-syntax-highlighter/create-element.js +1 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/create-language-async-loader.js +32 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/hljs.js +967 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/prism.js +1497 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-syntax-highlighter.js +164 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/checkForListedLanguage.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/create-element.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/default-highlight.js +14 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/highlight.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/index.js +62 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/1c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/abnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/accesslog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/actionscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ada.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/angelscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/apache.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/applescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arcade.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arduino.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/armasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/asciidoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/aspectj.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autohotkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autoit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/avrasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/awk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/axapta.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bash.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/brainfuck.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c-like.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/capnproto.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ceylon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clean.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cmake.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coffeescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cos.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crmsh.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crystal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/css.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/d.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dart.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/delphi.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/diff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/django.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dns.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dockerfile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dos.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dsconfig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dts.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ebnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elixir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/excel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/flix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fortran.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gams.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gauss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gherkin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/glsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/go.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/golo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gradle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/groovy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/handlebars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haskell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haxe.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hsp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/htmlbars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/http.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/index.js +1343 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/inform7.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ini.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/irpf90.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/isbl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/java.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/javascript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/jboss-cli.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/json.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/kotlin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lasso.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/latex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ldif.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/leaf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/less.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lisp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livecodeserver.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/llvm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/makefile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/markdown.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mathematica.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/matlab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/maxima.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mercury.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mipsasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mizar.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mojolicious.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/monkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/moonscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/n1ql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nginx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nimrod.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/node-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nsis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/objectivec.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ocaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/openscad.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/oxygene.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/parser3.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/perl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pgsql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php-template.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/plaintext.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pony.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/powershell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/processing.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/profile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/prolog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/properties.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/protobuf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/puppet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/purebasic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/q.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/qml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/r.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/reasonml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rib.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/roboconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/routeros.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruby.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruleslanguage.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scheme.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scilab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/shell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smali.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smalltalk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sqf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql_more.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stan.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/step21.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stylus.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/subunit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/supported-languages.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/swift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/taggerscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/thrift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/twig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/typescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript-html.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/verilog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vhdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vue.js +13 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/x86asm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/yaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/zephir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/actionscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ada.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/agda.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/al.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/antlr4.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apacheconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/applescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arduino.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/armasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arturo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asciidoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asm6502.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asmatmel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aspnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autohotkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autoit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avisynth.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avro-idl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/awk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bash.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/batch.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbj.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bicep.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/birb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bison.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bqn.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brainfuck.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brightscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bro.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cfscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/chaiscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cil.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkcpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clike.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clojure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cmake.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cobol.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coffeescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/concurnas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cooklang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/core.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/crystal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cshtml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csv.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cue.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cypher.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/d.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dart.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dataweave.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dax.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dhall.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/diff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/django.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dns-zone-file.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/docker.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dot.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ebnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/editorconfig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/eiffel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ejs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elixir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erlang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/etlua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/excel-formula.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/factor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/false.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/firestore-security-rules.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/flow.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fortran.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ftl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gdscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gedcom.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gettext.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gherkin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/git.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/glsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gn.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go-module.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gradle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/graphql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/groovy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/handlebars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haskell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haxe.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hlsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hoon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hpkp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hsts.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/http.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ichigojam.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icu-message-format.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/idris.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/iecst.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ignore.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/index.js +2085 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/inform7.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ini.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/io.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/j.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/java.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoclike.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javascript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javastacktrace.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jexl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jolie.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-templates.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsdoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json5.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsonp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsstacktrace.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/julia.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keepalived.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keyman.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kotlin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kumir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kusto.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latte.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/less.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lilypond.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/linker-script.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/liquid.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lisp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/livescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/llvm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/log.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lolcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/magma.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/makefile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markdown.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup-templating.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/matlab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/maxscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mermaid.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/metafont.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mizar.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mongodb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/monkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/moonscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n1ql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n4js.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nand2tetris-hdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/naniscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/neon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nevod.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nginx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nsis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/objectivec.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ocaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/odin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/opencl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/openqasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/oz.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parigp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parser.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascaligo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pcaxis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/peoplecode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/perl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/phpdoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plant-uml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plsql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powerquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powershell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/processing.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/prolog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/promql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/properties.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/protobuf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/psl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pug.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/puppet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purebasic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/python.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/q.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qore.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/r.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/racket.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/reason.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/regex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rego.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/renpy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rest.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rip.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/roboconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/robotframework.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ruby.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sass.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scheme.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/shell-session.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smali.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smalltalk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smarty.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solidity.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solution-file.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/soy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sparql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/splunk-spl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sqf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/squirrel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stan.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stylus.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supercollider.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supported-languages.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/swift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/systemd.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-cs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-templating.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-vb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/textile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/toml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tremor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tsx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tt2.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/turtle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/twig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typoscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/unrealscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uorazor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uri.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/v.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vbnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/velocity.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/verilog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vhdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/visual-basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/warpscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/web-idl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wgsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wiki.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wolfram.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wren.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xeora.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xml-doc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xojo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/zig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/light-async.js +30 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/light.js +12 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-async-light.js +28 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-async.js +24 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-light.js +17 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism.js +14 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/agate.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/an-old-hope.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/androidstudio.js +87 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arduino-light.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arta.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ascetic.js +73 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-light.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/brown-paper.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/codepen-embed.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/color-brewer.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darcula.js +112 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dark.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darkula.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/default-style.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/docco.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dracula.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/far.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/foundation.js +104 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github-gist.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gml.js +118 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/googlecode.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-dark.js +137 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-light.js +137 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/grayscale.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-dark.js +149 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-light.js +149 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hopscotch.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hybrid.js +132 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/idea.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/index.js +685 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ir-black.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-dark.js +134 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-light.js +134 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.dark.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.light.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lightfair.js +123 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lioshi.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/magula.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/mono-blue.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai-sublime.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/night-owl.js +150 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx-dark.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nord.js +242 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/obsidian.js +123 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ocean.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/pojoaque.js +110 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/purebasic.js +124 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_dark.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_light.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/railscasts.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/rainbow.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/routeros.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/school-book.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/shades-of-purple.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-dark.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-light.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/srcery.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-dark.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-light.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/sunburst.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-blue.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-bright.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-eighties.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs2015.js +142 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xcode.js +127 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xt256.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/zenburn.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-dark.js +152 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-one-light.js +506 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/atom-dark.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/cb.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-cold.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-dark.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy.js +255 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/darcula.js +207 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dark.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dracula.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-dark.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-earth.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-forest.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-light.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-sea.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-space.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/funky.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/ghcolors.js +184 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-dark.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-light.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/holi-theme.js +200 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/hopscotch.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/index.js +314 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/lucario.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-dark.js +201 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-light.js +209 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-oceanic.js +205 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/night-owl.js +198 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/nord.js +158 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/okaidia.js +162 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-dark.js +507 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-light.js +495 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/pojoaque.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/prism.js +198 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/shades-of-purple.js +240 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarized-dark-atom.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarizedlight.js +174 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/synthwave84.js +189 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/tomorrow.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/twilight.js +220 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs-dark.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs.js +212 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vsc-dark-plus.js +288 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/xonokai.js +186 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/z-touch.js +202 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/create-language-async-loader.js +25 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/hljs.js +576 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/prism.js +894 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-syntax-highlighter.js +157 -0
- package/node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.js +4 -0
- package/node_modules/react-syntax-highlighter/dist/esm/create-element.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/esm/default-highlight.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/esm/highlight.js +385 -0
- package/node_modules/react-syntax-highlighter/dist/esm/index.js +8 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/1c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/accesslog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/angelscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/apache.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arcade.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/aspectj.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/avrasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/axapta.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c-like.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/capnproto.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ceylon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clean.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cos.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crmsh.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/css.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/d.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/delphi.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/django.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dns.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dockerfile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dos.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dsconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dts.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/excel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/flix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gams.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gauss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/go.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/golo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hsp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/htmlbars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/http.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/index.js +191 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/irpf90.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/isbl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/java.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/jboss-cli.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/json.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lasso.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ldif.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/leaf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/less.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livecodeserver.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mathematica.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/maxima.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mercury.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mipsasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mojolicious.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nimrod.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/node-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/openscad.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/oxygene.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/parser3.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pgsql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php-template.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/plaintext.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pony.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/profile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/q.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/r.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/reasonml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rib.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/routeros.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruleslanguage.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scilab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/shell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql_more.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/step21.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/subunit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/supported-languages.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/taggerscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/thrift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript-html.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vue.js +4 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/x86asm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/zephir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/agda.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/al.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/antlr4.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apacheconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arturo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asm6502.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asmatmel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aspnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avisynth.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avro-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/batch.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbj.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bicep.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/birb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bison.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bqn.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brightscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bro.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cfscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/chaiscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cil.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkcpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clike.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cobol.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/concurnas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cooklang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/core.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cshtml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csv.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cue.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cypher.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/d.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dataweave.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dax.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dhall.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/django.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dns-zone-file.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/docker.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dot.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/editorconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/eiffel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ejs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/etlua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/excel-formula.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/factor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/false.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/firestore-security-rules.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/flow.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ftl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gdscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gedcom.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gettext.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/git.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gn.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go-module.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/graphql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hlsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hoon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hpkp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hsts.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/http.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ichigojam.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icu-message-format.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/idris.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/iecst.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ignore.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/index.js +297 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/io.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/j.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/java.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoclike.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javastacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jexl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jolie.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-templates.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json5.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsonp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsstacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keepalived.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keyman.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kumir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kusto.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latte.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/less.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lilypond.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/linker-script.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/liquid.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/log.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lolcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/magma.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/maxscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mermaid.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/metafont.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mongodb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n4js.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nand2tetris-hdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/naniscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/neon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nevod.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/odin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/opencl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/openqasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/oz.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parigp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parser.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascaligo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pcaxis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/peoplecode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/phpdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plant-uml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plsql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powerquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/promql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/psl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pug.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/python.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/q.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qore.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/r.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/racket.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/reason.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/regex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rego.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/renpy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rest.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rip.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/robotframework.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sass.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/shell-session.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smarty.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solidity.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solution-file.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/soy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sparql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/splunk-spl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/squirrel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supercollider.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supported-languages.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/systemd.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-cs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-vb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/textile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/toml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tremor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tsx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tt2.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/turtle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typoscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/unrealscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uorazor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uri.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/v.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/velocity.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/visual-basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/warpscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/web-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wgsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wiki.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wolfram.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wren.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xeora.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xml-doc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xojo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/zig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/light-async.js +19 -0
- package/node_modules/react-syntax-highlighter/dist/esm/light.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-async-light.js +17 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-async.js +13 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-light.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/agate.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/an-old-hope.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/androidstudio.js +81 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arduino-light.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arta.js +100 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ascetic.js +67 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-light.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/brown-paper.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/codepen-embed.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/color-brewer.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darcula.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dark.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darkula.js +1 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/default-style.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/docco.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dracula.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/far.js +103 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/foundation.js +98 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github-gist.js +95 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gml.js +112 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/googlecode.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-dark.js +131 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-light.js +131 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/grayscale.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-dark.js +143 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-light.js +143 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hopscotch.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hybrid.js +126 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/idea.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/index.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ir-black.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-dark.js +128 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-light.js +128 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.dark.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.light.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lightfair.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lioshi.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/magula.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/mono-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai-sublime.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/night-owl.js +144 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx-dark.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nord.js +236 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/obsidian.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ocean.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/pojoaque.js +104 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/purebasic.js +118 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_dark.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_light.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/railscasts.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/rainbow.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/routeros.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/school-book.js +100 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/shades-of-purple.js +103 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-light.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/srcery.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-dark.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-light.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/sunburst.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-bright.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-eighties.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs.js +93 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs2015.js +136 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xcode.js +121 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xt256.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/zenburn.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-dark.js +146 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-one-light.js +500 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/atom-dark.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/cb.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-cold.js +386 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-dark.js +386 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy-without-shadows.js +182 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy.js +249 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/darcula.js +201 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dark.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dracula.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-dark.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-earth.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-forest.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-light.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-sea.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-space.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/funky.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/ghcolors.js +178 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-dark.js +177 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light.js +177 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/holi-theme.js +194 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/hopscotch.js +148 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/index.js +44 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/lucario.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-dark.js +195 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-light.js +203 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-oceanic.js +199 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/night-owl.js +192 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/nord.js +152 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/okaidia.js +156 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-dark.js +501 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-light.js +489 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/pojoaque.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/prism.js +192 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/shades-of-purple.js +234 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarizedlight.js +168 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/synthwave84.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/tomorrow.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/twilight.js +214 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs-dark.js +155 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs.js +206 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vsc-dark-plus.js +282 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/xonokai.js +180 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/z-touch.js +196 -0
- package/node_modules/react-syntax-highlighter/package.json +130 -0
- package/node_modules/react-syntax-highlighter/scripts/build-languages-highlightjs.js +127 -0
- package/node_modules/react-syntax-highlighter/scripts/build-languages-refractor.js +132 -0
- package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-highlightjs.js +131 -0
- package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-refractor.js +153 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/create-language-async-loader.js +6 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/hljs.js +194 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/prism.js +300 -0
- package/node_modules/react-syntax-highlighter/src/async-syntax-highlighter.js +155 -0
- package/node_modules/react-syntax-highlighter/src/checkForListedLanguage.js +4 -0
- package/node_modules/react-syntax-highlighter/src/create-element.js +212 -0
- package/node_modules/react-syntax-highlighter/src/default-highlight.js +9 -0
- package/node_modules/react-syntax-highlighter/src/highlight.js +439 -0
- package/node_modules/react-syntax-highlighter/src/index.js +11 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/1c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/accesslog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/angelscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/apache.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/arcade.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/aspectj.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/avrasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/axapta.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/c-like.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/capnproto.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ceylon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clean.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cos.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/crmsh.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/css.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/d.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/delphi.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/django.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dns.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dockerfile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dos.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dsconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dts.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/excel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/flix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gams.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gauss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/go.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/golo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/hsp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/htmlbars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/http.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/hy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/index.js +191 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/irpf90.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/isbl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/java.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/jboss-cli.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/json.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/julia-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lasso.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ldif.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/leaf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/less.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/livecodeserver.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mathematica.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/maxima.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mercury.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mipsasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mojolicious.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/node-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/openscad.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/oxygene.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/parser3.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pgsql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/php-template.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/php.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/plaintext.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pony.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/profile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/python-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/python.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/q.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/r.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/reasonml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rib.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/routeros.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ruleslanguage.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scilab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/shell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sql_more.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/step21.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/subunit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/supported-languages.js +197 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/taggerscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/thrift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript-html.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vue.js +4 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/x86asm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/zephir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/abap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/agda.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/al.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/antlr4.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apacheconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/aql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arturo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asm6502.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asmatmel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/aspnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/avisynth.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/avro-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/batch.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bbcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bbj.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bicep.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/birb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bison.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bqn.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/brightscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bro.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cfscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/chaiscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cil.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cilkc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cilkcpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/clike.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cobol.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/concurnas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cooklang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/core.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cshtml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/css-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/css.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csv.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cue.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cypher.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/d.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dataweave.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dax.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dhall.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/django.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dns-zone-file.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/docker.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dot.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/editorconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/eiffel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ejs.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/etlua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/excel-formula.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/factor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/false.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/firestore-security-rules.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/flow.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ftl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gdscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gedcom.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gettext.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/git.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gn.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/go-module.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/go.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/graphql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hlsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hoon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hpkp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hsts.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/http.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ichigojam.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/icon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/icu-message-format.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/idris.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/iecst.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ignore.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/index.js +297 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/io.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/j.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/java.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javadoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javadoclike.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javastacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jexl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jolie.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/js-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/js-templates.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/json.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/json5.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsonp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsstacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/keepalived.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/keyman.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kumir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kusto.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/latte.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/less.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lilypond.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/linker-script.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/liquid.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/log.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lolcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/magma.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markup-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markup.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/maxscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mermaid.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/metafont.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mongodb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/n4js.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nand2tetris-hdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/naniscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/neon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nevod.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/odin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/opencl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/openqasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/oz.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/parigp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/parser.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pascal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pascaligo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pcaxis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/peoplecode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/php-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/php.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/phpdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/plant-uml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/plsql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/powerquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/promql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/psl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pug.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/purescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/python.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/q.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qore.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/r.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/racket.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/reason.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/regex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rego.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/renpy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rest.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rip.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/robotframework.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sass.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/shell-session.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smarty.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/solidity.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/solution-file.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/soy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sparql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/splunk-spl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/squirrel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/supercollider.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/supported-languages.js +303 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/systemd.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-cs.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-vb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/textile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/toml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tremor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tsx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tt2.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/turtle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/typoscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/unrealscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/uorazor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/uri.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/v.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/velocity.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/visual-basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/warpscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/web-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wgsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wiki.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wolfram.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wren.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xeora.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xml-doc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xojo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/yang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/zig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/light-async.js +21 -0
- package/node_modules/react-syntax-highlighter/src/light.js +7 -0
- package/node_modules/react-syntax-highlighter/src/prism-async-light.js +19 -0
- package/node_modules/react-syntax-highlighter/src/prism-async.js +14 -0
- package/node_modules/react-syntax-highlighter/src/prism-light.js +10 -0
- package/node_modules/react-syntax-highlighter/src/prism.js +9 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-light.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/agate.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/an-old-hope.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/androidstudio.js +81 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/arduino-light.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/arta.js +100 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ascetic.js +67 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-light.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/brown-paper.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/codepen-embed.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/color-brewer.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/darcula.js +106 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/dark.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/darkula.js +1 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/default-style.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/docco.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/dracula.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/far.js +103 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/foundation.js +98 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/github-gist.js +95 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/github.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gml.js +112 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/googlecode.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-dark.js +131 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-light.js +131 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/grayscale.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-dark.js +143 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-light.js +143 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/hopscotch.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/hybrid.js +126 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/idea.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/index.js +97 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ir-black.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-dark.js +128 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-light.js +128 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.dark.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.light.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/lightfair.js +117 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/lioshi.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/magula.js +101 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/mono-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai-sublime.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/night-owl.js +144 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx-dark.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nord.js +236 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/obsidian.js +117 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ocean.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-light.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/pojoaque.js +104 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/purebasic.js +118 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_dark.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_light.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/railscasts.js +108 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/rainbow.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/routeros.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/school-book.js +100 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/shades-of-purple.js +103 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-light.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/srcery.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-dark.js +111 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-light.js +111 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/sunburst.js +105 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-bright.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-eighties.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/vs.js +93 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/vs2015.js +136 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/xcode.js +121 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/xt256.js +101 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/zenburn.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-dark.js +146 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-one-light.js +516 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/atom-dark.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/cb.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-cold.js +386 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-dark.js +386 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coy-without-shadows.js +182 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coy.js +249 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/darcula.js +201 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/dark.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/dracula.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-dark.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-earth.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-forest.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-light.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-sea.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-space.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/funky.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/ghcolors.js +178 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-dark.js +177 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-light.js +177 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/holi-theme.js +194 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/hopscotch.js +148 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/index.js +44 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/lucario.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-dark.js +195 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-light.js +203 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-oceanic.js +199 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/night-owl.js +192 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/nord.js +152 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/okaidia.js +156 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/one-dark.js +501 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/one-light.js +489 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/pojoaque.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/prism.js +192 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/shades-of-purple.js +234 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/solarized-dark-atom.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/solarizedlight.js +168 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/synthwave84.js +183 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/tomorrow.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/twilight.js +214 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vs-dark.js +155 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vs.js +206 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vsc-dark-plus.js +282 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/xonokai.js +180 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/z-touch.js +196 -0
- package/node_modules/refractor/lang/abap.d.ts +7 -0
- package/node_modules/refractor/lang/abap.js +62 -0
- package/node_modules/refractor/lang/abnf.d.ts +7 -0
- package/node_modules/refractor/lang/abnf.js +66 -0
- package/node_modules/refractor/lang/actionscript.d.ts +7 -0
- package/node_modules/refractor/lang/actionscript.js +32 -0
- package/node_modules/refractor/lang/ada.d.ts +7 -0
- package/node_modules/refractor/lang/ada.js +34 -0
- package/node_modules/refractor/lang/agda.d.ts +7 -0
- package/node_modules/refractor/lang/agda.js +34 -0
- package/node_modules/refractor/lang/al.d.ts +7 -0
- package/node_modules/refractor/lang/al.js +38 -0
- package/node_modules/refractor/lang/antlr4.d.ts +7 -0
- package/node_modules/refractor/lang/antlr4.js +77 -0
- package/node_modules/refractor/lang/apacheconf.d.ts +7 -0
- package/node_modules/refractor/lang/apacheconf.js +59 -0
- package/node_modules/refractor/lang/apex.d.ts +7 -0
- package/node_modules/refractor/lang/apex.js +88 -0
- package/node_modules/refractor/lang/apl.d.ts +7 -0
- package/node_modules/refractor/lang/apl.js +44 -0
- package/node_modules/refractor/lang/applescript.d.ts +7 -0
- package/node_modules/refractor/lang/applescript.js +29 -0
- package/node_modules/refractor/lang/aql.d.ts +7 -0
- package/node_modules/refractor/lang/aql.js +60 -0
- package/node_modules/refractor/lang/arduino.d.ts +7 -0
- package/node_modules/refractor/lang/arduino.js +21 -0
- package/node_modules/refractor/lang/arff.d.ts +7 -0
- package/node_modules/refractor/lang/arff.js +20 -0
- package/node_modules/refractor/lang/armasm.d.ts +7 -0
- package/node_modules/refractor/lang/armasm.js +57 -0
- package/node_modules/refractor/lang/arturo.d.ts +7 -0
- package/node_modules/refractor/lang/arturo.js +102 -0
- package/node_modules/refractor/lang/asciidoc.d.ts +7 -0
- package/node_modules/refractor/lang/asciidoc.js +241 -0
- package/node_modules/refractor/lang/asm6502.d.ts +7 -0
- package/node_modules/refractor/lang/asm6502.js +40 -0
- package/node_modules/refractor/lang/asmatmel.d.ts +7 -0
- package/node_modules/refractor/lang/asmatmel.js +52 -0
- package/node_modules/refractor/lang/aspnet.d.ts +7 -0
- package/node_modules/refractor/lang/aspnet.js +73 -0
- package/node_modules/refractor/lang/autohotkey.d.ts +7 -0
- package/node_modules/refractor/lang/autohotkey.js +55 -0
- package/node_modules/refractor/lang/autoit.d.ts +7 -0
- package/node_modules/refractor/lang/autoit.js +46 -0
- package/node_modules/refractor/lang/avisynth.d.ts +7 -0
- package/node_modules/refractor/lang/avisynth.js +200 -0
- package/node_modules/refractor/lang/avro-idl.d.ts +7 -0
- package/node_modules/refractor/lang/avro-idl.js +57 -0
- package/node_modules/refractor/lang/awk.d.ts +7 -0
- package/node_modules/refractor/lang/awk.js +39 -0
- package/node_modules/refractor/lang/bash.d.ts +7 -0
- package/node_modules/refractor/lang/bash.js +250 -0
- package/node_modules/refractor/lang/basic.d.ts +7 -0
- package/node_modules/refractor/lang/basic.js +29 -0
- package/node_modules/refractor/lang/batch.d.ts +7 -0
- package/node_modules/refractor/lang/batch.js +110 -0
- package/node_modules/refractor/lang/bbcode.d.ts +7 -0
- package/node_modules/refractor/lang/bbcode.js +39 -0
- package/node_modules/refractor/lang/bbj.d.ts +7 -0
- package/node_modules/refractor/lang/bbj.js +30 -0
- package/node_modules/refractor/lang/bicep.d.ts +7 -0
- package/node_modules/refractor/lang/bicep.js +85 -0
- package/node_modules/refractor/lang/birb.d.ts +7 -0
- package/node_modules/refractor/lang/birb.js +34 -0
- package/node_modules/refractor/lang/bison.d.ts +7 -0
- package/node_modules/refractor/lang/bison.js +50 -0
- package/node_modules/refractor/lang/bnf.d.ts +7 -0
- package/node_modules/refractor/lang/bnf.js +30 -0
- package/node_modules/refractor/lang/bqn.d.ts +7 -0
- package/node_modules/refractor/lang/bqn.js +74 -0
- package/node_modules/refractor/lang/brainfuck.d.ts +7 -0
- package/node_modules/refractor/lang/brainfuck.js +30 -0
- package/node_modules/refractor/lang/brightscript.d.ts +7 -0
- package/node_modules/refractor/lang/brightscript.js +57 -0
- package/node_modules/refractor/lang/bro.d.ts +7 -0
- package/node_modules/refractor/lang/bro.js +39 -0
- package/node_modules/refractor/lang/bsl.d.ts +7 -0
- package/node_modules/refractor/lang/bsl.js +88 -0
- package/node_modules/refractor/lang/c.d.ts +7 -0
- package/node_modules/refractor/lang/c.js +94 -0
- package/node_modules/refractor/lang/cfscript.d.ts +7 -0
- package/node_modules/refractor/lang/cfscript.js +58 -0
- package/node_modules/refractor/lang/chaiscript.d.ts +7 -0
- package/node_modules/refractor/lang/chaiscript.js +73 -0
- package/node_modules/refractor/lang/cil.d.ts +7 -0
- package/node_modules/refractor/lang/cil.js +31 -0
- package/node_modules/refractor/lang/cilkc.d.ts +7 -0
- package/node_modules/refractor/lang/cilkc.js +19 -0
- package/node_modules/refractor/lang/cilkcpp.d.ts +7 -0
- package/node_modules/refractor/lang/cilkcpp.js +20 -0
- package/node_modules/refractor/lang/clike.d.ts +7 -0
- package/node_modules/refractor/lang/clike.js +43 -0
- package/node_modules/refractor/lang/clojure.d.ts +7 -0
- package/node_modules/refractor/lang/clojure.js +43 -0
- package/node_modules/refractor/lang/cmake.d.ts +7 -0
- package/node_modules/refractor/lang/cmake.js +44 -0
- package/node_modules/refractor/lang/cobol.d.ts +7 -0
- package/node_modules/refractor/lang/cobol.js +62 -0
- package/node_modules/refractor/lang/coffeescript.d.ts +7 -0
- package/node_modules/refractor/lang/coffeescript.js +97 -0
- package/node_modules/refractor/lang/concurnas.d.ts +7 -0
- package/node_modules/refractor/lang/concurnas.js +74 -0
- package/node_modules/refractor/lang/cooklang.d.ts +7 -0
- package/node_modules/refractor/lang/cooklang.js +148 -0
- package/node_modules/refractor/lang/coq.d.ts +7 -0
- package/node_modules/refractor/lang/coq.js +67 -0
- package/node_modules/refractor/lang/cpp.d.ts +7 -0
- package/node_modules/refractor/lang/cpp.js +128 -0
- package/node_modules/refractor/lang/crystal.d.ts +7 -0
- package/node_modules/refractor/lang/crystal.js +66 -0
- package/node_modules/refractor/lang/csharp.d.ts +7 -0
- package/node_modules/refractor/lang/csharp.js +486 -0
- package/node_modules/refractor/lang/cshtml.d.ts +7 -0
- package/node_modules/refractor/lang/cshtml.js +268 -0
- package/node_modules/refractor/lang/csp.d.ts +7 -0
- package/node_modules/refractor/lang/csp.js +87 -0
- package/node_modules/refractor/lang/css-extras.d.ts +7 -0
- package/node_modules/refractor/lang/css-extras.js +129 -0
- package/node_modules/refractor/lang/css.d.ts +7 -0
- package/node_modules/refractor/lang/css.js +90 -0
- package/node_modules/refractor/lang/csv.d.ts +7 -0
- package/node_modules/refractor/lang/csv.js +16 -0
- package/node_modules/refractor/lang/cue.d.ts +7 -0
- package/node_modules/refractor/lang/cue.js +98 -0
- package/node_modules/refractor/lang/cypher.d.ts +7 -0
- package/node_modules/refractor/lang/cypher.js +44 -0
- package/node_modules/refractor/lang/d.d.ts +7 -0
- package/node_modules/refractor/lang/d.js +98 -0
- package/node_modules/refractor/lang/dart.d.ts +7 -0
- package/node_modules/refractor/lang/dart.js +94 -0
- package/node_modules/refractor/lang/dataweave.d.ts +7 -0
- package/node_modules/refractor/lang/dataweave.js +52 -0
- package/node_modules/refractor/lang/dax.d.ts +7 -0
- package/node_modules/refractor/lang/dax.js +40 -0
- package/node_modules/refractor/lang/dhall.d.ts +7 -0
- package/node_modules/refractor/lang/dhall.js +81 -0
- package/node_modules/refractor/lang/diff.d.ts +7 -0
- package/node_modules/refractor/lang/diff.js +73 -0
- package/node_modules/refractor/lang/django.d.ts +7 -0
- package/node_modules/refractor/lang/django.js +68 -0
- package/node_modules/refractor/lang/dns-zone-file.d.ts +7 -0
- package/node_modules/refractor/lang/dns-zone-file.js +43 -0
- package/node_modules/refractor/lang/docker.d.ts +7 -0
- package/node_modules/refractor/lang/docker.js +129 -0
- package/node_modules/refractor/lang/dot.d.ts +7 -0
- package/node_modules/refractor/lang/dot.js +93 -0
- package/node_modules/refractor/lang/ebnf.d.ts +7 -0
- package/node_modules/refractor/lang/ebnf.js +30 -0
- package/node_modules/refractor/lang/editorconfig.d.ts +7 -0
- package/node_modules/refractor/lang/editorconfig.js +37 -0
- package/node_modules/refractor/lang/eiffel.d.ts +7 -0
- package/node_modules/refractor/lang/eiffel.js +45 -0
- package/node_modules/refractor/lang/ejs.d.ts +7 -0
- package/node_modules/refractor/lang/ejs.js +39 -0
- package/node_modules/refractor/lang/elixir.d.ts +7 -0
- package/node_modules/refractor/lang/elixir.js +111 -0
- package/node_modules/refractor/lang/elm.d.ts +7 -0
- package/node_modules/refractor/lang/elm.js +59 -0
- package/node_modules/refractor/lang/erb.d.ts +7 -0
- package/node_modules/refractor/lang/erb.js +40 -0
- package/node_modules/refractor/lang/erlang.d.ts +7 -0
- package/node_modules/refractor/lang/erlang.js +53 -0
- package/node_modules/refractor/lang/etlua.d.ts +7 -0
- package/node_modules/refractor/lang/etlua.js +37 -0
- package/node_modules/refractor/lang/excel-formula.d.ts +7 -0
- package/node_modules/refractor/lang/excel-formula.js +78 -0
- package/node_modules/refractor/lang/factor.d.ts +7 -0
- package/node_modules/refractor/lang/factor.js +937 -0
- package/node_modules/refractor/lang/false.d.ts +7 -0
- package/node_modules/refractor/lang/false.js +42 -0
- package/node_modules/refractor/lang/firestore-security-rules.d.ts +7 -0
- package/node_modules/refractor/lang/firestore-security-rules.js +50 -0
- package/node_modules/refractor/lang/flow.d.ts +7 -0
- package/node_modules/refractor/lang/flow.js +47 -0
- package/node_modules/refractor/lang/fortran.d.ts +7 -0
- package/node_modules/refractor/lang/fortran.js +51 -0
- package/node_modules/refractor/lang/fsharp.d.ts +7 -0
- package/node_modules/refractor/lang/fsharp.js +91 -0
- package/node_modules/refractor/lang/ftl.d.ts +7 -0
- package/node_modules/refractor/lang/ftl.js +134 -0
- package/node_modules/refractor/lang/gap.d.ts +7 -0
- package/node_modules/refractor/lang/gap.js +61 -0
- package/node_modules/refractor/lang/gcode.d.ts +7 -0
- package/node_modules/refractor/lang/gcode.js +26 -0
- package/node_modules/refractor/lang/gdscript.d.ts +7 -0
- package/node_modules/refractor/lang/gdscript.js +40 -0
- package/node_modules/refractor/lang/gedcom.d.ts +7 -0
- package/node_modules/refractor/lang/gedcom.js +40 -0
- package/node_modules/refractor/lang/gettext.d.ts +7 -0
- package/node_modules/refractor/lang/gettext.js +52 -0
- package/node_modules/refractor/lang/gherkin.d.ts +7 -0
- package/node_modules/refractor/lang/gherkin.js +95 -0
- package/node_modules/refractor/lang/git.d.ts +7 -0
- package/node_modules/refractor/lang/git.js +73 -0
- package/node_modules/refractor/lang/glsl.d.ts +7 -0
- package/node_modules/refractor/lang/glsl.js +16 -0
- package/node_modules/refractor/lang/gml.d.ts +7 -0
- package/node_modules/refractor/lang/gml.js +25 -0
- package/node_modules/refractor/lang/gn.d.ts +7 -0
- package/node_modules/refractor/lang/gn.js +61 -0
- package/node_modules/refractor/lang/go-module.d.ts +7 -0
- package/node_modules/refractor/lang/go-module.js +34 -0
- package/node_modules/refractor/lang/go.d.ts +7 -0
- package/node_modules/refractor/lang/go.js +41 -0
- package/node_modules/refractor/lang/gradle.d.ts +7 -0
- package/node_modules/refractor/lang/gradle.js +71 -0
- package/node_modules/refractor/lang/graphql.d.ts +7 -0
- package/node_modules/refractor/lang/graphql.js +226 -0
- package/node_modules/refractor/lang/groovy.d.ts +7 -0
- package/node_modules/refractor/lang/groovy.js +74 -0
- package/node_modules/refractor/lang/haml.d.ts +7 -0
- package/node_modules/refractor/lang/haml.js +173 -0
- package/node_modules/refractor/lang/handlebars.d.ts +7 -0
- package/node_modules/refractor/lang/handlebars.js +54 -0
- package/node_modules/refractor/lang/haskell.d.ts +7 -0
- package/node_modules/refractor/lang/haskell.js +80 -0
- package/node_modules/refractor/lang/haxe.d.ts +7 -0
- package/node_modules/refractor/lang/haxe.js +89 -0
- package/node_modules/refractor/lang/hcl.d.ts +7 -0
- package/node_modules/refractor/lang/hcl.js +75 -0
- package/node_modules/refractor/lang/hlsl.d.ts +7 -0
- package/node_modules/refractor/lang/hlsl.js +32 -0
- package/node_modules/refractor/lang/hoon.d.ts +7 -0
- package/node_modules/refractor/lang/hoon.js +25 -0
- package/node_modules/refractor/lang/hpkp.d.ts +7 -0
- package/node_modules/refractor/lang/hpkp.js +25 -0
- package/node_modules/refractor/lang/hsts.d.ts +7 -0
- package/node_modules/refractor/lang/hsts.js +24 -0
- package/node_modules/refractor/lang/http.d.ts +7 -0
- package/node_modules/refractor/lang/http.js +164 -0
- package/node_modules/refractor/lang/ichigojam.d.ts +7 -0
- package/node_modules/refractor/lang/ichigojam.js +27 -0
- package/node_modules/refractor/lang/icon.d.ts +7 -0
- package/node_modules/refractor/lang/icon.js +33 -0
- package/node_modules/refractor/lang/icu-message-format.d.ts +7 -0
- package/node_modules/refractor/lang/icu-message-format.js +164 -0
- package/node_modules/refractor/lang/idris.d.ts +7 -0
- package/node_modules/refractor/lang/idris.js +30 -0
- package/node_modules/refractor/lang/iecst.d.ts +7 -0
- package/node_modules/refractor/lang/iecst.js +46 -0
- package/node_modules/refractor/lang/ignore.d.ts +7 -0
- package/node_modules/refractor/lang/ignore.js +31 -0
- package/node_modules/refractor/lang/inform7.d.ts +7 -0
- package/node_modules/refractor/lang/inform7.js +77 -0
- package/node_modules/refractor/lang/ini.d.ts +7 -0
- package/node_modules/refractor/lang/ini.js +52 -0
- package/node_modules/refractor/lang/io.d.ts +7 -0
- package/node_modules/refractor/lang/io.js +35 -0
- package/node_modules/refractor/lang/j.d.ts +7 -0
- package/node_modules/refractor/lang/j.js +41 -0
- package/node_modules/refractor/lang/java.d.ts +7 -0
- package/node_modules/refractor/lang/java.js +163 -0
- package/node_modules/refractor/lang/javadoc.d.ts +7 -0
- package/node_modules/refractor/lang/javadoc.js +108 -0
- package/node_modules/refractor/lang/javadoclike.d.ts +7 -0
- package/node_modules/refractor/lang/javadoclike.js +94 -0
- package/node_modules/refractor/lang/javascript.d.ts +7 -0
- package/node_modules/refractor/lang/javascript.js +195 -0
- package/node_modules/refractor/lang/javastacktrace.d.ts +7 -0
- package/node_modules/refractor/lang/javastacktrace.js +149 -0
- package/node_modules/refractor/lang/jexl.d.ts +7 -0
- package/node_modules/refractor/lang/jexl.js +26 -0
- package/node_modules/refractor/lang/jolie.d.ts +7 -0
- package/node_modules/refractor/lang/jolie.js +58 -0
- package/node_modules/refractor/lang/jq.d.ts +7 -0
- package/node_modules/refractor/lang/jq.js +80 -0
- package/node_modules/refractor/lang/js-extras.d.ts +7 -0
- package/node_modules/refractor/lang/js-extras.js +160 -0
- package/node_modules/refractor/lang/js-templates.d.ts +7 -0
- package/node_modules/refractor/lang/js-templates.js +366 -0
- package/node_modules/refractor/lang/jsdoc.d.ts +7 -0
- package/node_modules/refractor/lang/jsdoc.js +102 -0
- package/node_modules/refractor/lang/json.d.ts +7 -0
- package/node_modules/refractor/lang/json.js +36 -0
- package/node_modules/refractor/lang/json5.d.ts +7 -0
- package/node_modules/refractor/lang/json5.js +34 -0
- package/node_modules/refractor/lang/jsonp.d.ts +7 -0
- package/node_modules/refractor/lang/jsonp.js +18 -0
- package/node_modules/refractor/lang/jsstacktrace.d.ts +7 -0
- package/node_modules/refractor/lang/jsstacktrace.js +53 -0
- package/node_modules/refractor/lang/jsx.d.ts +7 -0
- package/node_modules/refractor/lang/jsx.js +193 -0
- package/node_modules/refractor/lang/julia.d.ts +7 -0
- package/node_modules/refractor/lang/julia.js +50 -0
- package/node_modules/refractor/lang/keepalived.d.ts +7 -0
- package/node_modules/refractor/lang/keepalived.js +63 -0
- package/node_modules/refractor/lang/keyman.d.ts +7 -0
- package/node_modules/refractor/lang/keyman.js +54 -0
- package/node_modules/refractor/lang/kotlin.d.ts +7 -0
- package/node_modules/refractor/lang/kotlin.js +96 -0
- package/node_modules/refractor/lang/kumir.d.ts +7 -0
- package/node_modules/refractor/lang/kumir.js +116 -0
- package/node_modules/refractor/lang/kusto.d.ts +7 -0
- package/node_modules/refractor/lang/kusto.js +54 -0
- package/node_modules/refractor/lang/latex.d.ts +7 -0
- package/node_modules/refractor/lang/latex.js +77 -0
- package/node_modules/refractor/lang/latte.d.ts +7 -0
- package/node_modules/refractor/lang/latte.js +85 -0
- package/node_modules/refractor/lang/less.d.ts +7 -0
- package/node_modules/refractor/lang/less.js +65 -0
- package/node_modules/refractor/lang/lilypond.d.ts +7 -0
- package/node_modules/refractor/lang/lilypond.js +90 -0
- package/node_modules/refractor/lang/linker-script.d.ts +7 -0
- package/node_modules/refractor/lang/linker-script.js +35 -0
- package/node_modules/refractor/lang/liquid.d.ts +7 -0
- package/node_modules/refractor/lang/liquid.js +82 -0
- package/node_modules/refractor/lang/lisp.d.ts +7 -0
- package/node_modules/refractor/lang/lisp.js +223 -0
- package/node_modules/refractor/lang/livescript.d.ts +7 -0
- package/node_modules/refractor/lang/livescript.js +132 -0
- package/node_modules/refractor/lang/llvm.d.ts +7 -0
- package/node_modules/refractor/lang/llvm.js +31 -0
- package/node_modules/refractor/lang/log.d.ts +7 -0
- package/node_modules/refractor/lang/log.js +129 -0
- package/node_modules/refractor/lang/lolcode.d.ts +7 -0
- package/node_modules/refractor/lang/lolcode.js +60 -0
- package/node_modules/refractor/lang/lua.d.ts +7 -0
- package/node_modules/refractor/lang/lua.js +33 -0
- package/node_modules/refractor/lang/magma.d.ts +7 -0
- package/node_modules/refractor/lang/magma.js +43 -0
- package/node_modules/refractor/lang/makefile.d.ts +7 -0
- package/node_modules/refractor/lang/makefile.js +42 -0
- package/node_modules/refractor/lang/markdown.d.ts +7 -0
- package/node_modules/refractor/lang/markdown.js +449 -0
- package/node_modules/refractor/lang/markup-templating.d.ts +7 -0
- package/node_modules/refractor/lang/markup-templating.js +134 -0
- package/node_modules/refractor/lang/markup.d.ts +7 -0
- package/node_modules/refractor/lang/markup.js +202 -0
- package/node_modules/refractor/lang/mata.d.ts +7 -0
- package/node_modules/refractor/lang/mata.js +59 -0
- package/node_modules/refractor/lang/matlab.d.ts +7 -0
- package/node_modules/refractor/lang/matlab.js +24 -0
- package/node_modules/refractor/lang/maxscript.d.ts +7 -0
- package/node_modules/refractor/lang/maxscript.js +98 -0
- package/node_modules/refractor/lang/mel.d.ts +7 -0
- package/node_modules/refractor/lang/mel.js +56 -0
- package/node_modules/refractor/lang/mermaid.d.ts +7 -0
- package/node_modules/refractor/lang/mermaid.js +122 -0
- package/node_modules/refractor/lang/metafont.d.ts +7 -0
- package/node_modules/refractor/lang/metafont.js +102 -0
- package/node_modules/refractor/lang/mizar.d.ts +7 -0
- package/node_modules/refractor/lang/mizar.js +23 -0
- package/node_modules/refractor/lang/mongodb.d.ts +7 -0
- package/node_modules/refractor/lang/mongodb.js +307 -0
- package/node_modules/refractor/lang/monkey.d.ts +7 -0
- package/node_modules/refractor/lang/monkey.js +41 -0
- package/node_modules/refractor/lang/moonscript.d.ts +7 -0
- package/node_modules/refractor/lang/moonscript.js +70 -0
- package/node_modules/refractor/lang/n1ql.d.ts +7 -0
- package/node_modules/refractor/lang/n1ql.js +36 -0
- package/node_modules/refractor/lang/n4js.d.ts +7 -0
- package/node_modules/refractor/lang/n4js.js +25 -0
- package/node_modules/refractor/lang/nand2tetris-hdl.d.ts +7 -0
- package/node_modules/refractor/lang/nand2tetris-hdl.js +19 -0
- package/node_modules/refractor/lang/naniscript.d.ts +7 -0
- package/node_modules/refractor/lang/naniscript.js +176 -0
- package/node_modules/refractor/lang/nasm.d.ts +7 -0
- package/node_modules/refractor/lang/nasm.js +36 -0
- package/node_modules/refractor/lang/neon.d.ts +7 -0
- package/node_modules/refractor/lang/neon.js +54 -0
- package/node_modules/refractor/lang/nevod.d.ts +7 -0
- package/node_modules/refractor/lang/nevod.js +139 -0
- package/node_modules/refractor/lang/nginx.d.ts +7 -0
- package/node_modules/refractor/lang/nginx.js +63 -0
- package/node_modules/refractor/lang/nim.d.ts +7 -0
- package/node_modules/refractor/lang/nim.js +57 -0
- package/node_modules/refractor/lang/nix.d.ts +7 -0
- package/node_modules/refractor/lang/nix.js +48 -0
- package/node_modules/refractor/lang/nsis.d.ts +7 -0
- package/node_modules/refractor/lang/nsis.js +43 -0
- package/node_modules/refractor/lang/objectivec.d.ts +7 -0
- package/node_modules/refractor/lang/objectivec.js +23 -0
- package/node_modules/refractor/lang/ocaml.d.ts +7 -0
- package/node_modules/refractor/lang/ocaml.js +69 -0
- package/node_modules/refractor/lang/odin.d.ts +7 -0
- package/node_modules/refractor/lang/odin.js +98 -0
- package/node_modules/refractor/lang/opencl.d.ts +7 -0
- package/node_modules/refractor/lang/opencl.js +78 -0
- package/node_modules/refractor/lang/openqasm.d.ts +7 -0
- package/node_modules/refractor/lang/openqasm.js +33 -0
- package/node_modules/refractor/lang/oz.d.ts +7 -0
- package/node_modules/refractor/lang/oz.js +41 -0
- package/node_modules/refractor/lang/parigp.d.ts +7 -0
- package/node_modules/refractor/lang/parigp.js +63 -0
- package/node_modules/refractor/lang/parser.d.ts +7 -0
- package/node_modules/refractor/lang/parser.js +88 -0
- package/node_modules/refractor/lang/pascal.d.ts +7 -0
- package/node_modules/refractor/lang/pascal.js +83 -0
- package/node_modules/refractor/lang/pascaligo.d.ts +7 -0
- package/node_modules/refractor/lang/pascaligo.js +97 -0
- package/node_modules/refractor/lang/pcaxis.d.ts +7 -0
- package/node_modules/refractor/lang/pcaxis.js +64 -0
- package/node_modules/refractor/lang/peoplecode.d.ts +7 -0
- package/node_modules/refractor/lang/peoplecode.js +54 -0
- package/node_modules/refractor/lang/perl.d.ts +7 -0
- package/node_modules/refractor/lang/perl.js +160 -0
- package/node_modules/refractor/lang/php-extras.d.ts +7 -0
- package/node_modules/refractor/lang/php-extras.js +27 -0
- package/node_modules/refractor/lang/php.d.ts +7 -0
- package/node_modules/refractor/lang/php.js +361 -0
- package/node_modules/refractor/lang/phpdoc.d.ts +7 -0
- package/node_modules/refractor/lang/phpdoc.js +44 -0
- package/node_modules/refractor/lang/plant-uml.d.ts +7 -0
- package/node_modules/refractor/lang/plant-uml.js +123 -0
- package/node_modules/refractor/lang/plsql.d.ts +7 -0
- package/node_modules/refractor/lang/plsql.js +29 -0
- package/node_modules/refractor/lang/powerquery.d.ts +7 -0
- package/node_modules/refractor/lang/powerquery.js +67 -0
- package/node_modules/refractor/lang/powershell.d.ts +7 -0
- package/node_modules/refractor/lang/powershell.js +68 -0
- package/node_modules/refractor/lang/processing.d.ts +7 -0
- package/node_modules/refractor/lang/processing.js +27 -0
- package/node_modules/refractor/lang/prolog.d.ts +7 -0
- package/node_modules/refractor/lang/prolog.js +29 -0
- package/node_modules/refractor/lang/promql.d.ts +7 -0
- package/node_modules/refractor/lang/promql.js +112 -0
- package/node_modules/refractor/lang/properties.d.ts +7 -0
- package/node_modules/refractor/lang/properties.js +24 -0
- package/node_modules/refractor/lang/protobuf.d.ts +7 -0
- package/node_modules/refractor/lang/protobuf.js +55 -0
- package/node_modules/refractor/lang/psl.d.ts +7 -0
- package/node_modules/refractor/lang/psl.js +49 -0
- package/node_modules/refractor/lang/pug.d.ts +7 -0
- package/node_modules/refractor/lang/pug.js +220 -0
- package/node_modules/refractor/lang/puppet.d.ts +7 -0
- package/node_modules/refractor/lang/puppet.js +155 -0
- package/node_modules/refractor/lang/pure.d.ts +7 -0
- package/node_modules/refractor/lang/pure.js +106 -0
- package/node_modules/refractor/lang/purebasic.d.ts +7 -0
- package/node_modules/refractor/lang/purebasic.js +82 -0
- package/node_modules/refractor/lang/purescript.d.ts +7 -0
- package/node_modules/refractor/lang/purescript.js +42 -0
- package/node_modules/refractor/lang/python.d.ts +7 -0
- package/node_modules/refractor/lang/python.js +80 -0
- package/node_modules/refractor/lang/q.d.ts +7 -0
- package/node_modules/refractor/lang/q.js +64 -0
- package/node_modules/refractor/lang/qml.d.ts +7 -0
- package/node_modules/refractor/lang/qml.js +93 -0
- package/node_modules/refractor/lang/qore.d.ts +7 -0
- package/node_modules/refractor/lang/qore.js +35 -0
- package/node_modules/refractor/lang/qsharp.d.ts +7 -0
- package/node_modules/refractor/lang/qsharp.js +151 -0
- package/node_modules/refractor/lang/r.d.ts +7 -0
- package/node_modules/refractor/lang/r.js +33 -0
- package/node_modules/refractor/lang/racket.d.ts +7 -0
- package/node_modules/refractor/lang/racket.js +28 -0
- package/node_modules/refractor/lang/reason.d.ts +7 -0
- package/node_modules/refractor/lang/reason.js +39 -0
- package/node_modules/refractor/lang/regex.d.ts +7 -0
- package/node_modules/refractor/lang/regex.js +112 -0
- package/node_modules/refractor/lang/rego.d.ts +7 -0
- package/node_modules/refractor/lang/rego.js +39 -0
- package/node_modules/refractor/lang/renpy.d.ts +7 -0
- package/node_modules/refractor/lang/renpy.js +34 -0
- package/node_modules/refractor/lang/rescript.d.ts +7 -0
- package/node_modules/refractor/lang/rescript.js +76 -0
- package/node_modules/refractor/lang/rest.d.ts +7 -0
- package/node_modules/refractor/lang/rest.js +221 -0
- package/node_modules/refractor/lang/rip.d.ts +7 -0
- package/node_modules/refractor/lang/rip.js +41 -0
- package/node_modules/refractor/lang/roboconf.d.ts +7 -0
- package/node_modules/refractor/lang/roboconf.js +38 -0
- package/node_modules/refractor/lang/robotframework.d.ts +7 -0
- package/node_modules/refractor/lang/robotframework.js +111 -0
- package/node_modules/refractor/lang/ruby.d.ts +7 -0
- package/node_modules/refractor/lang/ruby.js +206 -0
- package/node_modules/refractor/lang/rust.d.ts +7 -0
- package/node_modules/refractor/lang/rust.js +134 -0
- package/node_modules/refractor/lang/sas.d.ts +7 -0
- package/node_modules/refractor/lang/sas.js +368 -0
- package/node_modules/refractor/lang/sass.d.ts +7 -0
- package/node_modules/refractor/lang/sass.js +85 -0
- package/node_modules/refractor/lang/scala.d.ts +7 -0
- package/node_modules/refractor/lang/scala.js +64 -0
- package/node_modules/refractor/lang/scheme.d.ts +7 -0
- package/node_modules/refractor/lang/scheme.js +143 -0
- package/node_modules/refractor/lang/scss.d.ts +7 -0
- package/node_modules/refractor/lang/scss.js +90 -0
- package/node_modules/refractor/lang/shell-session.d.ts +7 -0
- package/node_modules/refractor/lang/shell-session.js +82 -0
- package/node_modules/refractor/lang/smali.d.ts +7 -0
- package/node_modules/refractor/lang/smali.js +95 -0
- package/node_modules/refractor/lang/smalltalk.d.ts +7 -0
- package/node_modules/refractor/lang/smalltalk.js +48 -0
- package/node_modules/refractor/lang/smarty.d.ts +7 -0
- package/node_modules/refractor/lang/smarty.js +147 -0
- package/node_modules/refractor/lang/sml.d.ts +7 -0
- package/node_modules/refractor/lang/sml.js +79 -0
- package/node_modules/refractor/lang/solidity.d.ts +7 -0
- package/node_modules/refractor/lang/solidity.js +34 -0
- package/node_modules/refractor/lang/solution-file.d.ts +7 -0
- package/node_modules/refractor/lang/solution-file.js +58 -0
- package/node_modules/refractor/lang/soy.d.ts +7 -0
- package/node_modules/refractor/lang/soy.js +110 -0
- package/node_modules/refractor/lang/sparql.d.ts +7 -0
- package/node_modules/refractor/lang/sparql.js +27 -0
- package/node_modules/refractor/lang/splunk-spl.d.ts +7 -0
- package/node_modules/refractor/lang/splunk-spl.js +35 -0
- package/node_modules/refractor/lang/sqf.d.ts +7 -0
- package/node_modules/refractor/lang/sqf.js +48 -0
- package/node_modules/refractor/lang/sql.d.ts +7 -0
- package/node_modules/refractor/lang/sql.js +46 -0
- package/node_modules/refractor/lang/squirrel.d.ts +7 -0
- package/node_modules/refractor/lang/squirrel.js +56 -0
- package/node_modules/refractor/lang/stan.d.ts +7 -0
- package/node_modules/refractor/lang/stan.js +73 -0
- package/node_modules/refractor/lang/stata.d.ts +7 -0
- package/node_modules/refractor/lang/stata.js +89 -0
- package/node_modules/refractor/lang/stylus.d.ts +7 -0
- package/node_modules/refractor/lang/stylus.js +150 -0
- package/node_modules/refractor/lang/supercollider.d.ts +7 -0
- package/node_modules/refractor/lang/supercollider.js +44 -0
- package/node_modules/refractor/lang/swift.d.ts +7 -0
- package/node_modules/refractor/lang/swift.js +157 -0
- package/node_modules/refractor/lang/systemd.d.ts +7 -0
- package/node_modules/refractor/lang/systemd.js +81 -0
- package/node_modules/refractor/lang/t4-cs.d.ts +7 -0
- package/node_modules/refractor/lang/t4-cs.js +16 -0
- package/node_modules/refractor/lang/t4-templating.d.ts +7 -0
- package/node_modules/refractor/lang/t4-templating.js +56 -0
- package/node_modules/refractor/lang/t4-vb.d.ts +7 -0
- package/node_modules/refractor/lang/t4-vb.js +15 -0
- package/node_modules/refractor/lang/tap.d.ts +7 -0
- package/node_modules/refractor/lang/tap.js +34 -0
- package/node_modules/refractor/lang/tcl.d.ts +7 -0
- package/node_modules/refractor/lang/tcl.js +59 -0
- package/node_modules/refractor/lang/textile.d.ts +7 -0
- package/node_modules/refractor/lang/textile.js +304 -0
- package/node_modules/refractor/lang/toml.d.ts +7 -0
- package/node_modules/refractor/lang/toml.js +70 -0
- package/node_modules/refractor/lang/tremor.d.ts +7 -0
- package/node_modules/refractor/lang/tremor.js +86 -0
- package/node_modules/refractor/lang/tsx.d.ts +7 -0
- package/node_modules/refractor/lang/tsx.js +32 -0
- package/node_modules/refractor/lang/tt2.d.ts +7 -0
- package/node_modules/refractor/lang/tt2.js +65 -0
- package/node_modules/refractor/lang/turtle.d.ts +7 -0
- package/node_modules/refractor/lang/turtle.js +64 -0
- package/node_modules/refractor/lang/twig.d.ts +7 -0
- package/node_modules/refractor/lang/twig.js +52 -0
- package/node_modules/refractor/lang/typescript.d.ts +7 -0
- package/node_modules/refractor/lang/typescript.js +71 -0
- package/node_modules/refractor/lang/typoscript.d.ts +7 -0
- package/node_modules/refractor/lang/typoscript.js +89 -0
- package/node_modules/refractor/lang/unrealscript.d.ts +7 -0
- package/node_modules/refractor/lang/unrealscript.js +53 -0
- package/node_modules/refractor/lang/uorazor.d.ts +7 -0
- package/node_modules/refractor/lang/uorazor.js +63 -0
- package/node_modules/refractor/lang/uri.d.ts +7 -0
- package/node_modules/refractor/lang/uri.js +105 -0
- package/node_modules/refractor/lang/v.d.ts +7 -0
- package/node_modules/refractor/lang/v.js +95 -0
- package/node_modules/refractor/lang/vala.d.ts +7 -0
- package/node_modules/refractor/lang/vala.js +100 -0
- package/node_modules/refractor/lang/vbnet.d.ts +7 -0
- package/node_modules/refractor/lang/vbnet.js +35 -0
- package/node_modules/refractor/lang/velocity.d.ts +7 -0
- package/node_modules/refractor/lang/velocity.js +83 -0
- package/node_modules/refractor/lang/verilog.d.ts +7 -0
- package/node_modules/refractor/lang/verilog.js +38 -0
- package/node_modules/refractor/lang/vhdl.d.ts +7 -0
- package/node_modules/refractor/lang/vhdl.js +38 -0
- package/node_modules/refractor/lang/vim.d.ts +7 -0
- package/node_modules/refractor/lang/vim.js +23 -0
- package/node_modules/refractor/lang/visual-basic.d.ts +7 -0
- package/node_modules/refractor/lang/visual-basic.js +42 -0
- package/node_modules/refractor/lang/warpscript.d.ts +7 -0
- package/node_modules/refractor/lang/warpscript.js +35 -0
- package/node_modules/refractor/lang/wasm.d.ts +7 -0
- package/node_modules/refractor/lang/wasm.js +43 -0
- package/node_modules/refractor/lang/web-idl.d.ts +7 -0
- package/node_modules/refractor/lang/web-idl.js +120 -0
- package/node_modules/refractor/lang/wgsl.d.ts +7 -0
- package/node_modules/refractor/lang/wgsl.js +112 -0
- package/node_modules/refractor/lang/wiki.d.ts +7 -0
- package/node_modules/refractor/lang/wiki.js +90 -0
- package/node_modules/refractor/lang/wolfram.d.ts +7 -0
- package/node_modules/refractor/lang/wolfram.js +42 -0
- package/node_modules/refractor/lang/wren.d.ts +7 -0
- package/node_modules/refractor/lang/wren.js +105 -0
- package/node_modules/refractor/lang/xeora.d.ts +7 -0
- package/node_modules/refractor/lang/xeora.js +131 -0
- package/node_modules/refractor/lang/xml-doc.d.ts +7 -0
- package/node_modules/refractor/lang/xml-doc.js +47 -0
- package/node_modules/refractor/lang/xojo.d.ts +7 -0
- package/node_modules/refractor/lang/xojo.js +30 -0
- package/node_modules/refractor/lang/xquery.d.ts +7 -0
- package/node_modules/refractor/lang/xquery.js +205 -0
- package/node_modules/refractor/lang/yaml.d.ts +7 -0
- package/node_modules/refractor/lang/yaml.js +129 -0
- package/node_modules/refractor/lang/yang.d.ts +7 -0
- package/node_modules/refractor/lang/yang.js +30 -0
- package/node_modules/refractor/lang/zig.d.ts +7 -0
- package/node_modules/refractor/lang/zig.js +131 -0
- package/node_modules/refractor/lib/all.d.ts +3 -0
- package/node_modules/refractor/lib/all.d.ts.map +1 -0
- package/node_modules/refractor/lib/all.js +602 -0
- package/node_modules/refractor/lib/common.d.ts +3 -0
- package/node_modules/refractor/lib/common.d.ts.map +1 -0
- package/node_modules/refractor/lib/common.js +80 -0
- package/node_modules/refractor/lib/core.d.ts +125 -0
- package/node_modules/refractor/lib/core.d.ts.map +1 -0
- package/node_modules/refractor/lib/core.js +316 -0
- package/node_modules/refractor/lib/prism-core.d.ts +113 -0
- package/node_modules/refractor/lib/prism-core.d.ts.map +1 -0
- package/node_modules/refractor/lib/prism-core.js +768 -0
- package/node_modules/refractor/license +23 -0
- package/node_modules/refractor/package.json +140 -0
- package/node_modules/refractor/readme.md +828 -0
- package/node_modules/space-separated-tokens/index.d.ts +18 -0
- package/node_modules/space-separated-tokens/index.js +24 -0
- package/node_modules/space-separated-tokens/license +22 -0
- package/node_modules/space-separated-tokens/package.json +67 -0
- package/node_modules/space-separated-tokens/readme.md +156 -0
- package/oclif.manifest.json +821 -602
- package/package.json +2 -2
- package/dist/server/infra/http/review-api-handler.d.ts +0 -13
- package/dist/server/infra/http/review-api-handler.js +0 -286
- package/dist/server/infra/http/review-ui.d.ts +0 -7
- package/dist/server/infra/http/review-ui.js +0 -606
- package/dist/webui/assets/index-B9JmEFOK.js +0 -130
- package/dist/webui/assets/index-CMIKsBMr.css +0 -1
- package/dist/webui/assets/qoder-connector-D9_pSbd_.svg +0 -1
package/oclif.manifest.json
CHANGED
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"type": "option"
|
|
104
104
|
},
|
|
105
105
|
"timeout": {
|
|
106
|
-
"description": "
|
|
106
|
+
"description": "(deprecated, no effect, kept for compatibility)",
|
|
107
107
|
"name": "timeout",
|
|
108
108
|
"default": 300,
|
|
109
109
|
"hasDynamicHelp": false,
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
"type": "option"
|
|
502
502
|
},
|
|
503
503
|
"timeout": {
|
|
504
|
-
"description": "
|
|
504
|
+
"description": "(deprecated, no effect, kept for compatibility)",
|
|
505
505
|
"name": "timeout",
|
|
506
506
|
"default": 300,
|
|
507
507
|
"hasDynamicHelp": false,
|
|
@@ -771,6 +771,144 @@
|
|
|
771
771
|
"webui.js"
|
|
772
772
|
]
|
|
773
773
|
},
|
|
774
|
+
"connectors": {
|
|
775
|
+
"aliases": [],
|
|
776
|
+
"args": {},
|
|
777
|
+
"description": "List installed agent connectors",
|
|
778
|
+
"examples": [
|
|
779
|
+
"<%= config.bin %> connectors",
|
|
780
|
+
"<%= config.bin %> connectors --format json"
|
|
781
|
+
],
|
|
782
|
+
"flags": {
|
|
783
|
+
"format": {
|
|
784
|
+
"description": "Output format (text or json)",
|
|
785
|
+
"name": "format",
|
|
786
|
+
"default": "text",
|
|
787
|
+
"hasDynamicHelp": false,
|
|
788
|
+
"multiple": false,
|
|
789
|
+
"options": [
|
|
790
|
+
"text",
|
|
791
|
+
"json"
|
|
792
|
+
],
|
|
793
|
+
"type": "option"
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"hasDynamicHelp": false,
|
|
797
|
+
"hiddenAliases": [],
|
|
798
|
+
"id": "connectors",
|
|
799
|
+
"pluginAlias": "byterover-cli",
|
|
800
|
+
"pluginName": "byterover-cli",
|
|
801
|
+
"pluginType": "core",
|
|
802
|
+
"strict": true,
|
|
803
|
+
"enableJsonFlag": false,
|
|
804
|
+
"isESM": true,
|
|
805
|
+
"relativePath": [
|
|
806
|
+
"dist",
|
|
807
|
+
"oclif",
|
|
808
|
+
"commands",
|
|
809
|
+
"connectors",
|
|
810
|
+
"index.js"
|
|
811
|
+
]
|
|
812
|
+
},
|
|
813
|
+
"connectors:install": {
|
|
814
|
+
"aliases": [],
|
|
815
|
+
"args": {
|
|
816
|
+
"agent": {
|
|
817
|
+
"description": "Agent name to install connector for (e.g., \"Claude Code\", \"Cursor\"). Omit for interactive selection.",
|
|
818
|
+
"name": "agent",
|
|
819
|
+
"required": false
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"description": "Install or switch a connector for an agent\n\n Connector Types:\n Rules Agent reads instructions from rule file\n Hook Instructions injected on each prompt\n MCP Agent connects via MCP protocol\n Agent Skill Agent reads skill files from project directory\n\n Available agents Default Supported Types\n ──────────────────── ─────────────── ─────────────────────────\n Amp Agent Skill Rules, MCP, Agent Skill\n Antigravity Agent Skill Rules, MCP, Agent Skill\n Auggie CLI Agent Skill Rules, MCP, Agent Skill\n Augment Code MCP Rules, MCP\n Claude Code Agent Skill Rules, Hook, MCP, Agent Skill\n Claude Desktop MCP MCP\n Cline MCP Rules, MCP\n Codex Agent Skill Rules, MCP, Agent Skill\n Cursor Agent Skill Rules, MCP, Agent Skill\n Gemini CLI Agent Skill Rules, MCP, Agent Skill\n Github Copilot Agent Skill Rules, MCP, Agent Skill\n Junie Agent Skill Rules, MCP, Agent Skill\n Kilo Code Agent Skill Rules, MCP, Agent Skill\n Kiro Agent Skill Rules, MCP, Agent Skill\n OpenClaude Agent Skill Rules, MCP, Agent Skill\n OpenClaw Agent Skill Agent Skill\n OpenCode Agent Skill Rules, MCP, Agent Skill\n Qoder Agent Skill Rules, MCP, Agent Skill\n Qwen Code MCP Rules, MCP\n Roo Code Agent Skill Rules, MCP, Agent Skill\n Trae.ai Agent Skill Rules, MCP, Agent Skill\n Warp Agent Skill Rules, MCP, Agent Skill\n Windsurf Agent Skill Rules, MCP, Agent Skill\n Zed MCP Rules, MCP",
|
|
823
|
+
"examples": [
|
|
824
|
+
"<%= config.bin %> connectors install \"Claude Code\"",
|
|
825
|
+
"<%= config.bin %> connectors install \"Claude Code\" --type mcp",
|
|
826
|
+
"<%= config.bin %> connectors install Cursor --type rules"
|
|
827
|
+
],
|
|
828
|
+
"flags": {
|
|
829
|
+
"format": {
|
|
830
|
+
"description": "Output format (text or json)",
|
|
831
|
+
"name": "format",
|
|
832
|
+
"default": "text",
|
|
833
|
+
"hasDynamicHelp": false,
|
|
834
|
+
"multiple": false,
|
|
835
|
+
"options": [
|
|
836
|
+
"text",
|
|
837
|
+
"json"
|
|
838
|
+
],
|
|
839
|
+
"type": "option"
|
|
840
|
+
},
|
|
841
|
+
"type": {
|
|
842
|
+
"char": "t",
|
|
843
|
+
"description": "Connector type (rules, hook, mcp, skill). Defaults to agent's recommended type.",
|
|
844
|
+
"name": "type",
|
|
845
|
+
"hasDynamicHelp": false,
|
|
846
|
+
"multiple": false,
|
|
847
|
+
"options": [
|
|
848
|
+
"rules",
|
|
849
|
+
"hook",
|
|
850
|
+
"mcp",
|
|
851
|
+
"skill"
|
|
852
|
+
],
|
|
853
|
+
"type": "option"
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
"hasDynamicHelp": false,
|
|
857
|
+
"hiddenAliases": [],
|
|
858
|
+
"id": "connectors:install",
|
|
859
|
+
"pluginAlias": "byterover-cli",
|
|
860
|
+
"pluginName": "byterover-cli",
|
|
861
|
+
"pluginType": "core",
|
|
862
|
+
"strict": true,
|
|
863
|
+
"enableJsonFlag": false,
|
|
864
|
+
"isESM": true,
|
|
865
|
+
"relativePath": [
|
|
866
|
+
"dist",
|
|
867
|
+
"oclif",
|
|
868
|
+
"commands",
|
|
869
|
+
"connectors",
|
|
870
|
+
"install.js"
|
|
871
|
+
]
|
|
872
|
+
},
|
|
873
|
+
"connectors:list": {
|
|
874
|
+
"aliases": [],
|
|
875
|
+
"args": {},
|
|
876
|
+
"description": "List installed agent connectors",
|
|
877
|
+
"examples": [
|
|
878
|
+
"<%= config.bin %> connectors list",
|
|
879
|
+
"<%= config.bin %> connectors list --format json"
|
|
880
|
+
],
|
|
881
|
+
"flags": {
|
|
882
|
+
"format": {
|
|
883
|
+
"description": "Output format (text or json)",
|
|
884
|
+
"name": "format",
|
|
885
|
+
"default": "text",
|
|
886
|
+
"hasDynamicHelp": false,
|
|
887
|
+
"multiple": false,
|
|
888
|
+
"options": [
|
|
889
|
+
"text",
|
|
890
|
+
"json"
|
|
891
|
+
],
|
|
892
|
+
"type": "option"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"hasDynamicHelp": false,
|
|
896
|
+
"hiddenAliases": [],
|
|
897
|
+
"id": "connectors:list",
|
|
898
|
+
"pluginAlias": "byterover-cli",
|
|
899
|
+
"pluginName": "byterover-cli",
|
|
900
|
+
"pluginType": "core",
|
|
901
|
+
"strict": true,
|
|
902
|
+
"enableJsonFlag": false,
|
|
903
|
+
"isESM": true,
|
|
904
|
+
"relativePath": [
|
|
905
|
+
"dist",
|
|
906
|
+
"oclif",
|
|
907
|
+
"commands",
|
|
908
|
+
"connectors",
|
|
909
|
+
"list.js"
|
|
910
|
+
]
|
|
911
|
+
},
|
|
774
912
|
"curate": {
|
|
775
913
|
"aliases": [],
|
|
776
914
|
"args": {
|
|
@@ -840,7 +978,7 @@
|
|
|
840
978
|
"type": "option"
|
|
841
979
|
},
|
|
842
980
|
"timeout": {
|
|
843
|
-
"description": "
|
|
981
|
+
"description": "(deprecated, no effect, kept for compatibility)",
|
|
844
982
|
"name": "timeout",
|
|
845
983
|
"default": 300,
|
|
846
984
|
"hasDynamicHelp": false,
|
|
@@ -959,31 +1097,14 @@
|
|
|
959
1097
|
"view.js"
|
|
960
1098
|
]
|
|
961
1099
|
},
|
|
962
|
-
"
|
|
1100
|
+
"hub": {
|
|
963
1101
|
"aliases": [],
|
|
964
1102
|
"args": {},
|
|
965
|
-
"description": "
|
|
966
|
-
"
|
|
967
|
-
"<%= config.bin %> connectors",
|
|
968
|
-
"<%= config.bin %> connectors --format json"
|
|
969
|
-
],
|
|
970
|
-
"flags": {
|
|
971
|
-
"format": {
|
|
972
|
-
"description": "Output format (text or json)",
|
|
973
|
-
"name": "format",
|
|
974
|
-
"default": "text",
|
|
975
|
-
"hasDynamicHelp": false,
|
|
976
|
-
"multiple": false,
|
|
977
|
-
"options": [
|
|
978
|
-
"text",
|
|
979
|
-
"json"
|
|
980
|
-
],
|
|
981
|
-
"type": "option"
|
|
982
|
-
}
|
|
983
|
-
},
|
|
1103
|
+
"description": "Browse and manage skills & bundles registry",
|
|
1104
|
+
"flags": {},
|
|
984
1105
|
"hasDynamicHelp": false,
|
|
985
1106
|
"hiddenAliases": [],
|
|
986
|
-
"id": "
|
|
1107
|
+
"id": "hub",
|
|
987
1108
|
"pluginAlias": "byterover-cli",
|
|
988
1109
|
"pluginName": "byterover-cli",
|
|
989
1110
|
"pluginType": "core",
|
|
@@ -994,28 +1115,58 @@
|
|
|
994
1115
|
"dist",
|
|
995
1116
|
"oclif",
|
|
996
1117
|
"commands",
|
|
997
|
-
"
|
|
1118
|
+
"hub",
|
|
998
1119
|
"index.js"
|
|
999
1120
|
]
|
|
1000
1121
|
},
|
|
1001
|
-
"
|
|
1122
|
+
"hub:install": {
|
|
1002
1123
|
"aliases": [],
|
|
1003
1124
|
"args": {
|
|
1004
|
-
"
|
|
1005
|
-
"description": "
|
|
1006
|
-
"name": "
|
|
1007
|
-
"required":
|
|
1125
|
+
"id": {
|
|
1126
|
+
"description": "Entry ID to install",
|
|
1127
|
+
"name": "id",
|
|
1128
|
+
"required": true
|
|
1008
1129
|
}
|
|
1009
1130
|
},
|
|
1010
|
-
"description": "Install
|
|
1131
|
+
"description": "Install a skill or bundle from the hub",
|
|
1011
1132
|
"examples": [
|
|
1012
|
-
"<%= config.bin %>
|
|
1013
|
-
"<%= config.bin %>
|
|
1014
|
-
"<%= config.bin %>
|
|
1133
|
+
"<%= config.bin %> hub install byterover-review --agent \"Claude Code\"",
|
|
1134
|
+
"<%= config.bin %> hub install typescript-kickstart",
|
|
1135
|
+
"<%= config.bin %> hub install byterover-review --registry myco"
|
|
1015
1136
|
],
|
|
1016
1137
|
"flags": {
|
|
1138
|
+
"agent": {
|
|
1139
|
+
"char": "a",
|
|
1140
|
+
"description": "Target agent for skill install",
|
|
1141
|
+
"name": "agent",
|
|
1142
|
+
"hasDynamicHelp": false,
|
|
1143
|
+
"multiple": false,
|
|
1144
|
+
"options": [
|
|
1145
|
+
"Amp",
|
|
1146
|
+
"Antigravity",
|
|
1147
|
+
"Auggie CLI",
|
|
1148
|
+
"Claude Code",
|
|
1149
|
+
"Codex",
|
|
1150
|
+
"Cursor",
|
|
1151
|
+
"Gemini CLI",
|
|
1152
|
+
"Github Copilot",
|
|
1153
|
+
"Junie",
|
|
1154
|
+
"Kilo Code",
|
|
1155
|
+
"Kiro",
|
|
1156
|
+
"OpenClaude",
|
|
1157
|
+
"OpenClaw",
|
|
1158
|
+
"OpenCode",
|
|
1159
|
+
"Qoder",
|
|
1160
|
+
"Roo Code",
|
|
1161
|
+
"Trae.ai",
|
|
1162
|
+
"Warp",
|
|
1163
|
+
"Windsurf"
|
|
1164
|
+
],
|
|
1165
|
+
"type": "option"
|
|
1166
|
+
},
|
|
1017
1167
|
"format": {
|
|
1018
|
-
"
|
|
1168
|
+
"char": "f",
|
|
1169
|
+
"description": "Output format",
|
|
1019
1170
|
"name": "format",
|
|
1020
1171
|
"default": "text",
|
|
1021
1172
|
"hasDynamicHelp": false,
|
|
@@ -1026,24 +1177,31 @@
|
|
|
1026
1177
|
],
|
|
1027
1178
|
"type": "option"
|
|
1028
1179
|
},
|
|
1029
|
-
"
|
|
1030
|
-
"char": "
|
|
1031
|
-
"description": "
|
|
1032
|
-
"name": "
|
|
1180
|
+
"registry": {
|
|
1181
|
+
"char": "r",
|
|
1182
|
+
"description": "Registry to install from (when ID exists in multiple registries)",
|
|
1183
|
+
"name": "registry",
|
|
1184
|
+
"hasDynamicHelp": false,
|
|
1185
|
+
"multiple": false,
|
|
1186
|
+
"type": "option"
|
|
1187
|
+
},
|
|
1188
|
+
"scope": {
|
|
1189
|
+
"char": "s",
|
|
1190
|
+
"description": "Install scope for skills (global: home directory, project: current project)",
|
|
1191
|
+
"name": "scope",
|
|
1192
|
+
"default": "project",
|
|
1033
1193
|
"hasDynamicHelp": false,
|
|
1034
1194
|
"multiple": false,
|
|
1035
1195
|
"options": [
|
|
1036
|
-
"
|
|
1037
|
-
"
|
|
1038
|
-
"mcp",
|
|
1039
|
-
"skill"
|
|
1196
|
+
"global",
|
|
1197
|
+
"project"
|
|
1040
1198
|
],
|
|
1041
1199
|
"type": "option"
|
|
1042
1200
|
}
|
|
1043
1201
|
},
|
|
1044
1202
|
"hasDynamicHelp": false,
|
|
1045
1203
|
"hiddenAliases": [],
|
|
1046
|
-
"id": "
|
|
1204
|
+
"id": "hub:install",
|
|
1047
1205
|
"pluginAlias": "byterover-cli",
|
|
1048
1206
|
"pluginName": "byterover-cli",
|
|
1049
1207
|
"pluginType": "core",
|
|
@@ -1054,21 +1212,22 @@
|
|
|
1054
1212
|
"dist",
|
|
1055
1213
|
"oclif",
|
|
1056
1214
|
"commands",
|
|
1057
|
-
"
|
|
1215
|
+
"hub",
|
|
1058
1216
|
"install.js"
|
|
1059
1217
|
]
|
|
1060
1218
|
},
|
|
1061
|
-
"
|
|
1219
|
+
"hub:list": {
|
|
1062
1220
|
"aliases": [],
|
|
1063
1221
|
"args": {},
|
|
1064
|
-
"description": "List
|
|
1222
|
+
"description": "List available skills & bundles from the hub",
|
|
1065
1223
|
"examples": [
|
|
1066
|
-
"<%= config.bin %>
|
|
1067
|
-
"<%= config.bin %>
|
|
1224
|
+
"<%= config.bin %> hub list",
|
|
1225
|
+
"<%= config.bin %> hub list --format json"
|
|
1068
1226
|
],
|
|
1069
1227
|
"flags": {
|
|
1070
1228
|
"format": {
|
|
1071
|
-
"
|
|
1229
|
+
"char": "f",
|
|
1230
|
+
"description": "Output format",
|
|
1072
1231
|
"name": "format",
|
|
1073
1232
|
"default": "text",
|
|
1074
1233
|
"hasDynamicHelp": false,
|
|
@@ -1082,7 +1241,7 @@
|
|
|
1082
1241
|
},
|
|
1083
1242
|
"hasDynamicHelp": false,
|
|
1084
1243
|
"hiddenAliases": [],
|
|
1085
|
-
"id": "
|
|
1244
|
+
"id": "hub:list",
|
|
1086
1245
|
"pluginAlias": "byterover-cli",
|
|
1087
1246
|
"pluginName": "byterover-cli",
|
|
1088
1247
|
"pluginType": "core",
|
|
@@ -1093,18 +1252,91 @@
|
|
|
1093
1252
|
"dist",
|
|
1094
1253
|
"oclif",
|
|
1095
1254
|
"commands",
|
|
1096
|
-
"
|
|
1255
|
+
"hub",
|
|
1097
1256
|
"list.js"
|
|
1098
1257
|
]
|
|
1099
1258
|
},
|
|
1100
|
-
"
|
|
1259
|
+
"providers:connect": {
|
|
1101
1260
|
"aliases": [],
|
|
1102
|
-
"args": {
|
|
1103
|
-
|
|
1104
|
-
|
|
1261
|
+
"args": {
|
|
1262
|
+
"provider": {
|
|
1263
|
+
"description": "Provider ID to connect (e.g., anthropic, openai, openrouter). Omit for interactive selection.",
|
|
1264
|
+
"name": "provider",
|
|
1265
|
+
"required": false
|
|
1266
|
+
}
|
|
1267
|
+
},
|
|
1268
|
+
"description": "Connect or switch to an LLM provider",
|
|
1269
|
+
"examples": [
|
|
1270
|
+
"<%= config.bin %> providers connect",
|
|
1271
|
+
"<%= config.bin %> providers connect anthropic --api-key sk-xxx",
|
|
1272
|
+
"<%= config.bin %> providers connect openai --oauth",
|
|
1273
|
+
"<%= config.bin %> providers connect byterover",
|
|
1274
|
+
"<%= config.bin %> providers connect byterover --team acme",
|
|
1275
|
+
"<%= config.bin %> providers connect openai-compatible --base-url http://localhost:11434/v1 --api-key sk-xxx"
|
|
1276
|
+
],
|
|
1277
|
+
"flags": {
|
|
1278
|
+
"api-key": {
|
|
1279
|
+
"char": "k",
|
|
1280
|
+
"description": "API key for the provider",
|
|
1281
|
+
"name": "api-key",
|
|
1282
|
+
"hasDynamicHelp": false,
|
|
1283
|
+
"multiple": false,
|
|
1284
|
+
"type": "option"
|
|
1285
|
+
},
|
|
1286
|
+
"base-url": {
|
|
1287
|
+
"char": "b",
|
|
1288
|
+
"description": "Base URL for OpenAI-compatible providers (e.g., http://localhost:11434/v1)",
|
|
1289
|
+
"name": "base-url",
|
|
1290
|
+
"hasDynamicHelp": false,
|
|
1291
|
+
"multiple": false,
|
|
1292
|
+
"type": "option"
|
|
1293
|
+
},
|
|
1294
|
+
"code": {
|
|
1295
|
+
"char": "c",
|
|
1296
|
+
"description": "Authorization code for code-paste OAuth providers (e.g., Anthropic). Not applicable to browser-callback providers like OpenAI — use --oauth without --code instead.",
|
|
1297
|
+
"hidden": true,
|
|
1298
|
+
"name": "code",
|
|
1299
|
+
"hasDynamicHelp": false,
|
|
1300
|
+
"multiple": false,
|
|
1301
|
+
"type": "option"
|
|
1302
|
+
},
|
|
1303
|
+
"format": {
|
|
1304
|
+
"description": "Output format (text or json)",
|
|
1305
|
+
"name": "format",
|
|
1306
|
+
"default": "text",
|
|
1307
|
+
"hasDynamicHelp": false,
|
|
1308
|
+
"multiple": false,
|
|
1309
|
+
"options": [
|
|
1310
|
+
"text",
|
|
1311
|
+
"json"
|
|
1312
|
+
],
|
|
1313
|
+
"type": "option"
|
|
1314
|
+
},
|
|
1315
|
+
"model": {
|
|
1316
|
+
"char": "m",
|
|
1317
|
+
"description": "Model to set as active after connecting",
|
|
1318
|
+
"name": "model",
|
|
1319
|
+
"hasDynamicHelp": false,
|
|
1320
|
+
"multiple": false,
|
|
1321
|
+
"type": "option"
|
|
1322
|
+
},
|
|
1323
|
+
"oauth": {
|
|
1324
|
+
"description": "Connect via OAuth (browser-based)",
|
|
1325
|
+
"name": "oauth",
|
|
1326
|
+
"allowNo": false,
|
|
1327
|
+
"type": "boolean"
|
|
1328
|
+
},
|
|
1329
|
+
"team": {
|
|
1330
|
+
"description": "Pin this project to a billing team (byterover only). Accepts team name or slug.",
|
|
1331
|
+
"name": "team",
|
|
1332
|
+
"hasDynamicHelp": false,
|
|
1333
|
+
"multiple": false,
|
|
1334
|
+
"type": "option"
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1105
1337
|
"hasDynamicHelp": false,
|
|
1106
1338
|
"hiddenAliases": [],
|
|
1107
|
-
"id": "
|
|
1339
|
+
"id": "providers:connect",
|
|
1108
1340
|
"pluginAlias": "byterover-cli",
|
|
1109
1341
|
"pluginName": "byterover-cli",
|
|
1110
1342
|
"pluginType": "core",
|
|
@@ -1115,58 +1347,27 @@
|
|
|
1115
1347
|
"dist",
|
|
1116
1348
|
"oclif",
|
|
1117
1349
|
"commands",
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
1350
|
+
"providers",
|
|
1351
|
+
"connect.js"
|
|
1120
1352
|
]
|
|
1121
1353
|
},
|
|
1122
|
-
"
|
|
1354
|
+
"providers:disconnect": {
|
|
1123
1355
|
"aliases": [],
|
|
1124
1356
|
"args": {
|
|
1125
|
-
"
|
|
1126
|
-
"description": "
|
|
1127
|
-
"name": "
|
|
1357
|
+
"provider": {
|
|
1358
|
+
"description": "Provider ID to disconnect",
|
|
1359
|
+
"name": "provider",
|
|
1128
1360
|
"required": true
|
|
1129
1361
|
}
|
|
1130
1362
|
},
|
|
1131
|
-
"description": "
|
|
1363
|
+
"description": "Disconnect an LLM provider",
|
|
1132
1364
|
"examples": [
|
|
1133
|
-
"<%= config.bin %>
|
|
1134
|
-
"<%= config.bin %>
|
|
1135
|
-
"<%= config.bin %> hub install byterover-review --registry myco"
|
|
1365
|
+
"<%= config.bin %> providers disconnect anthropic",
|
|
1366
|
+
"<%= config.bin %> providers disconnect openai --format json"
|
|
1136
1367
|
],
|
|
1137
1368
|
"flags": {
|
|
1138
|
-
"agent": {
|
|
1139
|
-
"char": "a",
|
|
1140
|
-
"description": "Target agent for skill install",
|
|
1141
|
-
"name": "agent",
|
|
1142
|
-
"hasDynamicHelp": false,
|
|
1143
|
-
"multiple": false,
|
|
1144
|
-
"options": [
|
|
1145
|
-
"Amp",
|
|
1146
|
-
"Antigravity",
|
|
1147
|
-
"Auggie CLI",
|
|
1148
|
-
"Claude Code",
|
|
1149
|
-
"Codex",
|
|
1150
|
-
"Cursor",
|
|
1151
|
-
"Gemini CLI",
|
|
1152
|
-
"Github Copilot",
|
|
1153
|
-
"Junie",
|
|
1154
|
-
"Kilo Code",
|
|
1155
|
-
"Kiro",
|
|
1156
|
-
"OpenClaude",
|
|
1157
|
-
"OpenClaw",
|
|
1158
|
-
"OpenCode",
|
|
1159
|
-
"Qoder",
|
|
1160
|
-
"Roo Code",
|
|
1161
|
-
"Trae.ai",
|
|
1162
|
-
"Warp",
|
|
1163
|
-
"Windsurf"
|
|
1164
|
-
],
|
|
1165
|
-
"type": "option"
|
|
1166
|
-
},
|
|
1167
1369
|
"format": {
|
|
1168
|
-
"
|
|
1169
|
-
"description": "Output format",
|
|
1370
|
+
"description": "Output format (text or json)",
|
|
1170
1371
|
"name": "format",
|
|
1171
1372
|
"default": "text",
|
|
1172
1373
|
"hasDynamicHelp": false,
|
|
@@ -1176,32 +1377,11 @@
|
|
|
1176
1377
|
"json"
|
|
1177
1378
|
],
|
|
1178
1379
|
"type": "option"
|
|
1179
|
-
},
|
|
1180
|
-
"registry": {
|
|
1181
|
-
"char": "r",
|
|
1182
|
-
"description": "Registry to install from (when ID exists in multiple registries)",
|
|
1183
|
-
"name": "registry",
|
|
1184
|
-
"hasDynamicHelp": false,
|
|
1185
|
-
"multiple": false,
|
|
1186
|
-
"type": "option"
|
|
1187
|
-
},
|
|
1188
|
-
"scope": {
|
|
1189
|
-
"char": "s",
|
|
1190
|
-
"description": "Install scope for skills (global: home directory, project: current project)",
|
|
1191
|
-
"name": "scope",
|
|
1192
|
-
"default": "project",
|
|
1193
|
-
"hasDynamicHelp": false,
|
|
1194
|
-
"multiple": false,
|
|
1195
|
-
"options": [
|
|
1196
|
-
"global",
|
|
1197
|
-
"project"
|
|
1198
|
-
],
|
|
1199
|
-
"type": "option"
|
|
1200
1380
|
}
|
|
1201
1381
|
},
|
|
1202
1382
|
"hasDynamicHelp": false,
|
|
1203
1383
|
"hiddenAliases": [],
|
|
1204
|
-
"id": "
|
|
1384
|
+
"id": "providers:disconnect",
|
|
1205
1385
|
"pluginAlias": "byterover-cli",
|
|
1206
1386
|
"pluginName": "byterover-cli",
|
|
1207
1387
|
"pluginType": "core",
|
|
@@ -1212,22 +1392,21 @@
|
|
|
1212
1392
|
"dist",
|
|
1213
1393
|
"oclif",
|
|
1214
1394
|
"commands",
|
|
1215
|
-
"
|
|
1216
|
-
"
|
|
1395
|
+
"providers",
|
|
1396
|
+
"disconnect.js"
|
|
1217
1397
|
]
|
|
1218
1398
|
},
|
|
1219
|
-
"
|
|
1399
|
+
"providers": {
|
|
1220
1400
|
"aliases": [],
|
|
1221
1401
|
"args": {},
|
|
1222
|
-
"description": "
|
|
1402
|
+
"description": "Show active provider and model",
|
|
1223
1403
|
"examples": [
|
|
1224
|
-
"<%= config.bin %>
|
|
1225
|
-
"<%= config.bin %>
|
|
1404
|
+
"<%= config.bin %> providers",
|
|
1405
|
+
"<%= config.bin %> providers --format json"
|
|
1226
1406
|
],
|
|
1227
1407
|
"flags": {
|
|
1228
1408
|
"format": {
|
|
1229
|
-
"
|
|
1230
|
-
"description": "Output format",
|
|
1409
|
+
"description": "Output format (text or json)",
|
|
1231
1410
|
"name": "format",
|
|
1232
1411
|
"default": "text",
|
|
1233
1412
|
"hasDynamicHelp": false,
|
|
@@ -1241,7 +1420,7 @@
|
|
|
1241
1420
|
},
|
|
1242
1421
|
"hasDynamicHelp": false,
|
|
1243
1422
|
"hiddenAliases": [],
|
|
1244
|
-
"id": "
|
|
1423
|
+
"id": "providers",
|
|
1245
1424
|
"pluginAlias": "byterover-cli",
|
|
1246
1425
|
"pluginName": "byterover-cli",
|
|
1247
1426
|
"pluginType": "core",
|
|
@@ -1252,39 +1431,19 @@
|
|
|
1252
1431
|
"dist",
|
|
1253
1432
|
"oclif",
|
|
1254
1433
|
"commands",
|
|
1255
|
-
"
|
|
1256
|
-
"
|
|
1434
|
+
"providers",
|
|
1435
|
+
"index.js"
|
|
1257
1436
|
]
|
|
1258
1437
|
},
|
|
1259
|
-
"
|
|
1438
|
+
"providers:list": {
|
|
1260
1439
|
"aliases": [],
|
|
1261
|
-
"args": {
|
|
1262
|
-
|
|
1263
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1264
|
-
"name": "taskId",
|
|
1265
|
-
"required": true
|
|
1266
|
-
}
|
|
1267
|
-
},
|
|
1268
|
-
"description": "Approve pending review operations for a curate task",
|
|
1440
|
+
"args": {},
|
|
1441
|
+
"description": "List all available providers and their connection status",
|
|
1269
1442
|
"examples": [
|
|
1270
|
-
"
|
|
1271
|
-
"<%= config.bin %>
|
|
1272
|
-
"",
|
|
1273
|
-
"# Approve specific files",
|
|
1274
|
-
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1275
|
-
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1276
|
-
"",
|
|
1277
|
-
"# Approve and get structured output (useful for coding agents)",
|
|
1278
|
-
"<%= config.bin %> review approve abc-123 --format json"
|
|
1443
|
+
"<%= config.bin %> providers list",
|
|
1444
|
+
"<%= config.bin %> providers list --format json"
|
|
1279
1445
|
],
|
|
1280
1446
|
"flags": {
|
|
1281
|
-
"file": {
|
|
1282
|
-
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1283
|
-
"name": "file",
|
|
1284
|
-
"hasDynamicHelp": false,
|
|
1285
|
-
"multiple": true,
|
|
1286
|
-
"type": "option"
|
|
1287
|
-
},
|
|
1288
1447
|
"format": {
|
|
1289
1448
|
"description": "Output format (text or json)",
|
|
1290
1449
|
"name": "format",
|
|
@@ -1300,7 +1459,7 @@
|
|
|
1300
1459
|
},
|
|
1301
1460
|
"hasDynamicHelp": false,
|
|
1302
1461
|
"hiddenAliases": [],
|
|
1303
|
-
"id": "
|
|
1462
|
+
"id": "providers:list",
|
|
1304
1463
|
"pluginAlias": "byterover-cli",
|
|
1305
1464
|
"pluginName": "byterover-cli",
|
|
1306
1465
|
"pluginType": "core",
|
|
@@ -1311,25 +1470,25 @@
|
|
|
1311
1470
|
"dist",
|
|
1312
1471
|
"oclif",
|
|
1313
1472
|
"commands",
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1473
|
+
"providers",
|
|
1474
|
+
"list.js"
|
|
1316
1475
|
]
|
|
1317
1476
|
},
|
|
1318
|
-
"
|
|
1477
|
+
"providers:switch": {
|
|
1319
1478
|
"aliases": [],
|
|
1320
1479
|
"args": {
|
|
1321
|
-
"
|
|
1322
|
-
"
|
|
1480
|
+
"provider": {
|
|
1481
|
+
"description": "Provider ID to switch to (e.g., anthropic, openai)",
|
|
1482
|
+
"name": "provider",
|
|
1323
1483
|
"required": true
|
|
1324
1484
|
}
|
|
1325
1485
|
},
|
|
1486
|
+
"description": "Switch the active provider",
|
|
1487
|
+
"examples": [
|
|
1488
|
+
"<%= config.bin %> providers switch anthropic",
|
|
1489
|
+
"<%= config.bin %> providers switch openai --format json"
|
|
1490
|
+
],
|
|
1326
1491
|
"flags": {
|
|
1327
|
-
"file": {
|
|
1328
|
-
"name": "file",
|
|
1329
|
-
"hasDynamicHelp": false,
|
|
1330
|
-
"multiple": true,
|
|
1331
|
-
"type": "option"
|
|
1332
|
-
},
|
|
1333
1492
|
"format": {
|
|
1334
1493
|
"description": "Output format (text or json)",
|
|
1335
1494
|
"name": "format",
|
|
@@ -1345,7 +1504,7 @@
|
|
|
1345
1504
|
},
|
|
1346
1505
|
"hasDynamicHelp": false,
|
|
1347
1506
|
"hiddenAliases": [],
|
|
1348
|
-
"id": "
|
|
1507
|
+
"id": "providers:switch",
|
|
1349
1508
|
"pluginAlias": "byterover-cli",
|
|
1350
1509
|
"pluginName": "byterover-cli",
|
|
1351
1510
|
"pluginType": "core",
|
|
@@ -1356,20 +1515,17 @@
|
|
|
1356
1515
|
"dist",
|
|
1357
1516
|
"oclif",
|
|
1358
1517
|
"commands",
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1518
|
+
"providers",
|
|
1519
|
+
"switch.js"
|
|
1361
1520
|
]
|
|
1362
1521
|
},
|
|
1363
|
-
"
|
|
1522
|
+
"model": {
|
|
1364
1523
|
"aliases": [],
|
|
1365
1524
|
"args": {},
|
|
1366
|
-
"description": "
|
|
1525
|
+
"description": "Show the active model",
|
|
1367
1526
|
"examples": [
|
|
1368
|
-
"
|
|
1369
|
-
"<%= config.bin %>
|
|
1370
|
-
"",
|
|
1371
|
-
"# Get structured output for agent-driven workflows",
|
|
1372
|
-
"<%= config.bin %> review pending --format json"
|
|
1527
|
+
"<%= config.bin %> model",
|
|
1528
|
+
"<%= config.bin %> model --format json"
|
|
1373
1529
|
],
|
|
1374
1530
|
"flags": {
|
|
1375
1531
|
"format": {
|
|
@@ -1387,7 +1543,7 @@
|
|
|
1387
1543
|
},
|
|
1388
1544
|
"hasDynamicHelp": false,
|
|
1389
1545
|
"hiddenAliases": [],
|
|
1390
|
-
"id": "
|
|
1546
|
+
"id": "model",
|
|
1391
1547
|
"pluginAlias": "byterover-cli",
|
|
1392
1548
|
"pluginName": "byterover-cli",
|
|
1393
1549
|
"pluginType": "core",
|
|
@@ -1398,229 +1554,8 @@
|
|
|
1398
1554
|
"dist",
|
|
1399
1555
|
"oclif",
|
|
1400
1556
|
"commands",
|
|
1401
|
-
"
|
|
1402
|
-
"
|
|
1403
|
-
]
|
|
1404
|
-
},
|
|
1405
|
-
"review:reject": {
|
|
1406
|
-
"aliases": [],
|
|
1407
|
-
"args": {
|
|
1408
|
-
"taskId": {
|
|
1409
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
1410
|
-
"name": "taskId",
|
|
1411
|
-
"required": true
|
|
1412
|
-
}
|
|
1413
|
-
},
|
|
1414
|
-
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
1415
|
-
"examples": [
|
|
1416
|
-
"# Reject all pending changes from a curate task",
|
|
1417
|
-
"<%= config.bin %> review reject abc-123",
|
|
1418
|
-
"",
|
|
1419
|
-
"# Reject specific files",
|
|
1420
|
-
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
1421
|
-
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1422
|
-
"",
|
|
1423
|
-
"# Reject and get structured output (useful for coding agents)",
|
|
1424
|
-
"<%= config.bin %> review reject abc-123 --format json"
|
|
1425
|
-
],
|
|
1426
|
-
"flags": {
|
|
1427
|
-
"file": {
|
|
1428
|
-
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
1429
|
-
"name": "file",
|
|
1430
|
-
"hasDynamicHelp": false,
|
|
1431
|
-
"multiple": true,
|
|
1432
|
-
"type": "option"
|
|
1433
|
-
},
|
|
1434
|
-
"format": {
|
|
1435
|
-
"description": "Output format (text or json)",
|
|
1436
|
-
"name": "format",
|
|
1437
|
-
"default": "text",
|
|
1438
|
-
"hasDynamicHelp": false,
|
|
1439
|
-
"multiple": false,
|
|
1440
|
-
"options": [
|
|
1441
|
-
"text",
|
|
1442
|
-
"json"
|
|
1443
|
-
],
|
|
1444
|
-
"type": "option"
|
|
1445
|
-
}
|
|
1446
|
-
},
|
|
1447
|
-
"hasDynamicHelp": false,
|
|
1448
|
-
"hiddenAliases": [],
|
|
1449
|
-
"id": "review:reject",
|
|
1450
|
-
"pluginAlias": "byterover-cli",
|
|
1451
|
-
"pluginName": "byterover-cli",
|
|
1452
|
-
"pluginType": "core",
|
|
1453
|
-
"strict": true,
|
|
1454
|
-
"enableJsonFlag": false,
|
|
1455
|
-
"isESM": true,
|
|
1456
|
-
"relativePath": [
|
|
1457
|
-
"dist",
|
|
1458
|
-
"oclif",
|
|
1459
|
-
"commands",
|
|
1460
|
-
"review",
|
|
1461
|
-
"reject.js"
|
|
1462
|
-
]
|
|
1463
|
-
},
|
|
1464
|
-
"source:add": {
|
|
1465
|
-
"aliases": [],
|
|
1466
|
-
"args": {
|
|
1467
|
-
"path": {
|
|
1468
|
-
"description": "Path to the target project containing .brv/",
|
|
1469
|
-
"name": "path",
|
|
1470
|
-
"required": true
|
|
1471
|
-
}
|
|
1472
|
-
},
|
|
1473
|
-
"description": "Add a read-only knowledge source from another project's context tree",
|
|
1474
|
-
"examples": [
|
|
1475
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib",
|
|
1476
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
|
|
1477
|
-
],
|
|
1478
|
-
"flags": {
|
|
1479
|
-
"alias": {
|
|
1480
|
-
"description": "Custom alias for the source (defaults to directory name)",
|
|
1481
|
-
"name": "alias",
|
|
1482
|
-
"required": false,
|
|
1483
|
-
"hasDynamicHelp": false,
|
|
1484
|
-
"multiple": false,
|
|
1485
|
-
"type": "option"
|
|
1486
|
-
}
|
|
1487
|
-
},
|
|
1488
|
-
"hasDynamicHelp": false,
|
|
1489
|
-
"hiddenAliases": [],
|
|
1490
|
-
"id": "source:add",
|
|
1491
|
-
"pluginAlias": "byterover-cli",
|
|
1492
|
-
"pluginName": "byterover-cli",
|
|
1493
|
-
"pluginType": "core",
|
|
1494
|
-
"strict": true,
|
|
1495
|
-
"enableJsonFlag": false,
|
|
1496
|
-
"isESM": true,
|
|
1497
|
-
"relativePath": [
|
|
1498
|
-
"dist",
|
|
1499
|
-
"oclif",
|
|
1500
|
-
"commands",
|
|
1501
|
-
"source",
|
|
1502
|
-
"add.js"
|
|
1503
|
-
]
|
|
1504
|
-
},
|
|
1505
|
-
"source": {
|
|
1506
|
-
"aliases": [],
|
|
1507
|
-
"args": {},
|
|
1508
|
-
"description": "Manage knowledge sources (read-only references to other projects)",
|
|
1509
|
-
"examples": [
|
|
1510
|
-
"<%= config.bin %> <%= command.id %> --help"
|
|
1511
|
-
],
|
|
1512
|
-
"flags": {},
|
|
1513
|
-
"hasDynamicHelp": false,
|
|
1514
|
-
"hiddenAliases": [],
|
|
1515
|
-
"id": "source",
|
|
1516
|
-
"pluginAlias": "byterover-cli",
|
|
1517
|
-
"pluginName": "byterover-cli",
|
|
1518
|
-
"pluginType": "core",
|
|
1519
|
-
"strict": true,
|
|
1520
|
-
"enableJsonFlag": false,
|
|
1521
|
-
"isESM": true,
|
|
1522
|
-
"relativePath": [
|
|
1523
|
-
"dist",
|
|
1524
|
-
"oclif",
|
|
1525
|
-
"commands",
|
|
1526
|
-
"source",
|
|
1527
|
-
"index.js"
|
|
1528
|
-
]
|
|
1529
|
-
},
|
|
1530
|
-
"source:list": {
|
|
1531
|
-
"aliases": [],
|
|
1532
|
-
"args": {},
|
|
1533
|
-
"description": "List all knowledge sources and their status",
|
|
1534
|
-
"examples": [
|
|
1535
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1536
|
-
],
|
|
1537
|
-
"flags": {},
|
|
1538
|
-
"hasDynamicHelp": false,
|
|
1539
|
-
"hiddenAliases": [],
|
|
1540
|
-
"id": "source:list",
|
|
1541
|
-
"pluginAlias": "byterover-cli",
|
|
1542
|
-
"pluginName": "byterover-cli",
|
|
1543
|
-
"pluginType": "core",
|
|
1544
|
-
"strict": true,
|
|
1545
|
-
"enableJsonFlag": false,
|
|
1546
|
-
"isESM": true,
|
|
1547
|
-
"relativePath": [
|
|
1548
|
-
"dist",
|
|
1549
|
-
"oclif",
|
|
1550
|
-
"commands",
|
|
1551
|
-
"source",
|
|
1552
|
-
"list.js"
|
|
1553
|
-
]
|
|
1554
|
-
},
|
|
1555
|
-
"source:remove": {
|
|
1556
|
-
"aliases": [],
|
|
1557
|
-
"args": {
|
|
1558
|
-
"aliasOrPath": {
|
|
1559
|
-
"description": "Alias or path of the knowledge source to remove",
|
|
1560
|
-
"name": "aliasOrPath",
|
|
1561
|
-
"required": true
|
|
1562
|
-
}
|
|
1563
|
-
},
|
|
1564
|
-
"description": "Remove a knowledge source",
|
|
1565
|
-
"examples": [
|
|
1566
|
-
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
1567
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
1568
|
-
],
|
|
1569
|
-
"flags": {},
|
|
1570
|
-
"hasDynamicHelp": false,
|
|
1571
|
-
"hiddenAliases": [],
|
|
1572
|
-
"id": "source:remove",
|
|
1573
|
-
"pluginAlias": "byterover-cli",
|
|
1574
|
-
"pluginName": "byterover-cli",
|
|
1575
|
-
"pluginType": "core",
|
|
1576
|
-
"strict": true,
|
|
1577
|
-
"enableJsonFlag": false,
|
|
1578
|
-
"isESM": true,
|
|
1579
|
-
"relativePath": [
|
|
1580
|
-
"dist",
|
|
1581
|
-
"oclif",
|
|
1582
|
-
"commands",
|
|
1583
|
-
"source",
|
|
1584
|
-
"remove.js"
|
|
1585
|
-
]
|
|
1586
|
-
},
|
|
1587
|
-
"model": {
|
|
1588
|
-
"aliases": [],
|
|
1589
|
-
"args": {},
|
|
1590
|
-
"description": "Show the active model",
|
|
1591
|
-
"examples": [
|
|
1592
|
-
"<%= config.bin %> model",
|
|
1593
|
-
"<%= config.bin %> model --format json"
|
|
1594
|
-
],
|
|
1595
|
-
"flags": {
|
|
1596
|
-
"format": {
|
|
1597
|
-
"description": "Output format (text or json)",
|
|
1598
|
-
"name": "format",
|
|
1599
|
-
"default": "text",
|
|
1600
|
-
"hasDynamicHelp": false,
|
|
1601
|
-
"multiple": false,
|
|
1602
|
-
"options": [
|
|
1603
|
-
"text",
|
|
1604
|
-
"json"
|
|
1605
|
-
],
|
|
1606
|
-
"type": "option"
|
|
1607
|
-
}
|
|
1608
|
-
},
|
|
1609
|
-
"hasDynamicHelp": false,
|
|
1610
|
-
"hiddenAliases": [],
|
|
1611
|
-
"id": "model",
|
|
1612
|
-
"pluginAlias": "byterover-cli",
|
|
1613
|
-
"pluginName": "byterover-cli",
|
|
1614
|
-
"pluginType": "core",
|
|
1615
|
-
"strict": true,
|
|
1616
|
-
"enableJsonFlag": false,
|
|
1617
|
-
"isESM": true,
|
|
1618
|
-
"relativePath": [
|
|
1619
|
-
"dist",
|
|
1620
|
-
"oclif",
|
|
1621
|
-
"commands",
|
|
1622
|
-
"model",
|
|
1623
|
-
"index.js"
|
|
1557
|
+
"model",
|
|
1558
|
+
"index.js"
|
|
1624
1559
|
]
|
|
1625
1560
|
},
|
|
1626
1561
|
"model:list": {
|
|
@@ -1899,48 +1834,78 @@
|
|
|
1899
1834
|
"view.js"
|
|
1900
1835
|
]
|
|
1901
1836
|
},
|
|
1902
|
-
"
|
|
1837
|
+
"review:approve": {
|
|
1903
1838
|
"aliases": [],
|
|
1904
1839
|
"args": {
|
|
1905
|
-
"
|
|
1906
|
-
"description": "
|
|
1907
|
-
"name": "
|
|
1908
|
-
"required":
|
|
1840
|
+
"taskId": {
|
|
1841
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1842
|
+
"name": "taskId",
|
|
1843
|
+
"required": true
|
|
1909
1844
|
}
|
|
1910
1845
|
},
|
|
1911
|
-
"description": "
|
|
1846
|
+
"description": "Approve pending review operations for a curate task",
|
|
1912
1847
|
"examples": [
|
|
1913
|
-
"
|
|
1914
|
-
"<%= config.bin %>
|
|
1915
|
-
"
|
|
1916
|
-
"
|
|
1917
|
-
"<%= config.bin %>
|
|
1918
|
-
"<%= config.bin %>
|
|
1848
|
+
"# Approve all pending changes from a curate task",
|
|
1849
|
+
"<%= config.bin %> review approve abc-123",
|
|
1850
|
+
"",
|
|
1851
|
+
"# Approve specific files",
|
|
1852
|
+
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1853
|
+
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1854
|
+
"",
|
|
1855
|
+
"# Approve and get structured output (useful for coding agents)",
|
|
1856
|
+
"<%= config.bin %> review approve abc-123 --format json"
|
|
1919
1857
|
],
|
|
1920
1858
|
"flags": {
|
|
1921
|
-
"
|
|
1922
|
-
"
|
|
1923
|
-
"
|
|
1924
|
-
"name": "api-key",
|
|
1859
|
+
"file": {
|
|
1860
|
+
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1861
|
+
"name": "file",
|
|
1925
1862
|
"hasDynamicHelp": false,
|
|
1926
|
-
"multiple":
|
|
1863
|
+
"multiple": true,
|
|
1927
1864
|
"type": "option"
|
|
1928
1865
|
},
|
|
1929
|
-
"
|
|
1930
|
-
"
|
|
1931
|
-
"
|
|
1932
|
-
"
|
|
1866
|
+
"format": {
|
|
1867
|
+
"description": "Output format (text or json)",
|
|
1868
|
+
"name": "format",
|
|
1869
|
+
"default": "text",
|
|
1933
1870
|
"hasDynamicHelp": false,
|
|
1934
1871
|
"multiple": false,
|
|
1872
|
+
"options": [
|
|
1873
|
+
"text",
|
|
1874
|
+
"json"
|
|
1875
|
+
],
|
|
1935
1876
|
"type": "option"
|
|
1936
|
-
}
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1877
|
+
}
|
|
1878
|
+
},
|
|
1879
|
+
"hasDynamicHelp": false,
|
|
1880
|
+
"hiddenAliases": [],
|
|
1881
|
+
"id": "review:approve",
|
|
1882
|
+
"pluginAlias": "byterover-cli",
|
|
1883
|
+
"pluginName": "byterover-cli",
|
|
1884
|
+
"pluginType": "core",
|
|
1885
|
+
"strict": true,
|
|
1886
|
+
"enableJsonFlag": false,
|
|
1887
|
+
"isESM": true,
|
|
1888
|
+
"relativePath": [
|
|
1889
|
+
"dist",
|
|
1890
|
+
"oclif",
|
|
1891
|
+
"commands",
|
|
1892
|
+
"review",
|
|
1893
|
+
"approve.js"
|
|
1894
|
+
]
|
|
1895
|
+
},
|
|
1896
|
+
"review:base-review-decision": {
|
|
1897
|
+
"aliases": [],
|
|
1898
|
+
"args": {
|
|
1899
|
+
"taskId": {
|
|
1900
|
+
"name": "taskId",
|
|
1901
|
+
"required": true
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"flags": {
|
|
1905
|
+
"file": {
|
|
1906
|
+
"name": "file",
|
|
1942
1907
|
"hasDynamicHelp": false,
|
|
1943
|
-
"multiple":
|
|
1908
|
+
"multiple": true,
|
|
1944
1909
|
"type": "option"
|
|
1945
1910
|
},
|
|
1946
1911
|
"format": {
|
|
@@ -1954,32 +1919,112 @@
|
|
|
1954
1919
|
"json"
|
|
1955
1920
|
],
|
|
1956
1921
|
"type": "option"
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1924
|
+
"hasDynamicHelp": false,
|
|
1925
|
+
"hiddenAliases": [],
|
|
1926
|
+
"id": "review:base-review-decision",
|
|
1927
|
+
"pluginAlias": "byterover-cli",
|
|
1928
|
+
"pluginName": "byterover-cli",
|
|
1929
|
+
"pluginType": "core",
|
|
1930
|
+
"strict": true,
|
|
1931
|
+
"enableJsonFlag": false,
|
|
1932
|
+
"isESM": true,
|
|
1933
|
+
"relativePath": [
|
|
1934
|
+
"dist",
|
|
1935
|
+
"oclif",
|
|
1936
|
+
"commands",
|
|
1937
|
+
"review",
|
|
1938
|
+
"base-review-decision.js"
|
|
1939
|
+
]
|
|
1940
|
+
},
|
|
1941
|
+
"review:pending": {
|
|
1942
|
+
"aliases": [],
|
|
1943
|
+
"args": {},
|
|
1944
|
+
"description": "List all pending review operations for the current project",
|
|
1945
|
+
"examples": [
|
|
1946
|
+
"# Show all pending reviews",
|
|
1947
|
+
"<%= config.bin %> review pending",
|
|
1948
|
+
"",
|
|
1949
|
+
"# Get structured output for agent-driven workflows",
|
|
1950
|
+
"<%= config.bin %> review pending --format json"
|
|
1951
|
+
],
|
|
1952
|
+
"flags": {
|
|
1953
|
+
"format": {
|
|
1954
|
+
"description": "Output format (text or json)",
|
|
1955
|
+
"name": "format",
|
|
1956
|
+
"default": "text",
|
|
1962
1957
|
"hasDynamicHelp": false,
|
|
1963
1958
|
"multiple": false,
|
|
1959
|
+
"options": [
|
|
1960
|
+
"text",
|
|
1961
|
+
"json"
|
|
1962
|
+
],
|
|
1963
|
+
"type": "option"
|
|
1964
|
+
}
|
|
1965
|
+
},
|
|
1966
|
+
"hasDynamicHelp": false,
|
|
1967
|
+
"hiddenAliases": [],
|
|
1968
|
+
"id": "review:pending",
|
|
1969
|
+
"pluginAlias": "byterover-cli",
|
|
1970
|
+
"pluginName": "byterover-cli",
|
|
1971
|
+
"pluginType": "core",
|
|
1972
|
+
"strict": true,
|
|
1973
|
+
"enableJsonFlag": false,
|
|
1974
|
+
"isESM": true,
|
|
1975
|
+
"relativePath": [
|
|
1976
|
+
"dist",
|
|
1977
|
+
"oclif",
|
|
1978
|
+
"commands",
|
|
1979
|
+
"review",
|
|
1980
|
+
"pending.js"
|
|
1981
|
+
]
|
|
1982
|
+
},
|
|
1983
|
+
"review:reject": {
|
|
1984
|
+
"aliases": [],
|
|
1985
|
+
"args": {
|
|
1986
|
+
"taskId": {
|
|
1987
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
1988
|
+
"name": "taskId",
|
|
1989
|
+
"required": true
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
1993
|
+
"examples": [
|
|
1994
|
+
"# Reject all pending changes from a curate task",
|
|
1995
|
+
"<%= config.bin %> review reject abc-123",
|
|
1996
|
+
"",
|
|
1997
|
+
"# Reject specific files",
|
|
1998
|
+
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
1999
|
+
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
2000
|
+
"",
|
|
2001
|
+
"# Reject and get structured output (useful for coding agents)",
|
|
2002
|
+
"<%= config.bin %> review reject abc-123 --format json"
|
|
2003
|
+
],
|
|
2004
|
+
"flags": {
|
|
2005
|
+
"file": {
|
|
2006
|
+
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
2007
|
+
"name": "file",
|
|
2008
|
+
"hasDynamicHelp": false,
|
|
2009
|
+
"multiple": true,
|
|
1964
2010
|
"type": "option"
|
|
1965
2011
|
},
|
|
1966
|
-
"
|
|
1967
|
-
"description": "
|
|
1968
|
-
"name": "
|
|
1969
|
-
"
|
|
1970
|
-
"type": "boolean"
|
|
1971
|
-
},
|
|
1972
|
-
"team": {
|
|
1973
|
-
"description": "Pin this project to a billing team (byterover only). Accepts team name or slug.",
|
|
1974
|
-
"name": "team",
|
|
2012
|
+
"format": {
|
|
2013
|
+
"description": "Output format (text or json)",
|
|
2014
|
+
"name": "format",
|
|
2015
|
+
"default": "text",
|
|
1975
2016
|
"hasDynamicHelp": false,
|
|
1976
2017
|
"multiple": false,
|
|
2018
|
+
"options": [
|
|
2019
|
+
"text",
|
|
2020
|
+
"json"
|
|
2021
|
+
],
|
|
1977
2022
|
"type": "option"
|
|
1978
2023
|
}
|
|
1979
2024
|
},
|
|
1980
2025
|
"hasDynamicHelp": false,
|
|
1981
2026
|
"hiddenAliases": [],
|
|
1982
|
-
"id": "
|
|
2027
|
+
"id": "review:reject",
|
|
1983
2028
|
"pluginAlias": "byterover-cli",
|
|
1984
2029
|
"pluginName": "byterover-cli",
|
|
1985
2030
|
"pluginType": "core",
|
|
@@ -1990,23 +2035,23 @@
|
|
|
1990
2035
|
"dist",
|
|
1991
2036
|
"oclif",
|
|
1992
2037
|
"commands",
|
|
1993
|
-
"
|
|
1994
|
-
"
|
|
2038
|
+
"review",
|
|
2039
|
+
"reject.js"
|
|
1995
2040
|
]
|
|
1996
2041
|
},
|
|
1997
|
-
"
|
|
2042
|
+
"settings:get": {
|
|
1998
2043
|
"aliases": [],
|
|
1999
2044
|
"args": {
|
|
2000
|
-
"
|
|
2001
|
-
"description": "
|
|
2002
|
-
"name": "
|
|
2045
|
+
"key": {
|
|
2046
|
+
"description": "Settings key to read",
|
|
2047
|
+
"name": "key",
|
|
2003
2048
|
"required": true
|
|
2004
2049
|
}
|
|
2005
2050
|
},
|
|
2006
|
-
"description": "
|
|
2051
|
+
"description": "Read one settings value. Changes apply after `brv restart`.",
|
|
2007
2052
|
"examples": [
|
|
2008
|
-
"<%= config.bin %>
|
|
2009
|
-
"<%= config.bin %>
|
|
2053
|
+
"<%= config.bin %> settings get agentPool.maxSize",
|
|
2054
|
+
"<%= config.bin %> settings get agentPool.maxSize --format json"
|
|
2010
2055
|
],
|
|
2011
2056
|
"flags": {
|
|
2012
2057
|
"format": {
|
|
@@ -2024,7 +2069,7 @@
|
|
|
2024
2069
|
},
|
|
2025
2070
|
"hasDynamicHelp": false,
|
|
2026
2071
|
"hiddenAliases": [],
|
|
2027
|
-
"id": "
|
|
2072
|
+
"id": "settings:get",
|
|
2028
2073
|
"pluginAlias": "byterover-cli",
|
|
2029
2074
|
"pluginName": "byterover-cli",
|
|
2030
2075
|
"pluginType": "core",
|
|
@@ -2035,17 +2080,17 @@
|
|
|
2035
2080
|
"dist",
|
|
2036
2081
|
"oclif",
|
|
2037
2082
|
"commands",
|
|
2038
|
-
"
|
|
2039
|
-
"
|
|
2083
|
+
"settings",
|
|
2084
|
+
"get.js"
|
|
2040
2085
|
]
|
|
2041
2086
|
},
|
|
2042
|
-
"
|
|
2087
|
+
"settings": {
|
|
2043
2088
|
"aliases": [],
|
|
2044
2089
|
"args": {},
|
|
2045
|
-
"description": "
|
|
2090
|
+
"description": "List user-configurable BRV settings. Changes apply after `brv restart`.",
|
|
2046
2091
|
"examples": [
|
|
2047
|
-
"<%= config.bin %>
|
|
2048
|
-
"<%= config.bin %>
|
|
2092
|
+
"<%= config.bin %> settings",
|
|
2093
|
+
"<%= config.bin %> settings --format json"
|
|
2049
2094
|
],
|
|
2050
2095
|
"flags": {
|
|
2051
2096
|
"format": {
|
|
@@ -2063,7 +2108,7 @@
|
|
|
2063
2108
|
},
|
|
2064
2109
|
"hasDynamicHelp": false,
|
|
2065
2110
|
"hiddenAliases": [],
|
|
2066
|
-
"id": "
|
|
2111
|
+
"id": "settings",
|
|
2067
2112
|
"pluginAlias": "byterover-cli",
|
|
2068
2113
|
"pluginName": "byterover-cli",
|
|
2069
2114
|
"pluginType": "core",
|
|
@@ -2074,17 +2119,17 @@
|
|
|
2074
2119
|
"dist",
|
|
2075
2120
|
"oclif",
|
|
2076
2121
|
"commands",
|
|
2077
|
-
"
|
|
2122
|
+
"settings",
|
|
2078
2123
|
"index.js"
|
|
2079
2124
|
]
|
|
2080
2125
|
},
|
|
2081
|
-
"
|
|
2126
|
+
"settings:list": {
|
|
2082
2127
|
"aliases": [],
|
|
2083
2128
|
"args": {},
|
|
2084
|
-
"description": "List
|
|
2129
|
+
"description": "List user-configurable BRV settings. Changes apply after `brv restart`.",
|
|
2085
2130
|
"examples": [
|
|
2086
|
-
"<%= config.bin %>
|
|
2087
|
-
"<%= config.bin %>
|
|
2131
|
+
"<%= config.bin %> settings list",
|
|
2132
|
+
"<%= config.bin %> settings list --format json"
|
|
2088
2133
|
],
|
|
2089
2134
|
"flags": {
|
|
2090
2135
|
"format": {
|
|
@@ -2102,7 +2147,7 @@
|
|
|
2102
2147
|
},
|
|
2103
2148
|
"hasDynamicHelp": false,
|
|
2104
2149
|
"hiddenAliases": [],
|
|
2105
|
-
"id": "
|
|
2150
|
+
"id": "settings:list",
|
|
2106
2151
|
"pluginAlias": "byterover-cli",
|
|
2107
2152
|
"pluginName": "byterover-cli",
|
|
2108
2153
|
"pluginType": "core",
|
|
@@ -2113,23 +2158,74 @@
|
|
|
2113
2158
|
"dist",
|
|
2114
2159
|
"oclif",
|
|
2115
2160
|
"commands",
|
|
2116
|
-
"
|
|
2161
|
+
"settings",
|
|
2117
2162
|
"list.js"
|
|
2118
2163
|
]
|
|
2119
2164
|
},
|
|
2120
|
-
"
|
|
2165
|
+
"settings:reset": {
|
|
2121
2166
|
"aliases": [],
|
|
2122
2167
|
"args": {
|
|
2123
|
-
"
|
|
2124
|
-
"description": "
|
|
2125
|
-
"name": "
|
|
2168
|
+
"key": {
|
|
2169
|
+
"description": "Settings key to reset",
|
|
2170
|
+
"name": "key",
|
|
2126
2171
|
"required": true
|
|
2127
2172
|
}
|
|
2128
2173
|
},
|
|
2129
|
-
"description": "
|
|
2174
|
+
"description": "Restore one settings value to its default. Changes apply after `brv restart`.",
|
|
2130
2175
|
"examples": [
|
|
2131
|
-
"<%= config.bin %>
|
|
2132
|
-
"<%= config.bin %>
|
|
2176
|
+
"<%= config.bin %> settings reset agentPool.maxSize",
|
|
2177
|
+
"<%= config.bin %> settings reset agentPool.maxSize --format json"
|
|
2178
|
+
],
|
|
2179
|
+
"flags": {
|
|
2180
|
+
"format": {
|
|
2181
|
+
"description": "Output format (text or json)",
|
|
2182
|
+
"name": "format",
|
|
2183
|
+
"default": "text",
|
|
2184
|
+
"hasDynamicHelp": false,
|
|
2185
|
+
"multiple": false,
|
|
2186
|
+
"options": [
|
|
2187
|
+
"text",
|
|
2188
|
+
"json"
|
|
2189
|
+
],
|
|
2190
|
+
"type": "option"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"hasDynamicHelp": false,
|
|
2194
|
+
"hiddenAliases": [],
|
|
2195
|
+
"id": "settings:reset",
|
|
2196
|
+
"pluginAlias": "byterover-cli",
|
|
2197
|
+
"pluginName": "byterover-cli",
|
|
2198
|
+
"pluginType": "core",
|
|
2199
|
+
"strict": true,
|
|
2200
|
+
"enableJsonFlag": false,
|
|
2201
|
+
"isESM": true,
|
|
2202
|
+
"relativePath": [
|
|
2203
|
+
"dist",
|
|
2204
|
+
"oclif",
|
|
2205
|
+
"commands",
|
|
2206
|
+
"settings",
|
|
2207
|
+
"reset.js"
|
|
2208
|
+
]
|
|
2209
|
+
},
|
|
2210
|
+
"settings:set": {
|
|
2211
|
+
"aliases": [],
|
|
2212
|
+
"args": {
|
|
2213
|
+
"key": {
|
|
2214
|
+
"description": "Settings key to write",
|
|
2215
|
+
"name": "key",
|
|
2216
|
+
"required": true
|
|
2217
|
+
},
|
|
2218
|
+
"value": {
|
|
2219
|
+
"description": "New value (integer for count keys, duration like 30m / 1h 30m / 1800000 for ms keys)",
|
|
2220
|
+
"name": "value",
|
|
2221
|
+
"required": true
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"description": "Update one settings value. Changes apply after `brv restart`.",
|
|
2225
|
+
"examples": [
|
|
2226
|
+
"<%= config.bin %> settings set agentPool.maxSize 25",
|
|
2227
|
+
"<%= config.bin %> settings set llm.iterationBudgetMs 30m",
|
|
2228
|
+
"<%= config.bin %> settings set agentPool.maxSize 25 --format json"
|
|
2133
2229
|
],
|
|
2134
2230
|
"flags": {
|
|
2135
2231
|
"format": {
|
|
@@ -2147,7 +2243,130 @@
|
|
|
2147
2243
|
},
|
|
2148
2244
|
"hasDynamicHelp": false,
|
|
2149
2245
|
"hiddenAliases": [],
|
|
2150
|
-
"id": "
|
|
2246
|
+
"id": "settings:set",
|
|
2247
|
+
"pluginAlias": "byterover-cli",
|
|
2248
|
+
"pluginName": "byterover-cli",
|
|
2249
|
+
"pluginType": "core",
|
|
2250
|
+
"strict": true,
|
|
2251
|
+
"enableJsonFlag": false,
|
|
2252
|
+
"isESM": true,
|
|
2253
|
+
"relativePath": [
|
|
2254
|
+
"dist",
|
|
2255
|
+
"oclif",
|
|
2256
|
+
"commands",
|
|
2257
|
+
"settings",
|
|
2258
|
+
"set.js"
|
|
2259
|
+
]
|
|
2260
|
+
},
|
|
2261
|
+
"source:add": {
|
|
2262
|
+
"aliases": [],
|
|
2263
|
+
"args": {
|
|
2264
|
+
"path": {
|
|
2265
|
+
"description": "Path to the target project containing .brv/",
|
|
2266
|
+
"name": "path",
|
|
2267
|
+
"required": true
|
|
2268
|
+
}
|
|
2269
|
+
},
|
|
2270
|
+
"description": "Add a read-only knowledge source from another project's context tree",
|
|
2271
|
+
"examples": [
|
|
2272
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib",
|
|
2273
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
|
|
2274
|
+
],
|
|
2275
|
+
"flags": {
|
|
2276
|
+
"alias": {
|
|
2277
|
+
"description": "Custom alias for the source (defaults to directory name)",
|
|
2278
|
+
"name": "alias",
|
|
2279
|
+
"required": false,
|
|
2280
|
+
"hasDynamicHelp": false,
|
|
2281
|
+
"multiple": false,
|
|
2282
|
+
"type": "option"
|
|
2283
|
+
}
|
|
2284
|
+
},
|
|
2285
|
+
"hasDynamicHelp": false,
|
|
2286
|
+
"hiddenAliases": [],
|
|
2287
|
+
"id": "source:add",
|
|
2288
|
+
"pluginAlias": "byterover-cli",
|
|
2289
|
+
"pluginName": "byterover-cli",
|
|
2290
|
+
"pluginType": "core",
|
|
2291
|
+
"strict": true,
|
|
2292
|
+
"enableJsonFlag": false,
|
|
2293
|
+
"isESM": true,
|
|
2294
|
+
"relativePath": [
|
|
2295
|
+
"dist",
|
|
2296
|
+
"oclif",
|
|
2297
|
+
"commands",
|
|
2298
|
+
"source",
|
|
2299
|
+
"add.js"
|
|
2300
|
+
]
|
|
2301
|
+
},
|
|
2302
|
+
"source": {
|
|
2303
|
+
"aliases": [],
|
|
2304
|
+
"args": {},
|
|
2305
|
+
"description": "Manage knowledge sources (read-only references to other projects)",
|
|
2306
|
+
"examples": [
|
|
2307
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
2308
|
+
],
|
|
2309
|
+
"flags": {},
|
|
2310
|
+
"hasDynamicHelp": false,
|
|
2311
|
+
"hiddenAliases": [],
|
|
2312
|
+
"id": "source",
|
|
2313
|
+
"pluginAlias": "byterover-cli",
|
|
2314
|
+
"pluginName": "byterover-cli",
|
|
2315
|
+
"pluginType": "core",
|
|
2316
|
+
"strict": true,
|
|
2317
|
+
"enableJsonFlag": false,
|
|
2318
|
+
"isESM": true,
|
|
2319
|
+
"relativePath": [
|
|
2320
|
+
"dist",
|
|
2321
|
+
"oclif",
|
|
2322
|
+
"commands",
|
|
2323
|
+
"source",
|
|
2324
|
+
"index.js"
|
|
2325
|
+
]
|
|
2326
|
+
},
|
|
2327
|
+
"source:list": {
|
|
2328
|
+
"aliases": [],
|
|
2329
|
+
"args": {},
|
|
2330
|
+
"description": "List all knowledge sources and their status",
|
|
2331
|
+
"examples": [
|
|
2332
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2333
|
+
],
|
|
2334
|
+
"flags": {},
|
|
2335
|
+
"hasDynamicHelp": false,
|
|
2336
|
+
"hiddenAliases": [],
|
|
2337
|
+
"id": "source:list",
|
|
2338
|
+
"pluginAlias": "byterover-cli",
|
|
2339
|
+
"pluginName": "byterover-cli",
|
|
2340
|
+
"pluginType": "core",
|
|
2341
|
+
"strict": true,
|
|
2342
|
+
"enableJsonFlag": false,
|
|
2343
|
+
"isESM": true,
|
|
2344
|
+
"relativePath": [
|
|
2345
|
+
"dist",
|
|
2346
|
+
"oclif",
|
|
2347
|
+
"commands",
|
|
2348
|
+
"source",
|
|
2349
|
+
"list.js"
|
|
2350
|
+
]
|
|
2351
|
+
},
|
|
2352
|
+
"source:remove": {
|
|
2353
|
+
"aliases": [],
|
|
2354
|
+
"args": {
|
|
2355
|
+
"aliasOrPath": {
|
|
2356
|
+
"description": "Alias or path of the knowledge source to remove",
|
|
2357
|
+
"name": "aliasOrPath",
|
|
2358
|
+
"required": true
|
|
2359
|
+
}
|
|
2360
|
+
},
|
|
2361
|
+
"description": "Remove a knowledge source",
|
|
2362
|
+
"examples": [
|
|
2363
|
+
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
2364
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2365
|
+
],
|
|
2366
|
+
"flags": {},
|
|
2367
|
+
"hasDynamicHelp": false,
|
|
2368
|
+
"hiddenAliases": [],
|
|
2369
|
+
"id": "source:remove",
|
|
2151
2370
|
"pluginAlias": "byterover-cli",
|
|
2152
2371
|
"pluginName": "byterover-cli",
|
|
2153
2372
|
"pluginType": "core",
|
|
@@ -2158,8 +2377,8 @@
|
|
|
2158
2377
|
"dist",
|
|
2159
2378
|
"oclif",
|
|
2160
2379
|
"commands",
|
|
2161
|
-
"
|
|
2162
|
-
"
|
|
2380
|
+
"source",
|
|
2381
|
+
"remove.js"
|
|
2163
2382
|
]
|
|
2164
2383
|
},
|
|
2165
2384
|
"space:list": {
|
|
@@ -2240,128 +2459,6 @@
|
|
|
2240
2459
|
"switch.js"
|
|
2241
2460
|
]
|
|
2242
2461
|
},
|
|
2243
|
-
"worktree:add": {
|
|
2244
|
-
"aliases": [],
|
|
2245
|
-
"args": {
|
|
2246
|
-
"path": {
|
|
2247
|
-
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
2248
|
-
"name": "path",
|
|
2249
|
-
"required": false
|
|
2250
|
-
}
|
|
2251
|
-
},
|
|
2252
|
-
"description": "Register a directory as a worktree of this project",
|
|
2253
|
-
"examples": [
|
|
2254
|
-
"<%= config.bin %> <%= command.id %> packages/api",
|
|
2255
|
-
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
2256
|
-
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
2257
|
-
],
|
|
2258
|
-
"flags": {
|
|
2259
|
-
"force": {
|
|
2260
|
-
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
2261
|
-
"name": "force",
|
|
2262
|
-
"allowNo": false,
|
|
2263
|
-
"type": "boolean"
|
|
2264
|
-
}
|
|
2265
|
-
},
|
|
2266
|
-
"hasDynamicHelp": false,
|
|
2267
|
-
"hiddenAliases": [],
|
|
2268
|
-
"id": "worktree:add",
|
|
2269
|
-
"pluginAlias": "byterover-cli",
|
|
2270
|
-
"pluginName": "byterover-cli",
|
|
2271
|
-
"pluginType": "core",
|
|
2272
|
-
"strict": true,
|
|
2273
|
-
"enableJsonFlag": false,
|
|
2274
|
-
"isESM": true,
|
|
2275
|
-
"relativePath": [
|
|
2276
|
-
"dist",
|
|
2277
|
-
"oclif",
|
|
2278
|
-
"commands",
|
|
2279
|
-
"worktree",
|
|
2280
|
-
"add.js"
|
|
2281
|
-
]
|
|
2282
|
-
},
|
|
2283
|
-
"worktree": {
|
|
2284
|
-
"aliases": [],
|
|
2285
|
-
"args": {},
|
|
2286
|
-
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
2287
|
-
"examples": [
|
|
2288
|
-
"<%= config.bin %> <%= command.id %> --help"
|
|
2289
|
-
],
|
|
2290
|
-
"flags": {},
|
|
2291
|
-
"hasDynamicHelp": false,
|
|
2292
|
-
"hiddenAliases": [],
|
|
2293
|
-
"id": "worktree",
|
|
2294
|
-
"pluginAlias": "byterover-cli",
|
|
2295
|
-
"pluginName": "byterover-cli",
|
|
2296
|
-
"pluginType": "core",
|
|
2297
|
-
"strict": true,
|
|
2298
|
-
"enableJsonFlag": false,
|
|
2299
|
-
"isESM": true,
|
|
2300
|
-
"relativePath": [
|
|
2301
|
-
"dist",
|
|
2302
|
-
"oclif",
|
|
2303
|
-
"commands",
|
|
2304
|
-
"worktree",
|
|
2305
|
-
"index.js"
|
|
2306
|
-
]
|
|
2307
|
-
},
|
|
2308
|
-
"worktree:list": {
|
|
2309
|
-
"aliases": [],
|
|
2310
|
-
"args": {},
|
|
2311
|
-
"description": "Show the current worktree link and list all registered worktrees",
|
|
2312
|
-
"examples": [
|
|
2313
|
-
"<%= config.bin %> <%= command.id %>"
|
|
2314
|
-
],
|
|
2315
|
-
"flags": {},
|
|
2316
|
-
"hasDynamicHelp": false,
|
|
2317
|
-
"hiddenAliases": [],
|
|
2318
|
-
"id": "worktree:list",
|
|
2319
|
-
"pluginAlias": "byterover-cli",
|
|
2320
|
-
"pluginName": "byterover-cli",
|
|
2321
|
-
"pluginType": "core",
|
|
2322
|
-
"strict": true,
|
|
2323
|
-
"enableJsonFlag": false,
|
|
2324
|
-
"isESM": true,
|
|
2325
|
-
"relativePath": [
|
|
2326
|
-
"dist",
|
|
2327
|
-
"oclif",
|
|
2328
|
-
"commands",
|
|
2329
|
-
"worktree",
|
|
2330
|
-
"list.js"
|
|
2331
|
-
]
|
|
2332
|
-
},
|
|
2333
|
-
"worktree:remove": {
|
|
2334
|
-
"aliases": [],
|
|
2335
|
-
"args": {
|
|
2336
|
-
"path": {
|
|
2337
|
-
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
2338
|
-
"name": "path",
|
|
2339
|
-
"required": false
|
|
2340
|
-
}
|
|
2341
|
-
},
|
|
2342
|
-
"description": "Remove a worktree registration and its .brv pointer",
|
|
2343
|
-
"examples": [
|
|
2344
|
-
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
2345
|
-
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
2346
|
-
],
|
|
2347
|
-
"flags": {},
|
|
2348
|
-
"hasDynamicHelp": false,
|
|
2349
|
-
"hiddenAliases": [],
|
|
2350
|
-
"id": "worktree:remove",
|
|
2351
|
-
"pluginAlias": "byterover-cli",
|
|
2352
|
-
"pluginName": "byterover-cli",
|
|
2353
|
-
"pluginType": "core",
|
|
2354
|
-
"strict": true,
|
|
2355
|
-
"enableJsonFlag": false,
|
|
2356
|
-
"isESM": true,
|
|
2357
|
-
"relativePath": [
|
|
2358
|
-
"dist",
|
|
2359
|
-
"oclif",
|
|
2360
|
-
"commands",
|
|
2361
|
-
"worktree",
|
|
2362
|
-
"remove.js"
|
|
2363
|
-
]
|
|
2364
|
-
},
|
|
2365
2462
|
"swarm:curate": {
|
|
2366
2463
|
"aliases": [],
|
|
2367
2464
|
"args": {
|
|
@@ -2542,6 +2639,128 @@
|
|
|
2542
2639
|
"status.js"
|
|
2543
2640
|
]
|
|
2544
2641
|
},
|
|
2642
|
+
"worktree:add": {
|
|
2643
|
+
"aliases": [],
|
|
2644
|
+
"args": {
|
|
2645
|
+
"path": {
|
|
2646
|
+
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
2647
|
+
"name": "path",
|
|
2648
|
+
"required": false
|
|
2649
|
+
}
|
|
2650
|
+
},
|
|
2651
|
+
"description": "Register a directory as a worktree of this project",
|
|
2652
|
+
"examples": [
|
|
2653
|
+
"<%= config.bin %> <%= command.id %> packages/api",
|
|
2654
|
+
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
2655
|
+
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
2656
|
+
],
|
|
2657
|
+
"flags": {
|
|
2658
|
+
"force": {
|
|
2659
|
+
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
2660
|
+
"name": "force",
|
|
2661
|
+
"allowNo": false,
|
|
2662
|
+
"type": "boolean"
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2665
|
+
"hasDynamicHelp": false,
|
|
2666
|
+
"hiddenAliases": [],
|
|
2667
|
+
"id": "worktree:add",
|
|
2668
|
+
"pluginAlias": "byterover-cli",
|
|
2669
|
+
"pluginName": "byterover-cli",
|
|
2670
|
+
"pluginType": "core",
|
|
2671
|
+
"strict": true,
|
|
2672
|
+
"enableJsonFlag": false,
|
|
2673
|
+
"isESM": true,
|
|
2674
|
+
"relativePath": [
|
|
2675
|
+
"dist",
|
|
2676
|
+
"oclif",
|
|
2677
|
+
"commands",
|
|
2678
|
+
"worktree",
|
|
2679
|
+
"add.js"
|
|
2680
|
+
]
|
|
2681
|
+
},
|
|
2682
|
+
"worktree": {
|
|
2683
|
+
"aliases": [],
|
|
2684
|
+
"args": {},
|
|
2685
|
+
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
2686
|
+
"examples": [
|
|
2687
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
2688
|
+
],
|
|
2689
|
+
"flags": {},
|
|
2690
|
+
"hasDynamicHelp": false,
|
|
2691
|
+
"hiddenAliases": [],
|
|
2692
|
+
"id": "worktree",
|
|
2693
|
+
"pluginAlias": "byterover-cli",
|
|
2694
|
+
"pluginName": "byterover-cli",
|
|
2695
|
+
"pluginType": "core",
|
|
2696
|
+
"strict": true,
|
|
2697
|
+
"enableJsonFlag": false,
|
|
2698
|
+
"isESM": true,
|
|
2699
|
+
"relativePath": [
|
|
2700
|
+
"dist",
|
|
2701
|
+
"oclif",
|
|
2702
|
+
"commands",
|
|
2703
|
+
"worktree",
|
|
2704
|
+
"index.js"
|
|
2705
|
+
]
|
|
2706
|
+
},
|
|
2707
|
+
"worktree:list": {
|
|
2708
|
+
"aliases": [],
|
|
2709
|
+
"args": {},
|
|
2710
|
+
"description": "Show the current worktree link and list all registered worktrees",
|
|
2711
|
+
"examples": [
|
|
2712
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2713
|
+
],
|
|
2714
|
+
"flags": {},
|
|
2715
|
+
"hasDynamicHelp": false,
|
|
2716
|
+
"hiddenAliases": [],
|
|
2717
|
+
"id": "worktree:list",
|
|
2718
|
+
"pluginAlias": "byterover-cli",
|
|
2719
|
+
"pluginName": "byterover-cli",
|
|
2720
|
+
"pluginType": "core",
|
|
2721
|
+
"strict": true,
|
|
2722
|
+
"enableJsonFlag": false,
|
|
2723
|
+
"isESM": true,
|
|
2724
|
+
"relativePath": [
|
|
2725
|
+
"dist",
|
|
2726
|
+
"oclif",
|
|
2727
|
+
"commands",
|
|
2728
|
+
"worktree",
|
|
2729
|
+
"list.js"
|
|
2730
|
+
]
|
|
2731
|
+
},
|
|
2732
|
+
"worktree:remove": {
|
|
2733
|
+
"aliases": [],
|
|
2734
|
+
"args": {
|
|
2735
|
+
"path": {
|
|
2736
|
+
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
2737
|
+
"name": "path",
|
|
2738
|
+
"required": false
|
|
2739
|
+
}
|
|
2740
|
+
},
|
|
2741
|
+
"description": "Remove a worktree registration and its .brv pointer",
|
|
2742
|
+
"examples": [
|
|
2743
|
+
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
2744
|
+
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
2745
|
+
],
|
|
2746
|
+
"flags": {},
|
|
2747
|
+
"hasDynamicHelp": false,
|
|
2748
|
+
"hiddenAliases": [],
|
|
2749
|
+
"id": "worktree:remove",
|
|
2750
|
+
"pluginAlias": "byterover-cli",
|
|
2751
|
+
"pluginName": "byterover-cli",
|
|
2752
|
+
"pluginType": "core",
|
|
2753
|
+
"strict": true,
|
|
2754
|
+
"enableJsonFlag": false,
|
|
2755
|
+
"isESM": true,
|
|
2756
|
+
"relativePath": [
|
|
2757
|
+
"dist",
|
|
2758
|
+
"oclif",
|
|
2759
|
+
"commands",
|
|
2760
|
+
"worktree",
|
|
2761
|
+
"remove.js"
|
|
2762
|
+
]
|
|
2763
|
+
},
|
|
2545
2764
|
"vc:add": {
|
|
2546
2765
|
"aliases": [],
|
|
2547
2766
|
"args": {},
|
|
@@ -3516,5 +3735,5 @@
|
|
|
3516
3735
|
]
|
|
3517
3736
|
}
|
|
3518
3737
|
},
|
|
3519
|
-
"version": "3.
|
|
3738
|
+
"version": "3.15.0"
|
|
3520
3739
|
}
|