@luan.sh/pi-view-image 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +142 -0
- package/node_modules/@luan.sh/pi-code-mode/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-code-mode/README.md +221 -0
- package/node_modules/@luan.sh/pi-code-mode/package.json +53 -0
- package/node_modules/@luan.sh/pi-code-mode/src/contributions/xsettings.ts +97 -0
- package/node_modules/@luan.sh/pi-code-mode/src/extension.ts +54 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/binary.ts +9 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/cell-operations.ts +77 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/client.ts +116 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/connection.ts +153 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/delegation.ts +34 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/operation.ts +32 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/process.ts +100 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/protocol.ts +223 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/session.ts +97 -0
- package/node_modules/@luan.sh/pi-code-mode/src/index.ts +14 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/hierarchy.ts +49 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/nested-tools.ts +217 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/preflights.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/tool-definition-adapter.ts +173 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/types.ts +99 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/code-mode.ts +86 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/delegation.ts +301 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/lifecycle.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/trace-values.ts +175 -0
- package/node_modules/@luan.sh/pi-code-mode/src/sdk.ts +23 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/definition.ts +51 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/description.ts +192 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/grammar.ts +14 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/result.ts +147 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/wait/definition.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/ui/presentation.ts +944 -0
- package/node_modules/@luan.sh/pi-code-mode/test/extension.test.ts +477 -0
- package/node_modules/@luan.sh/pi-code-mode/test/host/integration.test.ts +185 -0
- package/node_modules/@luan.sh/pi-code-mode/test/host/protocol.test.ts +60 -0
- package/node_modules/@luan.sh/pi-code-mode/test/protocol/nested-tools.test.ts +55 -0
- package/node_modules/@luan.sh/pi-code-mode/test/protocol/preflights.test.ts +72 -0
- package/node_modules/@luan.sh/pi-code-mode/test/runtime/delegation.test.ts +186 -0
- package/node_modules/@luan.sh/pi-code-mode/test/runtime/trace-values.test.ts +39 -0
- package/node_modules/@luan.sh/pi-code-mode/test/tool-definition-adapter.test.ts +135 -0
- package/node_modules/@luan.sh/pi-code-mode/test/tools/result.test.ts +88 -0
- package/node_modules/@luan.sh/pi-code-mode/test/ui/presentation.test.ts +864 -0
- package/node_modules/@luan.sh/pi-code-mode/tsconfig.json +17 -0
- package/node_modules/@luan.sh/pi-libtui/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-libtui/README.md +208 -0
- package/node_modules/@luan.sh/pi-libtui/native-revision +1 -0
- package/node_modules/@luan.sh/pi-libtui/package.json +58 -0
- package/node_modules/@luan.sh/pi-libtui/src/activity-presentation.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/appearance.ts +632 -0
- package/node_modules/@luan.sh/pi-libtui/src/background-surface.ts +125 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/palette.ts +186 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/preview.ts +157 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/resolver.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/theme.ts +531 -0
- package/node_modules/@luan.sh/pi-libtui/src/component-stack.ts +247 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/markdown-code.ts +60 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/terminal-text.ts +135 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/text.ts +105 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/action-panel.ts +420 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/dialog-button-bar.ts +287 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/multi-select.ts +467 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/picker-panel.ts +447 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/screen-icon-actions.ts +134 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/searchable-select.ts +394 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/select-box.ts +224 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/selectable-list.ts +433 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/selection-action-bar.ts +382 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/semantic-input.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/tab.ts +189 -0
- package/node_modules/@luan.sh/pi-libtui/src/cursor.ts +288 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/editor-pills.ts +156 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/glyphs.ts +326 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/pointer-interaction.ts +123 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/powerline-pill.ts +104 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/status.ts +185 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/transient-pill.ts +176 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/index.ts +21 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/model.ts +76 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/parse.ts +310 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/pierre-syntax.ts +86 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/render.ts +504 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/structured.ts +264 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/view.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/chrome.ts +341 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/composition.ts +53 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/layout.ts +81 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/presentation.ts +35 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/protocol.ts +188 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor.ts +41 -0
- package/node_modules/@luan.sh/pi-libtui/src/extension.ts +30 -0
- package/node_modules/@luan.sh/pi-libtui/src/folding.ts +192 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/cursor-bridge.ts +210 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/editor-bridge.ts +148 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/extension-host.ts +231 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-bridge.ts +212 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-dispatch.ts +400 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-input.ts +85 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-targets.ts +238 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/pi-layout-adapter.ts +298 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/pi-native-selection.ts +227 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/split-pane-bridge.ts +720 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/transcript-bridge.ts +236 -0
- package/node_modules/@luan.sh/pi-libtui/src/index.ts +334 -0
- package/node_modules/@luan.sh/pi-libtui/src/line-layout.ts +6 -0
- package/node_modules/@luan.sh/pi-libtui/src/motion.ts +1409 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/events.ts +55 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/fullscreen-layout.ts +260 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/registry.ts +348 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse.ts +37 -0
- package/node_modules/@luan.sh/pi-libtui/src/native-binary.ts +189 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/anchored.ts +91 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/detail-card.ts +158 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/dialog.ts +266 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/floating.ts +106 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/framed-editor.ts +236 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/fullscreen.ts +170 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/hover-tooltip.ts +109 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/modal-mount.ts +118 -0
- package/node_modules/@luan.sh/pi-libtui/src/panels.ts +207 -0
- package/node_modules/@luan.sh/pi-libtui/src/render-cache.ts +80 -0
- package/node_modules/@luan.sh/pi-libtui/src/render-epoch.ts +48 -0
- package/node_modules/@luan.sh/pi-libtui/src/request-animation.ts +160 -0
- package/node_modules/@luan.sh/pi-libtui/src/scrollbar.ts +27 -0
- package/node_modules/@luan.sh/pi-libtui/src/selection.ts +148 -0
- package/node_modules/@luan.sh/pi-libtui/src/split-pane.ts +232 -0
- package/node_modules/@luan.sh/pi-libtui/src/status-presentation.ts +411 -0
- package/node_modules/@luan.sh/pi-libtui/src/stream.ts +543 -0
- package/node_modules/@luan.sh/pi-libtui/src/syntax.ts +316 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/bridge-client.ts +243 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/embedding.ts +6 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/output.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/projection.ts +362 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/pty-host.ts +263 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/pty-pane.ts +308 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal-colors.ts +334 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/action.ts +170 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/activity.ts +500 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/call-preview.ts +44 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/disclosure-action.ts +89 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/expanded-region-viewport.ts +103 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/index.ts +26 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/output.ts +271 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/transcript.ts +150 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/view-region.ts +581 -0
- package/node_modules/@luan.sh/pi-libtui/test/appearance.test.ts +183 -0
- package/node_modules/@luan.sh/pi-libtui/test/bounded-stream.test.ts +150 -0
- package/node_modules/@luan.sh/pi-libtui/test/bridge-client.test.ts +42 -0
- package/node_modules/@luan.sh/pi-libtui/test/color-preview.test.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/test/component-stack.test.ts +206 -0
- package/node_modules/@luan.sh/pi-libtui/test/components.test.ts +1165 -0
- package/node_modules/@luan.sh/pi-libtui/test/content-text.test.ts +21 -0
- package/node_modules/@luan.sh/pi-libtui/test/cursor-bridge.test.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/test/cursor.test.ts +147 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-chrome.test.ts +119 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-layout.test.ts +30 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-registry.test.ts +203 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-theme.test.ts +33 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-token-pill.test.ts +72 -0
- package/node_modules/@luan.sh/pi-libtui/test/floating-overlay.test.ts +57 -0
- package/node_modules/@luan.sh/pi-libtui/test/folding.test.ts +147 -0
- package/node_modules/@luan.sh/pi-libtui/test/harmonious-theme.test.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/test/interaction.test.ts +104 -0
- package/node_modules/@luan.sh/pi-libtui/test/key-icons.test.ts +62 -0
- package/node_modules/@luan.sh/pi-libtui/test/markdown-code.test.ts +24 -0
- package/node_modules/@luan.sh/pi-libtui/test/modal-overlay-mount.test.ts +94 -0
- package/node_modules/@luan.sh/pi-libtui/test/motion.test.ts +649 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/bridge.test.ts +1302 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/extension.test.ts +205 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/registry.test.ts +140 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/screen-decoration.test.ts +167 -0
- package/node_modules/@luan.sh/pi-libtui/test/native-binary.test.ts +52 -0
- package/node_modules/@luan.sh/pi-libtui/test/palette.test.ts +32 -0
- package/node_modules/@luan.sh/pi-libtui/test/panels.test.ts +74 -0
- package/node_modules/@luan.sh/pi-libtui/test/pointer-components.test.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/test/progress.test.ts +54 -0
- package/node_modules/@luan.sh/pi-libtui/test/pty-host.test.ts +126 -0
- package/node_modules/@luan.sh/pi-libtui/test/pty-pane.test.ts +62 -0
- package/node_modules/@luan.sh/pi-libtui/test/public-surface.test.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/test/render-cache.test.ts +25 -0
- package/node_modules/@luan.sh/pi-libtui/test/render-epoch.test.ts +119 -0
- package/node_modules/@luan.sh/pi-libtui/test/request-animation.test.ts +193 -0
- package/node_modules/@luan.sh/pi-libtui/test/screen-icon-actions.test.ts +69 -0
- package/node_modules/@luan.sh/pi-libtui/test/select-box.test.ts +86 -0
- package/node_modules/@luan.sh/pi-libtui/test/select-pointer.test.ts +369 -0
- package/node_modules/@luan.sh/pi-libtui/test/selectable-list.test.ts +258 -0
- package/node_modules/@luan.sh/pi-libtui/test/selection/registry.test.ts +44 -0
- package/node_modules/@luan.sh/pi-libtui/test/selection-action-bar.test.ts +204 -0
- package/node_modules/@luan.sh/pi-libtui/test/split-pane-bridge.test.ts +944 -0
- package/node_modules/@luan.sh/pi-libtui/test/split-pane.test.ts +134 -0
- package/node_modules/@luan.sh/pi-libtui/test/status-presentation.test.ts +39 -0
- package/node_modules/@luan.sh/pi-libtui/test/syntax.test.ts +59 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-colors.test.ts +115 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-embedding.test.ts +12 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-projection.test.ts +312 -0
- package/node_modules/@luan.sh/pi-libtui/test/theme-colors.test.ts +175 -0
- package/node_modules/@luan.sh/pi-libtui/test/tool-output.test.ts +160 -0
- package/node_modules/@luan.sh/pi-libtui/test/tool-transcript.test.ts +1190 -0
- package/node_modules/@luan.sh/pi-libtui/test/unified-diff.test.ts +691 -0
- package/node_modules/@luan.sh/pi-libtui/themes/harmonious.json +61 -0
- package/node_modules/@luan.sh/pi-libtui/tsconfig.json +16 -0
- package/node_modules/@pierre/diffs/LICENSE.md +189 -0
- package/node_modules/@pierre/diffs/README.md +95 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.d.ts +476 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.js +2006 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/File.d.ts +171 -0
- package/node_modules/@pierre/diffs/dist/components/File.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/File.js +956 -0
- package/node_modules/@pierre/diffs/dist/components/File.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.d.ts +257 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.js +1652 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.d.ts +48 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.js +251 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.d.ts +71 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.js +407 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.d.ts +68 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.js +543 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.d.ts +100 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.js +1052 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.d.ts +82 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.js +433 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtulizerDevelopment.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/components/VirtulizerDevelopment.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.js +28 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/constants.d.ts +43 -0
- package/node_modules/@pierre/diffs/dist/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/constants.js +80 -0
- package/node_modules/@pierre/diffs/dist/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/edit/index.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/edit/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/editor/command.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/editor/command.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/command.js +128 -0
- package/node_modules/@pierre/diffs/dist/editor/command.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.d.ts +76 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.js +259 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.d.ts +118 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.js +2880 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor2.js +6 -0
- package/node_modules/@pierre/diffs/dist/editor/editor2.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.d.ts +26 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.js +363 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.js +212 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.js +245 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.js +138 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.js +706 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.js +31 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.d.ts +65 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.js +191 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.d.ts +41 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.js +318 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.d.ts +211 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.js +1626 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.d.ts +47 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.js +66 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.js +45 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.js +65 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.d.ts +67 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.js +278 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.d.ts +61 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.js +209 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.d.ts +41 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.js +596 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.d.ts +22 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.js +78 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.js +19 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.js +15 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.js +20 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.js +30 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.js +24 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.d.ts +23 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.js +66 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.js +11 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.js +24 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.js +11 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.js +6 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.js +17 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.js +23 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.js +21 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.js +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/index.d.ts +111 -0
- package/node_modules/@pierre/diffs/dist/index.js +109 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.d.ts +193 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.js +1202 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.d.ts +27 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.js +283 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.js +62 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.js +33 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_hast@3.0.4/node_modules/@types/hast/index.d.ts +228 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_hast@3.0.4/node_modules/@types/hast/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_unist@3.0.3/node_modules/@types/unist/index.d.ts +84 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_unist@3.0.3/node_modules/@types/unist/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.d.ts +75 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.js +387 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.js +27 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/File.d.ts +26 -0
- package/node_modules/@pierre/diffs/dist/react/File.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/File.js +42 -0
- package/node_modules/@pierre/diffs/dist/react/File.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.js +42 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.js +51 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.d.ts +29 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.js +48 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.d.ts +45 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.js +43 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.d.ts +25 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.js +35 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.d.ts +19 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.js +40 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/constants.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/react/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/constants.js +17 -0
- package/node_modules/@pierre/diffs/dist/react/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/index.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/react/index.js +17 -0
- package/node_modules/@pierre/diffs/dist/react/jsx.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/react/jsx.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/types.d.ts +51 -0
- package/node_modules/@pierre/diffs/dist/react/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/types.js +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.js +62 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.js +43 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.js +13 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.js +95 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.d.ts +39 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.js +94 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.js +13 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.js +107 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.d.ts +174 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.js +1199 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.d.ts +86 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.js +542 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.js +199 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/index.d.ts +4 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.js +31 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.js +71 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.d.ts +44 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/sprite.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/sprite.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/sprite.js +58 -0
- package/node_modules/@pierre/diffs/dist/sprite.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.js +50 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/index.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/ssr/index.js +5 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.d.ts +82 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.js +105 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.d.ts +23 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.js +32 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.js +16 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.js +10 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/string-import.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/string-import.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/style.js +6 -0
- package/node_modules/@pierre/diffs/dist/style.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/types.d.ts +1020 -0
- package/node_modules/@pierre/diffs/dist/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.js +29 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.js +13 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.js +106 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.js +80 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.js +31 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.d.ts +17 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.js +98 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.d.ts +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.js +87 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.js +89 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.d.ts +22 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.js +27 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.js +40 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.js +21 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.js +31 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.d.ts +66 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.js +437 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.js +24 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.js +33 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.js +390 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.d.ts +19 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.js +13 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.js +43 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.js +75 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.js +34 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.d.ts +35 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.js +76 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.js +21 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.js +141 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.d.ts +17 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.js +10 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.d.ts +55 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.js +493 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.js +33 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.js +47 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.js +17 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.js +503 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.js +503 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.js +32 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.js +10 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.d.ts +33 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.js +148 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.js +264 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.js +68 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.js +22 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.js +238 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.js +27 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.js +36 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.js +97 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.js +236 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.d.ts +127 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.js +235 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.js +81 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.d.ts +128 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.js +885 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.js +16 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/index.d.ts +4 -0
- package/node_modules/@pierre/diffs/dist/worker/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/worker/types.d.ts +173 -0
- package/node_modules/@pierre/diffs/dist/worker/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/worker/wasm-B9ZqxnKj.js +8 -0
- package/node_modules/@pierre/diffs/dist/worker/wasm-B9ZqxnKj.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.d.ts +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.js +13633 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.d.ts +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.js +1804 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.js.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/CONTRIBUTING.md +28 -0
- package/node_modules/@pierre/diffs/node_modules/diff/LICENSE +29 -0
- package/node_modules/@pierre/diffs/node_modules/diff/README.md +468 -0
- package/node_modules/@pierre/diffs/node_modules/diff/dist/diff.js +2313 -0
- package/node_modules/@pierre/diffs/node_modules/diff/dist/diff.min.js +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/eslint.config.mjs +182 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.js +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.js +34 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.js +23 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.js +256 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.js +14 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.d.ts +18 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.js +86 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.js +74 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.js +50 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.d.ts +35 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.js +289 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.js +67 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/package.json +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.js +264 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.d.ts +131 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.js +364 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.js +50 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.d.ts +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.js +515 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.d.ts +22 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.js +63 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.d.ts +260 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.js +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.d.ts +3 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.js +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.d.ts +4 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.d.ts +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.js +199 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.js +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.d.ts +6 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.js +31 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.js +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.js +253 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.js +7 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.d.ts +18 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.js +10 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.js +78 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.js +65 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.js +43 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.d.ts +35 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.js +281 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.js +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/package.json +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.d.ts +62 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.js +257 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.d.ts +131 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.js +357 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.js +44 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.d.ts +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.js +512 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.d.ts +22 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.js +60 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.d.ts +260 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.js +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.d.ts +3 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.js +37 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.d.ts +4 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.js +14 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.d.ts +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.js +184 -0
- package/node_modules/@pierre/diffs/node_modules/diff/package.json +130 -0
- package/node_modules/@pierre/diffs/node_modules/diff/release-notes.md +474 -0
- package/node_modules/@pierre/diffs/package.json +100 -0
- package/node_modules/@pierre/theme/LICENSE +189 -0
- package/node_modules/@pierre/theme/NOTICE.md +32 -0
- package/node_modules/@pierre/theme/README.md +51 -0
- package/node_modules/@pierre/theme/dist/index.d.mts +1 -0
- package/node_modules/@pierre/theme/dist/index.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-protanopia-deuteranopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-protanopia-deuteranopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-soft.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-soft.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-tritanopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-tritanopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-vibrant.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-vibrant.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-protanopia-deuteranopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-protanopia-deuteranopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-soft.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-soft.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-tritanopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-tritanopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-vibrant.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-vibrant.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light.mjs +1 -0
- package/node_modules/@pierre/theme/icon.png +0 -0
- package/node_modules/@pierre/theme/package.json +158 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-protanopia-deuteranopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-soft.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-tritanopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-vibrant.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-protanopia-deuteranopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-soft.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-tritanopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-vibrant.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light.json +1961 -0
- package/node_modules/@pierre/theming/LICENSE.md +189 -0
- package/node_modules/@pierre/theming/README.md +590 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.js +62 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.js.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.js +158 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.js.map +1 -0
- package/node_modules/@pierre/theming/dist/color.d.ts +19 -0
- package/node_modules/@pierre/theming/dist/color.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/color.js +26 -0
- package/node_modules/@pierre/theming/dist/color.js.map +1 -0
- package/node_modules/@pierre/theming/dist/index.d.ts +6 -0
- package/node_modules/@pierre/theming/dist/index.js +5 -0
- package/node_modules/@pierre/theming/dist/modules/color.d.ts +19 -0
- package/node_modules/@pierre/theming/dist/modules/color.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/color.js +145 -0
- package/node_modules/@pierre/theming/dist/modules/color.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.d.ts +22 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.js +21 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.d.ts +16 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.js +16 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.d.ts +35 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.js +94 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.d.ts +60 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.js +268 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.d.ts +35 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.js +115 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.js +88 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/types.d.ts +13 -0
- package/node_modules/@pierre/theming/dist/modules/types.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/types.js +0 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.d.ts +8 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.js +8 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.js.map +1 -0
- package/node_modules/@pierre/theming/dist/react.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/react.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/react.js +16 -0
- package/node_modules/@pierre/theming/dist/react.js.map +1 -0
- package/node_modules/@pierre/theming/dist/themes.d.ts +10 -0
- package/node_modules/@pierre/theming/dist/themes.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/themes.js +15 -0
- package/node_modules/@pierre/theming/dist/themes.js.map +1 -0
- package/node_modules/@pierre/theming/package.json +86 -0
- package/node_modules/@shikijs/core/LICENSE +22 -0
- package/node_modules/@shikijs/core/README.md +5 -0
- package/node_modules/@shikijs/core/dist/index.d.mts +227 -0
- package/node_modules/@shikijs/core/dist/index.mjs +1425 -0
- package/node_modules/@shikijs/core/dist/textmate.d.mts +1 -0
- package/node_modules/@shikijs/core/dist/textmate.mjs +2 -0
- package/node_modules/@shikijs/core/dist/types.d.mts +1 -0
- package/node_modules/@shikijs/core/dist/types.mjs +2 -0
- package/node_modules/@shikijs/core/package.json +60 -0
- package/node_modules/@shikijs/engine-javascript/LICENSE +22 -0
- package/node_modules/@shikijs/engine-javascript/README.md +9 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile-Bdn9ihA2.d.mts +63 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile.d.mts +2 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile.mjs +47 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-raw.d.mts +12 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-raw.mjs +27 -0
- package/node_modules/@shikijs/engine-javascript/dist/index.d.mts +3 -0
- package/node_modules/@shikijs/engine-javascript/dist/index.mjs +4 -0
- package/node_modules/@shikijs/engine-javascript/dist/scanner-DX8LRFGE.mjs +77 -0
- package/node_modules/@shikijs/engine-javascript/package.json +42 -0
- package/node_modules/@shikijs/engine-oniguruma/LICENSE +22 -0
- package/node_modules/@shikijs/engine-oniguruma/README.md +9 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/chunk-index.d.d.mts +70 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/index.d.mts +16 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +449 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/onig.d.mts +1 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.d.mts +6 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.mjs +8 -0
- package/node_modules/@shikijs/engine-oniguruma/package.json +45 -0
- package/node_modules/@shikijs/langs/LICENSE +22 -0
- package/node_modules/@shikijs/langs/README.md +7 -0
- package/node_modules/@shikijs/langs/dist/1c-query.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/1c-query.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/1c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/1c.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/abap.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/abap.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/actionscript-3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/actionscript-3.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/actionscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/actionscript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ada.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ada.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/adoc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/adoc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ahk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ahk1.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk1.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ahk2.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk2.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/angular-expression.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-expression.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/angular-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-html.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-style.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-style.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-template.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-template.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/angular-let-declaration.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-let-declaration.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-template-blocks.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-template-blocks.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/angular-template.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-template.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-ts.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/apache.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apache.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/apex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apex.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/apl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apl.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/applescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/applescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ara.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ara.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/as3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/as3.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/asciidoc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/asciidoc.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/asm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/asm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/astro.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/astro.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/awk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/awk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ballerina.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ballerina.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bash.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bash.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/bat.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bat.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/batch.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/batch.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/be.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/be.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/beancount.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/beancount.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/berry.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/berry.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bibtex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bibtex.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bicep.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bicep.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bird.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bird.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/bird2.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bird2.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/blade.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/blade.mjs +20 -0
- package/node_modules/@shikijs/langs/dist/bsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/c.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/c3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/c3.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cadence.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cadence.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cairo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cairo.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/cdc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cdc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/chapel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/chapel.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/chpl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/chpl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/clarity.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clarity.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/clj.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clj.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/clojure.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clojure.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/closure-templates.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/closure-templates.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cmake.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cmake.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cmd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cmd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cobol.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cobol.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/codeowners.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/codeowners.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/codeql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/codeql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/coffee.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coffee.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/coffeescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coffeescript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/common-lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/common-lisp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/console.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/console.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/coq.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coq.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cpp-macro.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cpp-macro.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/cpp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cpp.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/cql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/crystal.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/crystal.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/cs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/csharp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/csharp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/css.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/css.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/csv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/csv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cue.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cypher.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cypher.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/d.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/d.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dart.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dart.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dax.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dax.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/desktop.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/desktop.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/diff.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/diff.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/docker.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/docker.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dockerfile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dockerfile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/dotenv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dotenv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dream-maker.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dream-maker.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/edge.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/edge.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/elisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elisp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/elixir.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elixir.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/elm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elm.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/emacs-lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/emacs-lisp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/erb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erb.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/erl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/erlang.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erlang.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/es-tag-css.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-css.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-glsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-glsl.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-html.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-sql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-sql.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/es-tag-xml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-xml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/f.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f03.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f03.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f08.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f08.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f18.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f18.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f77.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f77.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f90.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f90.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f95.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f95.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fennel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fennel.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fish.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fish.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fluent.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fluent.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/for.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/for.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fortran-fixed-form.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fortran-fixed-form.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/fortran-free-form.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fortran-free-form.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fsharp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fsharp.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/fsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fsl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ftl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ftl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gdresource.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdresource.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/gdscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gdshader.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdshader.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/genie.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/genie.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gherkin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gherkin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/git-commit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/git-commit.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/git-rebase.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/git-rebase.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/gjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gleam.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gleam.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/glimmer-js.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glimmer-js.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/glimmer-ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glimmer-ts.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/glsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/gn.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gn.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gnuplot.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gnuplot.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/go.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/go.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/graphql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/graphql.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/groovy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/groovy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/hack.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hack.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/haml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haml.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/handlebars.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/handlebars.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/haskell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haskell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/haxe.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haxe.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hbs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hbs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/hcl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hcl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hjson.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hjson.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hlsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hlsl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/html-derivative.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/html-derivative.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/html.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/http.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/http.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/hurl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hurl.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/hxml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hxml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/hy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/imba.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/imba.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/index.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/index.mjs +367 -0
- package/node_modules/@shikijs/langs/dist/ini.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ini.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jade.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jade.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/java.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/java.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/javascript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/javascript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jinja-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jinja-html.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jinja.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jinja.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jison.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jison.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/js.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/js.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/json.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/json.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/json5.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/json5.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonc.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonnet.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonnet.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jssm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jssm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/julia.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/julia.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/just.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/just.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/justfile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/justfile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kdl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kdl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/kotlin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kotlin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/kql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kt.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kt.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kusto.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kusto.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/latex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/latex.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/lean.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lean.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/lean4.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lean4.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/less.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/less.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/liquid.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/liquid.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lisp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/lit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lit.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/llvm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/llvm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/log.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/log.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/logo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/logo.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/lua.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lua.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/luau.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/luau.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/make.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/make.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/makefile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/makefile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/markdown-nix.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown-nix.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/markdown-vue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown-vue.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/markdown.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/marko.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/marko.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/matlab.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/matlab.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mbt.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mbt.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mbti.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mbti.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/md.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/md.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mdc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mdc.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/mdx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mdx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mediawiki.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mediawiki.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mermaid.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mermaid.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mips.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mips.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mipsasm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mipsasm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mmd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mmd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mojo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mojo.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/moonbit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/moonbit.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/move.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/move.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nar.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nar.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/narrat.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/narrat.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nextflow-groovy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nextflow-groovy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nextflow.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nextflow.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nginx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nginx.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nim.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nim.mjs +20 -0
- package/node_modules/@shikijs/langs/dist/nix.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nix.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nsis.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nsis.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nu.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nu.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nushell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nushell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/objc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/objective-c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objective-c.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/objective-cpp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objective-cpp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ocaml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ocaml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/odin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/odin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/openscad.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/openscad.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/org.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/org.mjs +100 -0
- package/node_modules/@shikijs/langs/dist/pascal.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pascal.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/perl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/perl.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/perl6.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/perl6.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/php.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/php.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/pkl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pkl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/plsql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/plsql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/po.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/po.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/polar.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/polar.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/postcss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/postcss.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/pot.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pot.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/potx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/potx.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/powerquery.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/powerquery.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/powershell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/powershell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/prisma.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/prisma.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/prolog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/prolog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/properties.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/properties.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/proto.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/proto.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/protobuf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/protobuf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ps.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ps.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ps1.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ps1.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/pug.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pug.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/puppet.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/puppet.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/purescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/purescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/pwsh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pwsh.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/py.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/py.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/python.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/python.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/qml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/qmldir.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qmldir.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/qss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qss.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/r.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/r.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/racket.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/racket.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/raku.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/raku.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/razor.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/razor.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/rb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rb.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/rbs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rbs.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/reg.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/reg.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/regex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/regex.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/regexp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/regexp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rel.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/riscv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/riscv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ron.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ron.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rosmsg.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rosmsg.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/rst.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rst.mjs +22 -0
- package/node_modules/@shikijs/langs/dist/ruby-signature.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ruby-signature.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ruby.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ruby.mjs +30 -0
- package/node_modules/@shikijs/langs/dist/rust.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rust.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sas.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sas.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sass.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sass.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scad.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scad.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/scala.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scala.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scheme.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scheme.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scss.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sdbl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sdbl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sh.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shader.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shader.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shaderlab.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shaderlab.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/shell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shell.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shellscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shellscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/shellsession.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shellsession.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/smalltalk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/smalltalk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/smithy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/smithy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/solidity.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/solidity.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/soy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/soy.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sparql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sparql.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/spl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/spl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/splunk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/splunk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ssh-config.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ssh-config.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/stata.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/stata.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/styl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/styl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/stylus.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/stylus.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/surql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/surql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/surrealql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/surrealql.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/svelte.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/svelte.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/swift.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/swift.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/system-verilog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/system-verilog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/systemd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/systemd.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/talon.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/talon.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/talonscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/talonscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tasl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tasl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tcl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tcl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/templ.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/templ.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/terraform.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/terraform.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tex.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/tf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tfvars.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tfvars.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/toml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/toml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tres.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tres.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ts-tags.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ts-tags.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tscn.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tscn.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tsp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tsv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tsx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/turtle.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/turtle.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/twig.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/twig.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/typ.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typ.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/typescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/typespec.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typespec.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/typst.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typst.mjs +120 -0
- package/node_modules/@shikijs/langs/dist/v.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/v.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vala.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vala.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vb.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/verilog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/verilog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vhdl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vhdl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vim.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vim.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/viml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/viml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vimscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vimscript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/vue-directives.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-directives.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vue-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-html.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/vue-interpolations.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-interpolations.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/vue-vine.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-vine.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/vue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue.mjs +26 -0
- package/node_modules/@shikijs/langs/dist/vy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vy.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/vyper.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vyper.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wasm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wasm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wenyan.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wenyan.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wgsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wgsl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wiki.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wiki.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/wikitext.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wikitext.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wit.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/wolfram.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wolfram.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/xml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/xml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/xsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/xsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/yaml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/yaml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/yml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/yml.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/zenscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zenscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/zig.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zig.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/zsh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zsh.mjs +2 -0
- package/node_modules/@shikijs/langs/package.json +401 -0
- package/node_modules/@shikijs/primitive/LICENSE +22 -0
- package/node_modules/@shikijs/primitive/dist/index.d.mts +189 -0
- package/node_modules/@shikijs/primitive/dist/index.mjs +834 -0
- package/node_modules/@shikijs/primitive/dist/textmate.d.mts +1 -0
- package/node_modules/@shikijs/primitive/dist/textmate.mjs +2 -0
- package/node_modules/@shikijs/primitive/dist/types.d.mts +1 -0
- package/node_modules/@shikijs/primitive/dist/types.mjs +2 -0
- package/node_modules/@shikijs/primitive/package.json +56 -0
- package/node_modules/@shikijs/themes/LICENSE +22 -0
- package/node_modules/@shikijs/themes/README.md +7 -0
- package/node_modules/@shikijs/themes/dist/andromeeda.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/andromeeda.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/aurora-x.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/aurora-x.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-mirage.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-mirage.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-frappe.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-frappe.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-latte.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-latte.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-macchiato.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-macchiato.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-mocha.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-mocha.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dark-plus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dark-plus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dracula-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dracula-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dracula.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dracula.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/everforest-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/everforest-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/everforest-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/everforest-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-default.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-default.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-dimmed.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-dimmed.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-high-contrast.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-high-contrast.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light-default.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light-default.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light-high-contrast.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light-high-contrast.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-hard.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-hard.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-medium.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-medium.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/horizon-bright.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/horizon-bright.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/horizon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/horizon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/houston.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/houston.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/index.d.mts +1 -0
- package/node_modules/@shikijs/themes/dist/index.mjs +67 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-dragon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-dragon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-lotus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-lotus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-wave.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-wave.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/laserwave.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/laserwave.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/light-plus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/light-plus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-darker.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-darker.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-lighter.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-ocean.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-ocean.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-palenight.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/min-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/min-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/min-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/min-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/monokai.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/monokai.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/night-owl-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/night-owl-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/night-owl.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/night-owl.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/nord.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/nord.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/one-dark-pro.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/one-dark-pro.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/one-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/one-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/plastic.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/plastic.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/poimandres.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/poimandres.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/red.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/red.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-dawn.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-dawn.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-moon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-moon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/slack-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/slack-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/slack-ochin.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/slack-ochin.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/snazzy-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/snazzy-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/solarized-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/solarized-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/solarized-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/solarized-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/synthwave-84.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/synthwave-84.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/tokyo-night.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/tokyo-night.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vesper.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vesper.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-black.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-black.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-light.mjs +2 -0
- package/node_modules/@shikijs/themes/package.json +106 -0
- package/node_modules/@shikijs/transformers/LICENSE +22 -0
- package/node_modules/@shikijs/transformers/README.md +9 -0
- package/node_modules/@shikijs/transformers/dist/index.d.mts +268 -0
- package/node_modules/@shikijs/transformers/dist/index.mjs +744 -0
- package/node_modules/@shikijs/transformers/package.json +40 -0
- package/node_modules/@shikijs/types/LICENSE +22 -0
- package/node_modules/@shikijs/types/README.md +7 -0
- package/node_modules/@shikijs/types/dist/index.d.mts +894 -0
- package/node_modules/@shikijs/types/dist/index.mjs +9 -0
- package/node_modules/@shikijs/types/package.json +39 -0
- package/node_modules/@shikijs/vscode-textmate/LICENSE.md +21 -0
- package/node_modules/@shikijs/vscode-textmate/README.md +9 -0
- package/node_modules/@shikijs/vscode-textmate/dist/index.d.ts +711 -0
- package/node_modules/@shikijs/vscode-textmate/dist/index.js +3216 -0
- package/node_modules/@shikijs/vscode-textmate/package.json +46 -0
- 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 +924 -0
- package/node_modules/@types/hast/package.json +48 -0
- package/node_modules/@types/mdast/LICENSE +21 -0
- package/node_modules/@types/mdast/README.md +15 -0
- package/node_modules/@types/mdast/index.d.ts +1123 -0
- package/node_modules/@types/mdast/package.json +47 -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/@ungap/structured-clone/.github/workflows/node.js.yml +31 -0
- package/node_modules/@ungap/structured-clone/LICENSE +15 -0
- package/node_modules/@ungap/structured-clone/README.md +95 -0
- package/node_modules/@ungap/structured-clone/cjs/deserialize.js +112 -0
- package/node_modules/@ungap/structured-clone/cjs/index.js +27 -0
- package/node_modules/@ungap/structured-clone/cjs/json.js +24 -0
- package/node_modules/@ungap/structured-clone/cjs/package.json +1 -0
- package/node_modules/@ungap/structured-clone/cjs/serialize.js +174 -0
- package/node_modules/@ungap/structured-clone/cjs/types.js +22 -0
- package/node_modules/@ungap/structured-clone/esm/deserialize.js +113 -0
- package/node_modules/@ungap/structured-clone/esm/index.js +25 -0
- package/node_modules/@ungap/structured-clone/esm/json.js +21 -0
- package/node_modules/@ungap/structured-clone/esm/serialize.js +175 -0
- package/node_modules/@ungap/structured-clone/esm/types.js +11 -0
- package/node_modules/@ungap/structured-clone/package.json +59 -0
- package/node_modules/@ungap/structured-clone/structured-json.js +1 -0
- package/node_modules/@xterm/headless/README.md +31 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.js +2 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.js.map +1 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.mjs +46 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.mjs.map +7 -0
- package/node_modules/@xterm/headless/package.json +29 -0
- package/node_modules/@xterm/headless/typings/xterm-headless.d.ts +1385 -0
- package/node_modules/ccount/index.d.ts +11 -0
- package/node_modules/ccount/index.js +27 -0
- package/node_modules/ccount/license +22 -0
- package/node_modules/ccount/package.json +71 -0
- package/node_modules/ccount/readme.md +149 -0
- package/node_modules/character-entities-html4/index.d.ts +6 -0
- package/node_modules/character-entities-html4/index.js +259 -0
- package/node_modules/character-entities-html4/license +22 -0
- package/node_modules/character-entities-html4/package.json +79 -0
- package/node_modules/character-entities-html4/readme.md +153 -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/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/dequal/dist/index.js +86 -0
- package/node_modules/dequal/dist/index.min.js +1 -0
- package/node_modules/dequal/dist/index.mjs +84 -0
- package/node_modules/dequal/index.d.ts +1 -0
- package/node_modules/dequal/license +21 -0
- package/node_modules/dequal/lite/index.d.ts +1 -0
- package/node_modules/dequal/lite/index.js +31 -0
- package/node_modules/dequal/lite/index.min.js +1 -0
- package/node_modules/dequal/lite/index.mjs +29 -0
- package/node_modules/dequal/package.json +57 -0
- package/node_modules/dequal/readme.md +112 -0
- package/node_modules/devlop/lib/default.js +9 -0
- package/node_modules/devlop/lib/development.d.ts +84 -0
- package/node_modules/devlop/lib/development.js +238 -0
- package/node_modules/devlop/license +22 -0
- package/node_modules/devlop/package.json +80 -0
- package/node_modules/devlop/readme.md +360 -0
- package/node_modules/hast-util-to-html/index.d.ts +6 -0
- package/node_modules/hast-util-to-html/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/index.js +8 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.js +52 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.d.ts +23 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.js +27 -0
- package/node_modules/hast-util-to-html/lib/handle/element.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/element.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/element.js +265 -0
- package/node_modules/hast-util-to-html/lib/handle/index.d.ts +8 -0
- package/node_modules/hast-util-to-html/lib/handle/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/index.js +47 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.js +27 -0
- package/node_modules/hast-util-to-html/lib/handle/root.d.ts +23 -0
- package/node_modules/hast-util-to-html/lib/handle/root.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/root.js +22 -0
- package/node_modules/hast-util-to-html/lib/handle/text.d.ts +20 -0
- package/node_modules/hast-util-to-html/lib/handle/text.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/text.js +38 -0
- package/node_modules/hast-util-to-html/lib/index.d.ts +223 -0
- package/node_modules/hast-util-to-html/lib/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/index.js +257 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.d.ts +2 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.js +358 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.d.ts +17 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.js +44 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.d.ts +2 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.js +148 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.d.ts +36 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.js +50 -0
- package/node_modules/hast-util-to-html/license +22 -0
- package/node_modules/hast-util-to-html/package.json +106 -0
- package/node_modules/hast-util-to-html/readme.md +486 -0
- package/node_modules/hast-util-whitespace/index.d.ts +1 -0
- package/node_modules/hast-util-whitespace/index.js +1 -0
- package/node_modules/hast-util-whitespace/lib/index.d.ts +13 -0
- package/node_modules/hast-util-whitespace/lib/index.js +34 -0
- package/node_modules/hast-util-whitespace/license +22 -0
- package/node_modules/hast-util-whitespace/package.json +83 -0
- package/node_modules/hast-util-whitespace/readme.md +231 -0
- package/node_modules/html-void-elements/index.d.ts +6 -0
- package/node_modules/html-void-elements/index.js +27 -0
- package/node_modules/html-void-elements/license +22 -0
- package/node_modules/html-void-elements/package.json +79 -0
- package/node_modules/html-void-elements/readme.md +164 -0
- package/node_modules/lru_map/.npmignore +5 -0
- package/node_modules/lru_map/README.md +214 -0
- package/node_modules/lru_map/dist/lru.js +2 -0
- package/node_modules/lru_map/dist/lru.js.map +7 -0
- package/node_modules/lru_map/lru.d.ts +83 -0
- package/node_modules/lru_map/package.json +41 -0
- package/node_modules/mdast-util-to-hast/index.d.ts +94 -0
- package/node_modules/mdast-util-to-hast/index.js +7 -0
- package/node_modules/mdast-util-to-hast/lib/footer.d.ts +81 -0
- package/node_modules/mdast-util-to-hast/lib/footer.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/footer.js +250 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.d.ts +21 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.js +22 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.js +49 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +70 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.js +28 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +39 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.js +35 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.d.ts +55 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.js +68 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +31 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +44 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.js +36 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +119 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.js +52 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.js +22 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +29 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +63 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.js +61 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts +16 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.js +24 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/index.d.ts +82 -0
- package/node_modules/mdast-util-to-hast/lib/index.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/index.js +106 -0
- package/node_modules/mdast-util-to-hast/lib/revert.d.ts +21 -0
- package/node_modules/mdast-util-to-hast/lib/revert.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/revert.js +49 -0
- package/node_modules/mdast-util-to-hast/lib/state.d.ts +233 -0
- package/node_modules/mdast-util-to-hast/lib/state.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/state.js +476 -0
- package/node_modules/mdast-util-to-hast/license +22 -0
- package/node_modules/mdast-util-to-hast/package.json +119 -0
- package/node_modules/mdast-util-to-hast/readme.md +1725 -0
- package/node_modules/micromark-util-character/dev/index.d.ts +195 -0
- package/node_modules/micromark-util-character/dev/index.d.ts.map +1 -0
- package/node_modules/micromark-util-character/dev/index.js +252 -0
- package/node_modules/micromark-util-character/index.d.ts +195 -0
- package/node_modules/micromark-util-character/index.d.ts.map +1 -0
- package/node_modules/micromark-util-character/index.js +246 -0
- package/node_modules/micromark-util-character/license +22 -0
- package/node_modules/micromark-util-character/package.json +57 -0
- package/node_modules/micromark-util-character/readme.md +446 -0
- package/node_modules/micromark-util-encode/index.d.ts +14 -0
- package/node_modules/micromark-util-encode/index.d.ts.map +1 -0
- package/node_modules/micromark-util-encode/index.js +33 -0
- package/node_modules/micromark-util-encode/license +22 -0
- package/node_modules/micromark-util-encode/package.json +47 -0
- package/node_modules/micromark-util-encode/readme.md +176 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.d.ts +36 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.d.ts.map +1 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.js +124 -0
- package/node_modules/micromark-util-sanitize-uri/index.d.ts +36 -0
- package/node_modules/micromark-util-sanitize-uri/index.d.ts.map +1 -0
- package/node_modules/micromark-util-sanitize-uri/index.js +107 -0
- package/node_modules/micromark-util-sanitize-uri/license +22 -0
- package/node_modules/micromark-util-sanitize-uri/package.json +59 -0
- package/node_modules/micromark-util-sanitize-uri/readme.md +214 -0
- package/node_modules/micromark-util-symbol/lib/codes.d.ts +139 -0
- package/node_modules/micromark-util-symbol/lib/codes.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/codes.js +158 -0
- package/node_modules/micromark-util-symbol/lib/constants.d.ts +37 -0
- package/node_modules/micromark-util-symbol/lib/constants.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/constants.js +44 -0
- package/node_modules/micromark-util-symbol/lib/default.d.ts +5 -0
- package/node_modules/micromark-util-symbol/lib/default.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/default.js +4 -0
- package/node_modules/micromark-util-symbol/lib/types.d.ts +106 -0
- package/node_modules/micromark-util-symbol/lib/types.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/types.js +453 -0
- package/node_modules/micromark-util-symbol/lib/values.d.ts +102 -0
- package/node_modules/micromark-util-symbol/lib/values.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/values.js +109 -0
- package/node_modules/micromark-util-symbol/license +22 -0
- package/node_modules/micromark-util-symbol/package.json +43 -0
- package/node_modules/micromark-util-symbol/readme.md +168 -0
- package/node_modules/micromark-util-types/index.d.ts +1312 -0
- package/node_modules/micromark-util-types/index.js +2 -0
- package/node_modules/micromark-util-types/license +22 -0
- package/node_modules/micromark-util-types/package.json +71 -0
- package/node_modules/micromark-util-types/readme.md +151 -0
- package/node_modules/oniguruma-parser/LICENSE +21 -0
- package/node_modules/oniguruma-parser/README.md +310 -0
- package/node_modules/oniguruma-parser/dist/bundle.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/bundle.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/bundle.js +2 -0
- package/node_modules/oniguruma-parser/dist/bundle.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.d.ts +11 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.js +2 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/index.d.ts +14 -0
- package/node_modules/oniguruma-parser/dist/index.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/index.js +2 -0
- package/node_modules/oniguruma-parser/dist/index.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/oniguruma-parser.min.js +904 -0
- package/node_modules/oniguruma-parser/dist/oniguruma-parser.min.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.d.ts +5 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.d.ts +23 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.d.ts +24 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.d.ts +15 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.d.ts +10 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.d.ts +14 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.js +2 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.d.ts +208 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.js +2 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.d.ts +122 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.js +34 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.d.ts +49 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.js +2 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/unicode.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/unicode.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/unicode.js +872 -0
- package/node_modules/oniguruma-parser/dist/unicode.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/utils.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/utils.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/utils.js +2 -0
- package/node_modules/oniguruma-parser/dist/utils.js.map +7 -0
- package/node_modules/oniguruma-parser/package.json +64 -0
- package/node_modules/oniguruma-to-es/LICENSE +21 -0
- package/node_modules/oniguruma-to-es/README.md +1110 -0
- package/node_modules/oniguruma-to-es/dist/cjs/generate.d.ts +27 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.d.ts +64 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.js +3145 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.js.map +7 -0
- package/node_modules/oniguruma-to-es/dist/cjs/options.d.ts +26 -0
- package/node_modules/oniguruma-to-es/dist/cjs/package.json +1 -0
- package/node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts +39 -0
- package/node_modules/oniguruma-to-es/dist/cjs/transform.d.ts +54 -0
- package/node_modules/oniguruma-to-es/dist/cjs/unicode.d.ts +6 -0
- package/node_modules/oniguruma-to-es/dist/cjs/utils.d.ts +25 -0
- package/node_modules/oniguruma-to-es/dist/esm/generate.d.ts +27 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.d.ts +64 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.js +1878 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.js.map +7 -0
- package/node_modules/oniguruma-to-es/dist/esm/options.d.ts +26 -0
- package/node_modules/oniguruma-to-es/dist/esm/package.json +1 -0
- package/node_modules/oniguruma-to-es/dist/esm/subclass.d.ts +39 -0
- package/node_modules/oniguruma-to-es/dist/esm/transform.d.ts +54 -0
- package/node_modules/oniguruma-to-es/dist/esm/unicode.d.ts +6 -0
- package/node_modules/oniguruma-to-es/dist/esm/utils.d.ts +25 -0
- package/node_modules/oniguruma-to-es/dist/index.min.js +142 -0
- package/node_modules/oniguruma-to-es/dist/index.min.js.map +7 -0
- package/node_modules/oniguruma-to-es/package.json +61 -0
- package/node_modules/property-information/index.d.ts +121 -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 +332 -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 +569 -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 +84 -0
- package/node_modules/property-information/readme.md +1073 -0
- package/node_modules/regex/LICENSE +21 -0
- package/node_modules/regex/README.md +972 -0
- package/node_modules/regex/dist/cjs/atomic.d.ts +18 -0
- package/node_modules/regex/dist/cjs/backcompat.d.ts +8 -0
- package/node_modules/regex/dist/cjs/flag-n.d.ts +4 -0
- package/node_modules/regex/dist/cjs/flag-x.d.ts +11 -0
- package/node_modules/regex/dist/cjs/internals.d.ts +2 -0
- package/node_modules/regex/dist/cjs/package.json +1 -0
- package/node_modules/regex/dist/cjs/pattern.d.ts +43 -0
- package/node_modules/regex/dist/cjs/regex.d.ts +111 -0
- package/node_modules/regex/dist/cjs/regex.js +1335 -0
- package/node_modules/regex/dist/cjs/regex.js.map +7 -0
- package/node_modules/regex/dist/cjs/subclass.d.ts +31 -0
- package/node_modules/regex/dist/cjs/subroutines.d.ts +17 -0
- package/node_modules/regex/dist/cjs/utils-internals.d.ts +15 -0
- package/node_modules/regex/dist/cjs/utils.d.ts +115 -0
- package/node_modules/regex/dist/esm/atomic.d.ts +18 -0
- package/node_modules/regex/dist/esm/backcompat.d.ts +8 -0
- package/node_modules/regex/dist/esm/flag-n.d.ts +4 -0
- package/node_modules/regex/dist/esm/flag-x.d.ts +11 -0
- package/node_modules/regex/dist/esm/internals.d.ts +2 -0
- package/node_modules/regex/dist/esm/package.json +1 -0
- package/node_modules/regex/dist/esm/pattern.d.ts +43 -0
- package/node_modules/regex/dist/esm/regex.d.ts +111 -0
- package/node_modules/regex/dist/esm/regex.js +1313 -0
- package/node_modules/regex/dist/esm/regex.js.map +7 -0
- package/node_modules/regex/dist/esm/subclass.d.ts +31 -0
- package/node_modules/regex/dist/esm/subroutines.d.ts +17 -0
- package/node_modules/regex/dist/esm/utils-internals.d.ts +15 -0
- package/node_modules/regex/dist/esm/utils.d.ts +115 -0
- package/node_modules/regex/dist/regex.min.js +76 -0
- package/node_modules/regex/dist/regex.min.js.map +7 -0
- package/node_modules/regex/package.json +60 -0
- package/node_modules/regex/src/atomic.js +224 -0
- package/node_modules/regex/src/backcompat.js +64 -0
- package/node_modules/regex/src/flag-n.js +49 -0
- package/node_modules/regex/src/flag-x.js +198 -0
- package/node_modules/regex/src/internals.js +2 -0
- package/node_modules/regex/src/pattern.js +45 -0
- package/node_modules/regex/src/regex.js +389 -0
- package/node_modules/regex/src/subclass.js +98 -0
- package/node_modules/regex/src/subroutines.js +375 -0
- package/node_modules/regex/src/utils-internals.js +33 -0
- package/node_modules/regex/src/utils.js +401 -0
- package/node_modules/regex-recursion/LICENSE +21 -0
- package/node_modules/regex-recursion/README.md +151 -0
- package/node_modules/regex-recursion/dist/regex-recursion.min.js +2 -0
- package/node_modules/regex-recursion/dist/regex-recursion.min.js.map +7 -0
- package/node_modules/regex-recursion/package.json +47 -0
- package/node_modules/regex-recursion/src/index.js +365 -0
- package/node_modules/regex-recursion/types/index.d.ts +24 -0
- package/node_modules/regex-utilities/LICENSE +21 -0
- package/node_modules/regex-utilities/README.md +78 -0
- package/node_modules/regex-utilities/package.json +35 -0
- package/node_modules/regex-utilities/src/index.js +170 -0
- package/node_modules/regex-utilities/types/index.d.ts +84 -0
- package/node_modules/shiki/LICENSE +22 -0
- package/node_modules/shiki/README.md +15 -0
- package/node_modules/shiki/dist/bundle-full.d.mts +21 -0
- package/node_modules/shiki/dist/bundle-full.mjs +25 -0
- package/node_modules/shiki/dist/bundle-web.d.mts +31 -0
- package/node_modules/shiki/dist/bundle-web.mjs +347 -0
- package/node_modules/shiki/dist/core-CaxrMD1A.d.mts +1 -0
- package/node_modules/shiki/dist/core-unwasm.d.mts +1 -0
- package/node_modules/shiki/dist/core-unwasm.mjs +10 -0
- package/node_modules/shiki/dist/core.d.mts +2 -0
- package/node_modules/shiki/dist/core.mjs +3 -0
- package/node_modules/shiki/dist/engine-javascript.d.mts +1 -0
- package/node_modules/shiki/dist/engine-javascript.mjs +2 -0
- package/node_modules/shiki/dist/engine-oniguruma.d.mts +1 -0
- package/node_modules/shiki/dist/engine-oniguruma.mjs +8 -0
- package/node_modules/shiki/dist/index.d.mts +8 -0
- package/node_modules/shiki/dist/index.mjs +8 -0
- package/node_modules/shiki/dist/langs/1c-query.d.mts +1 -0
- package/node_modules/shiki/dist/langs/1c-query.mjs +1 -0
- package/node_modules/shiki/dist/langs/1c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/1c.mjs +1 -0
- package/node_modules/shiki/dist/langs/abap.d.mts +1 -0
- package/node_modules/shiki/dist/langs/abap.mjs +1 -0
- package/node_modules/shiki/dist/langs/actionscript-3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/actionscript-3.mjs +1 -0
- package/node_modules/shiki/dist/langs/actionscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/actionscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/ada.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ada.mjs +1 -0
- package/node_modules/shiki/dist/langs/adoc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/adoc.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk1.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk1.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk2.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk2.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-expression.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-expression.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-style.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-style.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-template.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-template.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-let-declaration.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-let-declaration.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-template-blocks.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-template-blocks.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-template.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-template.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/apache.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apache.mjs +1 -0
- package/node_modules/shiki/dist/langs/apex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apex.mjs +1 -0
- package/node_modules/shiki/dist/langs/apl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apl.mjs +1 -0
- package/node_modules/shiki/dist/langs/applescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/applescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/ara.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ara.mjs +1 -0
- package/node_modules/shiki/dist/langs/as3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/as3.mjs +1 -0
- package/node_modules/shiki/dist/langs/asciidoc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/asciidoc.mjs +1 -0
- package/node_modules/shiki/dist/langs/asm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/asm.mjs +1 -0
- package/node_modules/shiki/dist/langs/astro.d.mts +1 -0
- package/node_modules/shiki/dist/langs/astro.mjs +1 -0
- package/node_modules/shiki/dist/langs/awk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/awk.mjs +1 -0
- package/node_modules/shiki/dist/langs/ballerina.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ballerina.mjs +1 -0
- package/node_modules/shiki/dist/langs/bash.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bash.mjs +1 -0
- package/node_modules/shiki/dist/langs/bat.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bat.mjs +1 -0
- package/node_modules/shiki/dist/langs/batch.d.mts +1 -0
- package/node_modules/shiki/dist/langs/batch.mjs +1 -0
- package/node_modules/shiki/dist/langs/be.d.mts +1 -0
- package/node_modules/shiki/dist/langs/be.mjs +1 -0
- package/node_modules/shiki/dist/langs/beancount.d.mts +1 -0
- package/node_modules/shiki/dist/langs/beancount.mjs +1 -0
- package/node_modules/shiki/dist/langs/berry.d.mts +1 -0
- package/node_modules/shiki/dist/langs/berry.mjs +1 -0
- package/node_modules/shiki/dist/langs/bibtex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bibtex.mjs +1 -0
- package/node_modules/shiki/dist/langs/bicep.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bicep.mjs +1 -0
- package/node_modules/shiki/dist/langs/bird.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bird.mjs +1 -0
- package/node_modules/shiki/dist/langs/bird2.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bird2.mjs +1 -0
- package/node_modules/shiki/dist/langs/blade.d.mts +1 -0
- package/node_modules/shiki/dist/langs/blade.mjs +1 -0
- package/node_modules/shiki/dist/langs/bsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/c.mjs +1 -0
- package/node_modules/shiki/dist/langs/c3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/c3.mjs +1 -0
- package/node_modules/shiki/dist/langs/cadence.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cadence.mjs +1 -0
- package/node_modules/shiki/dist/langs/cairo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cairo.mjs +1 -0
- package/node_modules/shiki/dist/langs/cdc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cdc.mjs +1 -0
- package/node_modules/shiki/dist/langs/chapel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/chapel.mjs +1 -0
- package/node_modules/shiki/dist/langs/chpl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/chpl.mjs +1 -0
- package/node_modules/shiki/dist/langs/cjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/clarity.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clarity.mjs +1 -0
- package/node_modules/shiki/dist/langs/clj.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clj.mjs +1 -0
- package/node_modules/shiki/dist/langs/clojure.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clojure.mjs +1 -0
- package/node_modules/shiki/dist/langs/closure-templates.d.mts +1 -0
- package/node_modules/shiki/dist/langs/closure-templates.mjs +1 -0
- package/node_modules/shiki/dist/langs/cmake.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cmake.mjs +1 -0
- package/node_modules/shiki/dist/langs/cmd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cmd.mjs +1 -0
- package/node_modules/shiki/dist/langs/cobol.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cobol.mjs +1 -0
- package/node_modules/shiki/dist/langs/codeowners.d.mts +1 -0
- package/node_modules/shiki/dist/langs/codeowners.mjs +1 -0
- package/node_modules/shiki/dist/langs/codeql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/codeql.mjs +1 -0
- package/node_modules/shiki/dist/langs/coffee.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coffee.mjs +1 -0
- package/node_modules/shiki/dist/langs/coffeescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coffeescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/common-lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/common-lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/console.d.mts +1 -0
- package/node_modules/shiki/dist/langs/console.mjs +1 -0
- package/node_modules/shiki/dist/langs/coq.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coq.mjs +1 -0
- package/node_modules/shiki/dist/langs/cpp-macro.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cpp-macro.mjs +1 -0
- package/node_modules/shiki/dist/langs/cpp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cpp.mjs +1 -0
- package/node_modules/shiki/dist/langs/cql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cql.mjs +1 -0
- package/node_modules/shiki/dist/langs/crystal.d.mts +1 -0
- package/node_modules/shiki/dist/langs/crystal.mjs +1 -0
- package/node_modules/shiki/dist/langs/cs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cs.mjs +1 -0
- package/node_modules/shiki/dist/langs/csharp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/csharp.mjs +1 -0
- package/node_modules/shiki/dist/langs/css.d.mts +1 -0
- package/node_modules/shiki/dist/langs/css.mjs +1 -0
- package/node_modules/shiki/dist/langs/csv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/csv.mjs +1 -0
- package/node_modules/shiki/dist/langs/cts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cts.mjs +1 -0
- package/node_modules/shiki/dist/langs/cue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cue.mjs +1 -0
- package/node_modules/shiki/dist/langs/cypher.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cypher.mjs +1 -0
- package/node_modules/shiki/dist/langs/d.d.mts +1 -0
- package/node_modules/shiki/dist/langs/d.mjs +1 -0
- package/node_modules/shiki/dist/langs/dart.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dart.mjs +1 -0
- package/node_modules/shiki/dist/langs/dax.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dax.mjs +1 -0
- package/node_modules/shiki/dist/langs/desktop.d.mts +1 -0
- package/node_modules/shiki/dist/langs/desktop.mjs +1 -0
- package/node_modules/shiki/dist/langs/diff.d.mts +1 -0
- package/node_modules/shiki/dist/langs/diff.mjs +1 -0
- package/node_modules/shiki/dist/langs/docker.d.mts +1 -0
- package/node_modules/shiki/dist/langs/docker.mjs +1 -0
- package/node_modules/shiki/dist/langs/dockerfile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dockerfile.mjs +1 -0
- package/node_modules/shiki/dist/langs/dotenv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dotenv.mjs +1 -0
- package/node_modules/shiki/dist/langs/dream-maker.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dream-maker.mjs +1 -0
- package/node_modules/shiki/dist/langs/edge.d.mts +1 -0
- package/node_modules/shiki/dist/langs/edge.mjs +1 -0
- package/node_modules/shiki/dist/langs/elisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/elixir.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elixir.mjs +1 -0
- package/node_modules/shiki/dist/langs/elm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elm.mjs +1 -0
- package/node_modules/shiki/dist/langs/emacs-lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/emacs-lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/erb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erb.mjs +1 -0
- package/node_modules/shiki/dist/langs/erl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erl.mjs +1 -0
- package/node_modules/shiki/dist/langs/erlang.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erlang.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-css.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-css.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-glsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-glsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-sql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-sql.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-xml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-xml.mjs +1 -0
- package/node_modules/shiki/dist/langs/f.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f.mjs +1 -0
- package/node_modules/shiki/dist/langs/f03.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f03.mjs +1 -0
- package/node_modules/shiki/dist/langs/f08.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f08.mjs +1 -0
- package/node_modules/shiki/dist/langs/f18.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f18.mjs +1 -0
- package/node_modules/shiki/dist/langs/f77.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f77.mjs +1 -0
- package/node_modules/shiki/dist/langs/f90.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f90.mjs +1 -0
- package/node_modules/shiki/dist/langs/f95.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f95.mjs +1 -0
- package/node_modules/shiki/dist/langs/fennel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fennel.mjs +1 -0
- package/node_modules/shiki/dist/langs/fish.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fish.mjs +1 -0
- package/node_modules/shiki/dist/langs/fluent.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fluent.mjs +1 -0
- package/node_modules/shiki/dist/langs/for.d.mts +1 -0
- package/node_modules/shiki/dist/langs/for.mjs +1 -0
- package/node_modules/shiki/dist/langs/fortran-fixed-form.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fortran-fixed-form.mjs +1 -0
- package/node_modules/shiki/dist/langs/fortran-free-form.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fortran-free-form.mjs +1 -0
- package/node_modules/shiki/dist/langs/fs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fs.mjs +1 -0
- package/node_modules/shiki/dist/langs/fsharp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fsharp.mjs +1 -0
- package/node_modules/shiki/dist/langs/fsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/ftl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ftl.mjs +1 -0
- package/node_modules/shiki/dist/langs/gd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gd.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdresource.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdresource.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdshader.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdshader.mjs +1 -0
- package/node_modules/shiki/dist/langs/genie.d.mts +1 -0
- package/node_modules/shiki/dist/langs/genie.mjs +1 -0
- package/node_modules/shiki/dist/langs/gherkin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gherkin.mjs +1 -0
- package/node_modules/shiki/dist/langs/git-commit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/git-commit.mjs +1 -0
- package/node_modules/shiki/dist/langs/git-rebase.d.mts +1 -0
- package/node_modules/shiki/dist/langs/git-rebase.mjs +1 -0
- package/node_modules/shiki/dist/langs/gjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/gleam.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gleam.mjs +1 -0
- package/node_modules/shiki/dist/langs/glimmer-js.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glimmer-js.mjs +1 -0
- package/node_modules/shiki/dist/langs/glimmer-ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glimmer-ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/glsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/gn.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gn.mjs +1 -0
- package/node_modules/shiki/dist/langs/gnuplot.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gnuplot.mjs +1 -0
- package/node_modules/shiki/dist/langs/go.d.mts +1 -0
- package/node_modules/shiki/dist/langs/go.mjs +1 -0
- package/node_modules/shiki/dist/langs/gql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gql.mjs +1 -0
- package/node_modules/shiki/dist/langs/graphql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/graphql.mjs +1 -0
- package/node_modules/shiki/dist/langs/groovy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/groovy.mjs +1 -0
- package/node_modules/shiki/dist/langs/gts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gts.mjs +1 -0
- package/node_modules/shiki/dist/langs/hack.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hack.mjs +1 -0
- package/node_modules/shiki/dist/langs/haml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haml.mjs +1 -0
- package/node_modules/shiki/dist/langs/handlebars.d.mts +1 -0
- package/node_modules/shiki/dist/langs/handlebars.mjs +1 -0
- package/node_modules/shiki/dist/langs/haskell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haskell.mjs +1 -0
- package/node_modules/shiki/dist/langs/haxe.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haxe.mjs +1 -0
- package/node_modules/shiki/dist/langs/hbs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hbs.mjs +1 -0
- package/node_modules/shiki/dist/langs/hcl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hcl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hjson.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hjson.mjs +1 -0
- package/node_modules/shiki/dist/langs/hlsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hlsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hs.mjs +1 -0
- package/node_modules/shiki/dist/langs/html-derivative.d.mts +1 -0
- package/node_modules/shiki/dist/langs/html-derivative.mjs +1 -0
- package/node_modules/shiki/dist/langs/html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/html.mjs +1 -0
- package/node_modules/shiki/dist/langs/http.d.mts +1 -0
- package/node_modules/shiki/dist/langs/http.mjs +1 -0
- package/node_modules/shiki/dist/langs/hurl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hurl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hxml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hxml.mjs +1 -0
- package/node_modules/shiki/dist/langs/hy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hy.mjs +1 -0
- package/node_modules/shiki/dist/langs/imba.d.mts +1 -0
- package/node_modules/shiki/dist/langs/imba.mjs +1 -0
- package/node_modules/shiki/dist/langs/ini.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ini.mjs +1 -0
- package/node_modules/shiki/dist/langs/jade.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jade.mjs +1 -0
- package/node_modules/shiki/dist/langs/java.d.mts +1 -0
- package/node_modules/shiki/dist/langs/java.mjs +1 -0
- package/node_modules/shiki/dist/langs/javascript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/javascript.mjs +1 -0
- package/node_modules/shiki/dist/langs/jinja-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jinja-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/jinja.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jinja.mjs +1 -0
- package/node_modules/shiki/dist/langs/jison.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jison.mjs +1 -0
- package/node_modules/shiki/dist/langs/jl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jl.mjs +1 -0
- package/node_modules/shiki/dist/langs/js.d.mts +1 -0
- package/node_modules/shiki/dist/langs/js.mjs +1 -0
- package/node_modules/shiki/dist/langs/json.d.mts +1 -0
- package/node_modules/shiki/dist/langs/json.mjs +1 -0
- package/node_modules/shiki/dist/langs/json5.d.mts +1 -0
- package/node_modules/shiki/dist/langs/json5.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonc.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonl.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonnet.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonnet.mjs +1 -0
- package/node_modules/shiki/dist/langs/jssm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jssm.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsx.mjs +1 -0
- package/node_modules/shiki/dist/langs/julia.d.mts +1 -0
- package/node_modules/shiki/dist/langs/julia.mjs +1 -0
- package/node_modules/shiki/dist/langs/just.d.mts +1 -0
- package/node_modules/shiki/dist/langs/just.mjs +1 -0
- package/node_modules/shiki/dist/langs/justfile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/justfile.mjs +1 -0
- package/node_modules/shiki/dist/langs/kdl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kdl.mjs +1 -0
- package/node_modules/shiki/dist/langs/kotlin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kotlin.mjs +1 -0
- package/node_modules/shiki/dist/langs/kql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kql.mjs +1 -0
- package/node_modules/shiki/dist/langs/kt.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kt.mjs +1 -0
- package/node_modules/shiki/dist/langs/kts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kts.mjs +1 -0
- package/node_modules/shiki/dist/langs/kusto.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kusto.mjs +1 -0
- package/node_modules/shiki/dist/langs/latex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/latex.mjs +1 -0
- package/node_modules/shiki/dist/langs/lean.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lean.mjs +1 -0
- package/node_modules/shiki/dist/langs/lean4.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lean4.mjs +1 -0
- package/node_modules/shiki/dist/langs/less.d.mts +1 -0
- package/node_modules/shiki/dist/langs/less.mjs +1 -0
- package/node_modules/shiki/dist/langs/liquid.d.mts +1 -0
- package/node_modules/shiki/dist/langs/liquid.mjs +1 -0
- package/node_modules/shiki/dist/langs/lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/lit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lit.mjs +1 -0
- package/node_modules/shiki/dist/langs/llvm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/llvm.mjs +1 -0
- package/node_modules/shiki/dist/langs/log.d.mts +1 -0
- package/node_modules/shiki/dist/langs/log.mjs +1 -0
- package/node_modules/shiki/dist/langs/logo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/logo.mjs +1 -0
- package/node_modules/shiki/dist/langs/lua.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lua.mjs +1 -0
- package/node_modules/shiki/dist/langs/luau.d.mts +1 -0
- package/node_modules/shiki/dist/langs/luau.mjs +1 -0
- package/node_modules/shiki/dist/langs/make.d.mts +1 -0
- package/node_modules/shiki/dist/langs/make.mjs +1 -0
- package/node_modules/shiki/dist/langs/makefile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/makefile.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown-nix.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown-nix.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown-vue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown-vue.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown.mjs +1 -0
- package/node_modules/shiki/dist/langs/marko.d.mts +1 -0
- package/node_modules/shiki/dist/langs/marko.mjs +1 -0
- package/node_modules/shiki/dist/langs/matlab.d.mts +1 -0
- package/node_modules/shiki/dist/langs/matlab.mjs +1 -0
- package/node_modules/shiki/dist/langs/mbt.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mbt.mjs +1 -0
- package/node_modules/shiki/dist/langs/mbti.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mbti.mjs +1 -0
- package/node_modules/shiki/dist/langs/md.d.mts +1 -0
- package/node_modules/shiki/dist/langs/md.mjs +1 -0
- package/node_modules/shiki/dist/langs/mdc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mdc.mjs +1 -0
- package/node_modules/shiki/dist/langs/mdx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mdx.mjs +1 -0
- package/node_modules/shiki/dist/langs/mediawiki.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mediawiki.mjs +1 -0
- package/node_modules/shiki/dist/langs/mermaid.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mermaid.mjs +1 -0
- package/node_modules/shiki/dist/langs/mips.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mips.mjs +1 -0
- package/node_modules/shiki/dist/langs/mipsasm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mipsasm.mjs +1 -0
- package/node_modules/shiki/dist/langs/mjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/mmd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mmd.mjs +1 -0
- package/node_modules/shiki/dist/langs/mojo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mojo.mjs +1 -0
- package/node_modules/shiki/dist/langs/moonbit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/moonbit.mjs +1 -0
- package/node_modules/shiki/dist/langs/move.d.mts +1 -0
- package/node_modules/shiki/dist/langs/move.mjs +1 -0
- package/node_modules/shiki/dist/langs/mts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mts.mjs +1 -0
- package/node_modules/shiki/dist/langs/nar.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nar.mjs +1 -0
- package/node_modules/shiki/dist/langs/narrat.d.mts +1 -0
- package/node_modules/shiki/dist/langs/narrat.mjs +1 -0
- package/node_modules/shiki/dist/langs/nextflow-groovy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nextflow-groovy.mjs +1 -0
- package/node_modules/shiki/dist/langs/nextflow.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nextflow.mjs +1 -0
- package/node_modules/shiki/dist/langs/nf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nf.mjs +1 -0
- package/node_modules/shiki/dist/langs/nginx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nginx.mjs +1 -0
- package/node_modules/shiki/dist/langs/nim.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nim.mjs +1 -0
- package/node_modules/shiki/dist/langs/nix.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nix.mjs +1 -0
- package/node_modules/shiki/dist/langs/nsis.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nsis.mjs +1 -0
- package/node_modules/shiki/dist/langs/nu.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nu.mjs +1 -0
- package/node_modules/shiki/dist/langs/nushell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nushell.mjs +1 -0
- package/node_modules/shiki/dist/langs/objc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objc.mjs +1 -0
- package/node_modules/shiki/dist/langs/objective-c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objective-c.mjs +1 -0
- package/node_modules/shiki/dist/langs/objective-cpp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objective-cpp.mjs +1 -0
- package/node_modules/shiki/dist/langs/ocaml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ocaml.mjs +1 -0
- package/node_modules/shiki/dist/langs/odin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/odin.mjs +1 -0
- package/node_modules/shiki/dist/langs/openscad.d.mts +1 -0
- package/node_modules/shiki/dist/langs/openscad.mjs +1 -0
- package/node_modules/shiki/dist/langs/org.d.mts +1 -0
- package/node_modules/shiki/dist/langs/org.mjs +1 -0
- package/node_modules/shiki/dist/langs/pascal.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pascal.mjs +1 -0
- package/node_modules/shiki/dist/langs/perl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/perl.mjs +1 -0
- package/node_modules/shiki/dist/langs/perl6.d.mts +1 -0
- package/node_modules/shiki/dist/langs/perl6.mjs +1 -0
- package/node_modules/shiki/dist/langs/php.d.mts +1 -0
- package/node_modules/shiki/dist/langs/php.mjs +1 -0
- package/node_modules/shiki/dist/langs/pkl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pkl.mjs +1 -0
- package/node_modules/shiki/dist/langs/plsql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/plsql.mjs +1 -0
- package/node_modules/shiki/dist/langs/po.d.mts +1 -0
- package/node_modules/shiki/dist/langs/po.mjs +1 -0
- package/node_modules/shiki/dist/langs/polar.d.mts +1 -0
- package/node_modules/shiki/dist/langs/polar.mjs +1 -0
- package/node_modules/shiki/dist/langs/postcss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/postcss.mjs +1 -0
- package/node_modules/shiki/dist/langs/pot.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pot.mjs +1 -0
- package/node_modules/shiki/dist/langs/potx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/potx.mjs +1 -0
- package/node_modules/shiki/dist/langs/powerquery.d.mts +1 -0
- package/node_modules/shiki/dist/langs/powerquery.mjs +1 -0
- package/node_modules/shiki/dist/langs/powershell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/powershell.mjs +1 -0
- package/node_modules/shiki/dist/langs/prisma.d.mts +1 -0
- package/node_modules/shiki/dist/langs/prisma.mjs +1 -0
- package/node_modules/shiki/dist/langs/prolog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/prolog.mjs +1 -0
- package/node_modules/shiki/dist/langs/properties.d.mts +1 -0
- package/node_modules/shiki/dist/langs/properties.mjs +1 -0
- package/node_modules/shiki/dist/langs/proto.d.mts +1 -0
- package/node_modules/shiki/dist/langs/proto.mjs +1 -0
- package/node_modules/shiki/dist/langs/protobuf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/protobuf.mjs +1 -0
- package/node_modules/shiki/dist/langs/ps.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ps.mjs +1 -0
- package/node_modules/shiki/dist/langs/ps1.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ps1.mjs +1 -0
- package/node_modules/shiki/dist/langs/pug.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pug.mjs +1 -0
- package/node_modules/shiki/dist/langs/puppet.d.mts +1 -0
- package/node_modules/shiki/dist/langs/puppet.mjs +1 -0
- package/node_modules/shiki/dist/langs/purescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/purescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/pwsh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pwsh.mjs +1 -0
- package/node_modules/shiki/dist/langs/py.d.mts +1 -0
- package/node_modules/shiki/dist/langs/py.mjs +1 -0
- package/node_modules/shiki/dist/langs/python.d.mts +1 -0
- package/node_modules/shiki/dist/langs/python.mjs +1 -0
- package/node_modules/shiki/dist/langs/ql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ql.mjs +1 -0
- package/node_modules/shiki/dist/langs/qml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qml.mjs +1 -0
- package/node_modules/shiki/dist/langs/qmldir.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qmldir.mjs +1 -0
- package/node_modules/shiki/dist/langs/qss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qss.mjs +1 -0
- package/node_modules/shiki/dist/langs/r.d.mts +1 -0
- package/node_modules/shiki/dist/langs/r.mjs +1 -0
- package/node_modules/shiki/dist/langs/racket.d.mts +1 -0
- package/node_modules/shiki/dist/langs/racket.mjs +1 -0
- package/node_modules/shiki/dist/langs/raku.d.mts +1 -0
- package/node_modules/shiki/dist/langs/raku.mjs +1 -0
- package/node_modules/shiki/dist/langs/razor.d.mts +1 -0
- package/node_modules/shiki/dist/langs/razor.mjs +1 -0
- package/node_modules/shiki/dist/langs/rb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rb.mjs +1 -0
- package/node_modules/shiki/dist/langs/rbs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rbs.mjs +1 -0
- package/node_modules/shiki/dist/langs/reg.d.mts +1 -0
- package/node_modules/shiki/dist/langs/reg.mjs +1 -0
- package/node_modules/shiki/dist/langs/regex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/regex.mjs +1 -0
- package/node_modules/shiki/dist/langs/regexp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/regexp.mjs +1 -0
- package/node_modules/shiki/dist/langs/rel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rel.mjs +1 -0
- package/node_modules/shiki/dist/langs/riscv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/riscv.mjs +1 -0
- package/node_modules/shiki/dist/langs/ron.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ron.mjs +1 -0
- package/node_modules/shiki/dist/langs/rosmsg.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rosmsg.mjs +1 -0
- package/node_modules/shiki/dist/langs/rs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rs.mjs +1 -0
- package/node_modules/shiki/dist/langs/rst.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rst.mjs +1 -0
- package/node_modules/shiki/dist/langs/ruby-signature.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ruby-signature.mjs +1 -0
- package/node_modules/shiki/dist/langs/ruby.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ruby.mjs +1 -0
- package/node_modules/shiki/dist/langs/rust.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rust.mjs +1 -0
- package/node_modules/shiki/dist/langs/sas.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sas.mjs +1 -0
- package/node_modules/shiki/dist/langs/sass.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sass.mjs +1 -0
- package/node_modules/shiki/dist/langs/scad.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scad.mjs +1 -0
- package/node_modules/shiki/dist/langs/scala.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scala.mjs +1 -0
- package/node_modules/shiki/dist/langs/scheme.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scheme.mjs +1 -0
- package/node_modules/shiki/dist/langs/scss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scss.mjs +1 -0
- package/node_modules/shiki/dist/langs/sdbl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sdbl.mjs +1 -0
- package/node_modules/shiki/dist/langs/sh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sh.mjs +1 -0
- package/node_modules/shiki/dist/langs/shader.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shader.mjs +1 -0
- package/node_modules/shiki/dist/langs/shaderlab.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shaderlab.mjs +1 -0
- package/node_modules/shiki/dist/langs/shell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shell.mjs +1 -0
- package/node_modules/shiki/dist/langs/shellscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shellscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/shellsession.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shellsession.mjs +1 -0
- package/node_modules/shiki/dist/langs/smalltalk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/smalltalk.mjs +1 -0
- package/node_modules/shiki/dist/langs/smithy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/smithy.mjs +1 -0
- package/node_modules/shiki/dist/langs/solidity.d.mts +1 -0
- package/node_modules/shiki/dist/langs/solidity.mjs +1 -0
- package/node_modules/shiki/dist/langs/soy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/soy.mjs +1 -0
- package/node_modules/shiki/dist/langs/sparql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sparql.mjs +1 -0
- package/node_modules/shiki/dist/langs/spl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/spl.mjs +1 -0
- package/node_modules/shiki/dist/langs/splunk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/splunk.mjs +1 -0
- package/node_modules/shiki/dist/langs/sql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sql.mjs +1 -0
- package/node_modules/shiki/dist/langs/ssh-config.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ssh-config.mjs +1 -0
- package/node_modules/shiki/dist/langs/stata.d.mts +1 -0
- package/node_modules/shiki/dist/langs/stata.mjs +1 -0
- package/node_modules/shiki/dist/langs/styl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/styl.mjs +1 -0
- package/node_modules/shiki/dist/langs/stylus.d.mts +1 -0
- package/node_modules/shiki/dist/langs/stylus.mjs +1 -0
- package/node_modules/shiki/dist/langs/surql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/surql.mjs +1 -0
- package/node_modules/shiki/dist/langs/surrealql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/surrealql.mjs +1 -0
- package/node_modules/shiki/dist/langs/svelte.d.mts +1 -0
- package/node_modules/shiki/dist/langs/svelte.mjs +1 -0
- package/node_modules/shiki/dist/langs/swift.d.mts +1 -0
- package/node_modules/shiki/dist/langs/swift.mjs +1 -0
- package/node_modules/shiki/dist/langs/system-verilog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/system-verilog.mjs +1 -0
- package/node_modules/shiki/dist/langs/systemd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/systemd.mjs +1 -0
- package/node_modules/shiki/dist/langs/talon.d.mts +1 -0
- package/node_modules/shiki/dist/langs/talon.mjs +1 -0
- package/node_modules/shiki/dist/langs/talonscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/talonscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/tasl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tasl.mjs +1 -0
- package/node_modules/shiki/dist/langs/tcl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tcl.mjs +1 -0
- package/node_modules/shiki/dist/langs/templ.d.mts +1 -0
- package/node_modules/shiki/dist/langs/templ.mjs +1 -0
- package/node_modules/shiki/dist/langs/terraform.d.mts +1 -0
- package/node_modules/shiki/dist/langs/terraform.mjs +1 -0
- package/node_modules/shiki/dist/langs/tex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tex.mjs +1 -0
- package/node_modules/shiki/dist/langs/tf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tf.mjs +1 -0
- package/node_modules/shiki/dist/langs/tfvars.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tfvars.mjs +1 -0
- package/node_modules/shiki/dist/langs/toml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/toml.mjs +1 -0
- package/node_modules/shiki/dist/langs/tres.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tres.mjs +1 -0
- package/node_modules/shiki/dist/langs/ts-tags.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ts-tags.mjs +1 -0
- package/node_modules/shiki/dist/langs/ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/tscn.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tscn.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsp.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsv.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsx.mjs +1 -0
- package/node_modules/shiki/dist/langs/turtle.d.mts +1 -0
- package/node_modules/shiki/dist/langs/turtle.mjs +1 -0
- package/node_modules/shiki/dist/langs/twig.d.mts +1 -0
- package/node_modules/shiki/dist/langs/twig.mjs +1 -0
- package/node_modules/shiki/dist/langs/typ.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typ.mjs +1 -0
- package/node_modules/shiki/dist/langs/typescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/typespec.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typespec.mjs +1 -0
- package/node_modules/shiki/dist/langs/typst.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typst.mjs +1 -0
- package/node_modules/shiki/dist/langs/v.d.mts +1 -0
- package/node_modules/shiki/dist/langs/v.mjs +1 -0
- package/node_modules/shiki/dist/langs/vala.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vala.mjs +1 -0
- package/node_modules/shiki/dist/langs/vb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vb.mjs +1 -0
- package/node_modules/shiki/dist/langs/verilog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/verilog.mjs +1 -0
- package/node_modules/shiki/dist/langs/vhdl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vhdl.mjs +1 -0
- package/node_modules/shiki/dist/langs/vim.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vim.mjs +1 -0
- package/node_modules/shiki/dist/langs/viml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/viml.mjs +1 -0
- package/node_modules/shiki/dist/langs/vimscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vimscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-directives.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-directives.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-interpolations.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-interpolations.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-sfc-style-variable-injection.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-sfc-style-variable-injection.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-vine.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-vine.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue.mjs +1 -0
- package/node_modules/shiki/dist/langs/vy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vy.mjs +1 -0
- package/node_modules/shiki/dist/langs/vyper.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vyper.mjs +1 -0
- package/node_modules/shiki/dist/langs/wasm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wasm.mjs +1 -0
- package/node_modules/shiki/dist/langs/wenyan.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wenyan.mjs +1 -0
- package/node_modules/shiki/dist/langs/wgsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wgsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/wiki.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wiki.mjs +1 -0
- package/node_modules/shiki/dist/langs/wikitext.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wikitext.mjs +1 -0
- package/node_modules/shiki/dist/langs/wit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wit.mjs +1 -0
- package/node_modules/shiki/dist/langs/wl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wl.mjs +1 -0
- package/node_modules/shiki/dist/langs/wolfram.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wolfram.mjs +1 -0
- package/node_modules/shiki/dist/langs/xml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/xml.mjs +1 -0
- package/node_modules/shiki/dist/langs/xsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/xsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/yaml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/yaml.mjs +1 -0
- package/node_modules/shiki/dist/langs/yml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/yml.mjs +1 -0
- package/node_modules/shiki/dist/langs/zenscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zenscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/zig.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zig.mjs +1 -0
- package/node_modules/shiki/dist/langs/zsh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zsh.mjs +1 -0
- package/node_modules/shiki/dist/langs-B38xGbib.d.mts +1 -0
- package/node_modules/shiki/dist/langs-bundle-full-B4n9xYHw.d.mts +13 -0
- package/node_modules/shiki/dist/langs-bundle-full-xQVO1Cek.mjs +1326 -0
- package/node_modules/shiki/dist/langs.d.mts +3 -0
- package/node_modules/shiki/dist/langs.mjs +2 -0
- package/node_modules/shiki/dist/onig.d.mts +1 -0
- package/node_modules/shiki/dist/onig.wasm +0 -0
- package/node_modules/shiki/dist/rolldown-runtime-BBjsoOtd.mjs +27 -0
- package/node_modules/shiki/dist/textmate.d.mts +1 -0
- package/node_modules/shiki/dist/textmate.mjs +2 -0
- package/node_modules/shiki/dist/themes/andromeeda.d.mts +1 -0
- package/node_modules/shiki/dist/themes/andromeeda.mjs +1 -0
- package/node_modules/shiki/dist/themes/aurora-x.d.mts +1 -0
- package/node_modules/shiki/dist/themes/aurora-x.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-mirage.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-mirage.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-frappe.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-frappe.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-latte.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-latte.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-macchiato.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-macchiato.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-mocha.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-mocha.mjs +1 -0
- package/node_modules/shiki/dist/themes/dark-plus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dark-plus.mjs +1 -0
- package/node_modules/shiki/dist/themes/dracula-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dracula-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/dracula.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dracula.mjs +1 -0
- package/node_modules/shiki/dist/themes/everforest-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/everforest-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/everforest-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/everforest-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-default.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-default.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-dimmed.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-dimmed.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-high-contrast.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-high-contrast.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light-default.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light-default.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light-high-contrast.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light-high-contrast.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-hard.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-hard.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-medium.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-medium.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-hard.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-hard.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-medium.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-medium.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/horizon-bright.d.mts +1 -0
- package/node_modules/shiki/dist/themes/horizon-bright.mjs +1 -0
- package/node_modules/shiki/dist/themes/horizon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/horizon.mjs +1 -0
- package/node_modules/shiki/dist/themes/houston.d.mts +1 -0
- package/node_modules/shiki/dist/themes/houston.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-dragon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-dragon.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-lotus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-lotus.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-wave.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-wave.mjs +1 -0
- package/node_modules/shiki/dist/themes/laserwave.d.mts +1 -0
- package/node_modules/shiki/dist/themes/laserwave.mjs +1 -0
- package/node_modules/shiki/dist/themes/light-plus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/light-plus.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-darker.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-darker.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-lighter.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-lighter.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-ocean.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-ocean.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-palenight.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-palenight.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme.mjs +1 -0
- package/node_modules/shiki/dist/themes/min-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/min-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/min-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/min-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/monokai.d.mts +1 -0
- package/node_modules/shiki/dist/themes/monokai.mjs +1 -0
- package/node_modules/shiki/dist/themes/night-owl-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/night-owl-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/night-owl.d.mts +1 -0
- package/node_modules/shiki/dist/themes/night-owl.mjs +1 -0
- package/node_modules/shiki/dist/themes/nord.d.mts +1 -0
- package/node_modules/shiki/dist/themes/nord.mjs +1 -0
- package/node_modules/shiki/dist/themes/one-dark-pro.d.mts +1 -0
- package/node_modules/shiki/dist/themes/one-dark-pro.mjs +1 -0
- package/node_modules/shiki/dist/themes/one-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/one-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/plastic.d.mts +1 -0
- package/node_modules/shiki/dist/themes/plastic.mjs +1 -0
- package/node_modules/shiki/dist/themes/poimandres.d.mts +1 -0
- package/node_modules/shiki/dist/themes/poimandres.mjs +1 -0
- package/node_modules/shiki/dist/themes/red.d.mts +1 -0
- package/node_modules/shiki/dist/themes/red.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-dawn.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-dawn.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-moon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-moon.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine.mjs +1 -0
- package/node_modules/shiki/dist/themes/slack-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/slack-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/slack-ochin.d.mts +1 -0
- package/node_modules/shiki/dist/themes/slack-ochin.mjs +1 -0
- package/node_modules/shiki/dist/themes/snazzy-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/snazzy-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/solarized-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/solarized-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/solarized-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/solarized-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/synthwave-84.d.mts +1 -0
- package/node_modules/shiki/dist/themes/synthwave-84.mjs +1 -0
- package/node_modules/shiki/dist/themes/tokyo-night.d.mts +1 -0
- package/node_modules/shiki/dist/themes/tokyo-night.mjs +1 -0
- package/node_modules/shiki/dist/themes/vesper.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vesper.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-black.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-black.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-light.mjs +1 -0
- package/node_modules/shiki/dist/themes-BKdFAJ1v.d.mts +7 -0
- package/node_modules/shiki/dist/themes.d.mts +2 -0
- package/node_modules/shiki/dist/themes.mjs +396 -0
- package/node_modules/shiki/dist/types.d.mts +9 -0
- package/node_modules/shiki/dist/types.mjs +1 -0
- package/node_modules/shiki/dist/wasm.d.mts +3 -0
- package/node_modules/shiki/dist/wasm.mjs +3 -0
- package/node_modules/shiki/package.json +73 -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/node_modules/stringify-entities/index.d.ts +3 -0
- package/node_modules/stringify-entities/index.js +6 -0
- package/node_modules/stringify-entities/lib/constant/dangerous.d.ts +7 -0
- package/node_modules/stringify-entities/lib/constant/dangerous.js +16 -0
- package/node_modules/stringify-entities/lib/core.d.ts +26 -0
- package/node_modules/stringify-entities/lib/core.js +117 -0
- package/node_modules/stringify-entities/lib/index.d.ts +24 -0
- package/node_modules/stringify-entities/lib/index.js +36 -0
- package/node_modules/stringify-entities/lib/util/format-basic.d.ts +7 -0
- package/node_modules/stringify-entities/lib/util/format-basic.js +9 -0
- package/node_modules/stringify-entities/lib/util/format-smart.d.ts +32 -0
- package/node_modules/stringify-entities/lib/util/format-smart.js +69 -0
- package/node_modules/stringify-entities/lib/util/to-decimal.d.ts +9 -0
- package/node_modules/stringify-entities/lib/util/to-decimal.js +16 -0
- package/node_modules/stringify-entities/lib/util/to-hexadecimal.d.ts +9 -0
- package/node_modules/stringify-entities/lib/util/to-hexadecimal.js +16 -0
- package/node_modules/stringify-entities/lib/util/to-named.d.ts +10 -0
- package/node_modules/stringify-entities/lib/util/to-named.js +57 -0
- package/node_modules/stringify-entities/license +22 -0
- package/node_modules/stringify-entities/package.json +86 -0
- package/node_modules/stringify-entities/readme.md +233 -0
- package/node_modules/trim-lines/index.d.ts +10 -0
- package/node_modules/trim-lines/index.js +69 -0
- package/node_modules/trim-lines/license +22 -0
- package/node_modules/trim-lines/package.json +67 -0
- package/node_modules/trim-lines/readme.md +125 -0
- package/node_modules/unist-util-is/index.d.ts +5 -0
- package/node_modules/unist-util-is/index.d.ts.map +1 -0
- package/node_modules/unist-util-is/index.js +7 -0
- package/node_modules/unist-util-is/lib/index.d.ts +111 -0
- package/node_modules/unist-util-is/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-is/lib/index.js +296 -0
- package/node_modules/unist-util-is/license +22 -0
- package/node_modules/unist-util-is/package.json +103 -0
- package/node_modules/unist-util-is/readme.md +351 -0
- package/node_modules/unist-util-position/index.d.ts +1 -0
- package/node_modules/unist-util-position/index.js +1 -0
- package/node_modules/unist-util-position/lib/index.d.ts +45 -0
- package/node_modules/unist-util-position/lib/index.js +95 -0
- package/node_modules/unist-util-position/license +22 -0
- package/node_modules/unist-util-position/package.json +76 -0
- package/node_modules/unist-util-position/readme.md +243 -0
- package/node_modules/unist-util-stringify-position/index.d.ts +1 -0
- package/node_modules/unist-util-stringify-position/index.js +1 -0
- package/node_modules/unist-util-stringify-position/lib/index.d.ts +61 -0
- package/node_modules/unist-util-stringify-position/lib/index.js +84 -0
- package/node_modules/unist-util-stringify-position/license +22 -0
- package/node_modules/unist-util-stringify-position/package.json +80 -0
- package/node_modules/unist-util-stringify-position/readme.md +206 -0
- package/node_modules/unist-util-visit/index.d.ts +9 -0
- package/node_modules/unist-util-visit/index.js +2 -0
- package/node_modules/unist-util-visit/lib/index.d.ts +195 -0
- package/node_modules/unist-util-visit/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-visit/lib/index.js +312 -0
- package/node_modules/unist-util-visit/license +22 -0
- package/node_modules/unist-util-visit/package.json +108 -0
- package/node_modules/unist-util-visit/readme.md +313 -0
- package/node_modules/unist-util-visit-parents/index.d.ts +14 -0
- package/node_modules/unist-util-visit-parents/index.js +2 -0
- package/node_modules/unist-util-visit-parents/lib/color.d.ts +6 -0
- package/node_modules/unist-util-visit-parents/lib/color.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/color.js +7 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.d.ts +6 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.js +7 -0
- package/node_modules/unist-util-visit-parents/lib/index.d.ts +219 -0
- package/node_modules/unist-util-visit-parents/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/index.js +399 -0
- package/node_modules/unist-util-visit-parents/license +22 -0
- package/node_modules/unist-util-visit-parents/package.json +106 -0
- package/node_modules/unist-util-visit-parents/readme.md +388 -0
- package/node_modules/vfile/index.d.ts +153 -0
- package/node_modules/vfile/index.js +2 -0
- package/node_modules/vfile/lib/index.d.ts +1465 -0
- package/node_modules/vfile/lib/index.d.ts.map +1 -0
- package/node_modules/vfile/lib/index.js +643 -0
- package/node_modules/vfile/lib/minpath.browser.d.ts +47 -0
- package/node_modules/vfile/lib/minpath.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minpath.browser.js +426 -0
- package/node_modules/vfile/lib/minpath.d.ts +2 -0
- package/node_modules/vfile/lib/minpath.d.ts.map +1 -0
- package/node_modules/vfile/lib/minpath.js +1 -0
- package/node_modules/vfile/lib/minproc.browser.d.ts +6 -0
- package/node_modules/vfile/lib/minproc.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minproc.browser.js +8 -0
- package/node_modules/vfile/lib/minproc.d.ts +2 -0
- package/node_modules/vfile/lib/minproc.d.ts.map +1 -0
- package/node_modules/vfile/lib/minproc.js +1 -0
- package/node_modules/vfile/lib/minurl.browser.d.ts +9 -0
- package/node_modules/vfile/lib/minurl.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.browser.js +76 -0
- package/node_modules/vfile/lib/minurl.d.ts +3 -0
- package/node_modules/vfile/lib/minurl.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.js +2 -0
- package/node_modules/vfile/lib/minurl.shared.d.ts +20 -0
- package/node_modules/vfile/lib/minurl.shared.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.shared.js +31 -0
- package/node_modules/vfile/license +21 -0
- package/node_modules/vfile/package.json +134 -0
- package/node_modules/vfile/readme.md +785 -0
- package/node_modules/vfile-message/index.d.ts +2 -0
- package/node_modules/vfile-message/index.js +5 -0
- package/node_modules/vfile-message/lib/index.d.ts +508 -0
- package/node_modules/vfile-message/lib/index.js +314 -0
- package/node_modules/vfile-message/license +22 -0
- package/node_modules/vfile-message/package.json +80 -0
- package/node_modules/vfile-message/readme.md +252 -0
- package/node_modules/zwitch/index.d.ts +67 -0
- package/node_modules/zwitch/index.js +118 -0
- package/node_modules/zwitch/license +22 -0
- package/node_modules/zwitch/package.json +72 -0
- package/node_modules/zwitch/readme.md +226 -0
- package/package.json +50 -0
- package/src/code-mode-adapter.ts +38 -0
- package/src/core/appearance.ts +10 -0
- package/src/core/attachments.ts +145 -0
- package/src/extension.ts +49 -0
- package/src/index.ts +17 -0
- package/src/native/binary.ts +7 -0
- package/src/native/view-image.ts +83 -0
- package/src/native-attachments.ts +61 -0
- package/src/runtime/attachments.ts +35 -0
- package/src/runtime/editor-attachments.ts +36 -0
- package/src/tools/view-image/definition.ts +111 -0
- package/src/tools/view-image/presentation.ts +61 -0
- package/src/tools/view-image/result.ts +57 -0
- package/test/view-image.test.ts +352 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly displayName: string;
|
|
5
|
+
readonly type: "light" | "dark";
|
|
6
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
7
|
+
readonly tokenColors: ReadonlyArray<{
|
|
8
|
+
readonly name?: string;
|
|
9
|
+
readonly scope?: string | string[];
|
|
10
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const theme: PierreTheme;
|
|
16
|
+
export default theme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default Object.freeze(JSON.parse('{"name":"pierre-dark-tritanopia","displayName":"Pierre Dark Tritanopia","type":"dark","colors":{"editor.background":"#0a0a0a","editor.foreground":"#fafafa","foreground":"#fafafa","focusBorder":"#009fff","selection.background":"#19283c","editor.selectionBackground":"#009fff4d","editor.lineHighlightBackground":"#19283c8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#a3a3a3","editorIndentGuide.background":"#1d1d1d","editorIndentGuide.activeBackground":"#262626","diffEditor.insertedTextBackground":"#92dde41a","diffEditor.deletedTextBackground":"#ff855e1a","sideBar.background":"#171717","sideBar.foreground":"#a3a3a3","sideBar.border":"#0a0a0a","sideBarTitle.foreground":"#fafafa","sideBarSectionHeader.background":"#171717","sideBarSectionHeader.foreground":"#a3a3a3","sideBarSectionHeader.border":"#0a0a0a","activityBar.background":"#171717","activityBar.foreground":"#fafafa","activityBar.border":"#0a0a0a","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#0a0a0a","titleBar.activeBackground":"#171717","titleBar.activeForeground":"#fafafa","titleBar.inactiveBackground":"#171717","titleBar.inactiveForeground":"#737373","titleBar.border":"#0a0a0a","list.activeSelectionBackground":"#19283c99","list.activeSelectionForeground":"#fafafa","list.inactiveSelectionBackground":"#19283c73","list.hoverBackground":"#19283c59","list.focusOutline":"#009fff","tab.activeBackground":"#0a0a0a","tab.activeForeground":"#fafafa","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#171717","tab.inactiveForeground":"#737373","tab.border":"#0a0a0a","editorGroupHeader.tabsBackground":"#171717","editorGroupHeader.tabsBorder":"#0a0a0a","panel.background":"#171717","panel.border":"#0a0a0a","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#fafafa","panelTitle.inactiveForeground":"#737373","statusBar.background":"#171717","statusBar.foreground":"#a3a3a3","statusBar.border":"#0a0a0a","statusBar.noFolderBackground":"#171717","statusBar.debuggingBackground":"#ffbc56","statusBar.debuggingForeground":"#0a0a0a","statusBarItem.remoteBackground":"#171717","statusBarItem.remoteForeground":"#a3a3a3","input.background":"#1d1d1d","input.border":"#1d1d1d","input.foreground":"#fafafa","input.placeholderForeground":"#636363","dropdown.background":"#1d1d1d","dropdown.border":"#1d1d1d","dropdown.foreground":"#fafafa","button.background":"#009fff","button.foreground":"#0a0a0a","button.hoverBackground":"#0190e7","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#101010","notifications.foreground":"#fafafa","notifications.border":"#1d1d1d","notificationToast.border":"#1d1d1d","notificationCenter.border":"#1d1d1d","notificationCenterHeader.background":"#101010","notificationCenterHeader.foreground":"#a3a3a3","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#ff855e","notificationsWarningIcon.foreground":"#ffbc56","notificationsInfoIcon.foreground":"#69b1ff","quickInput.background":"#101010","quickInput.foreground":"#fafafa","quickInputTitle.background":"#101010","widget.border":"#1d1d1d","gitDecoration.addedResourceForeground":"#92dde4","gitDecoration.conflictingResourceForeground":"#ea68bc","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#ff855e","gitDecoration.untrackedResourceForeground":"#92dde4","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#ea68bc4d","merge.currentContentBackground":"#ea68bc1f","merge.incomingHeaderBackground":"#69b1ff4d","merge.incomingContentBackground":"#69b1ff1f","editorOverviewRuler.currentContentForeground":"#ea68bc","editorOverviewRuler.incomingContentForeground":"#69b1ff","terminal.titleForeground":"#a3a3a3","terminal.titleInactiveForeground":"#737373","terminal.background":"#171717","terminal.foreground":"#a3a3a3","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ff855e","terminal.ansiGreen":"#64d1db","terminal.ansiYellow":"#ffbc56","terminal.ansiBlue":"#69b1ff","terminal.ansiMagenta":"#ea68bc","terminal.ansiCyan":"#92dde4","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ffa685","terminal.ansiBrightGreen":"#92dde4","terminal.ansiBrightYellow":"#ffcc81","terminal.ansiBrightBlue":"#97c4ff","terminal.ansiBrightMagenta":"#f191cc","terminal.ansiBrightCyan":"#92dde4","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#92dde4"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#92dde4"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#69b1ff"}},{"scope":"constant","settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffcc81"}},{"scope":"constant.language","settings":{"foreground":"#69b1ff"}},{"scope":"variable.other.constant","settings":{"foreground":"#ff855e"}},{"scope":"keyword","settings":{"foreground":"#d568ea"}},{"scope":"keyword.control","settings":{"foreground":"#d568ea"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#d568ea"}},{"scope":"token.storage","settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#d568ea"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ff855e"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ff855e"}},{"scope":"variable.language","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function","settings":{"foreground":"#a3a3a3"}},{"scope":"function.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffcc81"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffcc81"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#97c4ff"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.function","settings":{"foreground":"#97c4ff"}},{"scope":"support.function.console","settings":{"foreground":"#97c4ff"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#ea68bc"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#ea68bc"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#d568ea"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#97c4ff"}},{"scope":"keyword.operator.module","settings":{"foreground":"#d568ea"}},{"scope":"support.type.object.console","settings":{"foreground":"#ff855e"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.math","settings":{"foreground":"#ff855e"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffcc81"}},{"scope":"support.constant.json","settings":{"foreground":"#ffcc81"}},{"scope":"support.type.object.dom","settings":{"foreground":"#00c5d2"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ff855e"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffcc81"}},{"scope":"meta.property.object","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ff855e"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#92dde4"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#92dde4"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#d568ea"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ff855e"}},{"scope":"variable.interpolation","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#d568ea"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#d568ea"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#ea68bc"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#97c4ff"}},{"scope":"support.type.primitive","settings":{"foreground":"#ea68bc"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#69b1ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#d568ea"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#97c4ff"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffcc81"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#97c4ff"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#00c5d2"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ff855e"}},{"scope":"variable.language.rust","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#d568ea"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffcc81"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ff855e"}},{"scope":"source.java","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#97c4ff"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#d568ea"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ff855e"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ff855e"}},{"scope":"token.package.keyword","settings":{"foreground":"#d568ea"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ff855e"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#d568ea"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ff855e"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#d568ea"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ff855e"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#97c4ff"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffcc81"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#97c4ff"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#d568ea"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ff855e"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#fafafa"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#d568ea"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffcc81"}},{"scope":"storage.type.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ff855e"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.edge","settings":{"foreground":"#d568ea"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#00c5d2"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffcc81"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ff855e"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ff855e"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#00c5d2"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ff855e"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.method.groovy","settings":{"foreground":"#97c4ff"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#92dde4"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ff855e"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#d568ea"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ff855e"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ff855e"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.ini","settings":{"foreground":"#92dde4"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#00c5d2"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#00c5d2"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#d568ea"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#00c5d2"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ff855e"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#d568ea"}},{"scope":"keyword.control.xi","settings":{"foreground":"#00c5d2"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#92dde4"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#97c4ff"}},{"scope":"accent.xi","settings":{"foreground":"#97c4ff"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffcc81"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#fafafa"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffcc81"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#00c5d2"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffcc81"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#64d1db","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#97c4ff","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#00c5d2"}},{"scope":"meta.selector","settings":{"foreground":"#d568ea"}},{"scope":"selector.sass","settings":{"foreground":"#ff855e"}},{"scope":"rgb-value","settings":{"foreground":"#00c5d2"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"less rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"control.elements","settings":{"foreground":"#ffcc81"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffcc81"}},{"scope":"entity.name.tag","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#64d1db","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ff855e"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ff855e"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ff855e"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffcc81"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#d568ea","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#d568ea"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#d568ea"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#97c4ff"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ff855e"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#92dde4"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ff855e"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ff855e"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#97c4ff"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#92dde4"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ff855e"}},{"scope":"string.regexp","settings":{"foreground":"#64d1db"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffcc81"}},{"scope":"constant.character.escape","settings":{"foreground":"#64d1db"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ff855e"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ff855e"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#92dde4"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ff855e"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#97c4ff"}},{"scope":"token.warn-token","settings":{"foreground":"#ffcc81"}},{"scope":"token.error-token","settings":{"foreground":"#fafafa"}},{"scope":"token.debug-token","settings":{"foreground":"#d568ea"}},{"scope":"invalid.illegal","settings":{"foreground":"#fafafa"}},{"scope":"invalid.broken","settings":{"foreground":"#fafafa"}},{"scope":"invalid.deprecated","settings":{"foreground":"#fafafa"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#fafafa"}}],"semanticTokenColors":{"comment":"#737373","string":"#92dde4","number":"#69b1ff","regexp":"#64d1db","keyword":"#d568ea","variable":"#ff855e","parameter":"#a3a3a3","property":"#ff855e","function":"#97c4ff","method":"#97c4ff","type":"#ea68bc","class":"#ea68bc","namespace":"#ff855e","enumMember":"#00c5d2","variable.constant":"#ffcc81","variable.defaultLibrary":"#ff855e","decorator":"#69b1ff"}}'))
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly displayName: string;
|
|
5
|
+
readonly type: "light" | "dark";
|
|
6
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
7
|
+
readonly tokenColors: ReadonlyArray<{
|
|
8
|
+
readonly name?: string;
|
|
9
|
+
readonly scope?: string | string[];
|
|
10
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const theme: PierreTheme;
|
|
16
|
+
export default theme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default Object.freeze(JSON.parse('{"name":"pierre-dark-vibrant","displayName":"Pierre Dark Vibrant","type":"dark","colors":{"editor.background":"color(display-p3 0.039216 0.039216 0.039216)","editor.foreground":"color(display-p3 0.980392 0.980392 0.980392)","foreground":"color(display-p3 0.980392 0.980392 0.980392)","focusBorder":"color(display-p3 0.308664 0.645271 1.000000)","selection.background":"color(display-p3 0.098734 0.152326 0.240886)","editor.selectionBackground":"color(display-p3 0.308664 0.645271 1.000000 / 0.300000)","editor.lineHighlightBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.550000)","editorCursor.foreground":"color(display-p3 0.308664 0.645271 1.000000)","editorLineNumber.foreground":"color(display-p3 0.450980 0.450980 0.450980)","editorLineNumber.activeForeground":"color(display-p3 0.639216 0.639216 0.639216)","editorIndentGuide.background":"color(display-p3 0.113725 0.113725 0.113725)","editorIndentGuide.activeBackground":"color(display-p3 0.149020 0.149020 0.149020)","diffEditor.insertedTextBackground":"color(display-p3 0.304148 0.801790 0.517191 / 0.100000)","diffEditor.deletedTextBackground":"color(display-p3 1.000000 0.250216 0.262337 / 0.100000)","sideBar.background":"color(display-p3 0.090196 0.090196 0.090196)","sideBar.foreground":"color(display-p3 0.639216 0.639216 0.639216)","sideBar.border":"color(display-p3 0.039216 0.039216 0.039216)","sideBarTitle.foreground":"color(display-p3 0.980392 0.980392 0.980392)","sideBarSectionHeader.background":"color(display-p3 0.090196 0.090196 0.090196)","sideBarSectionHeader.foreground":"color(display-p3 0.639216 0.639216 0.639216)","sideBarSectionHeader.border":"color(display-p3 0.039216 0.039216 0.039216)","activityBar.background":"color(display-p3 0.090196 0.090196 0.090196)","activityBar.foreground":"color(display-p3 0.980392 0.980392 0.980392)","activityBar.border":"color(display-p3 0.039216 0.039216 0.039216)","activityBar.activeBorder":"color(display-p3 0.308664 0.645271 1.000000)","activityBarBadge.background":"color(display-p3 0.308664 0.645271 1.000000)","activityBarBadge.foreground":"color(display-p3 0.039216 0.039216 0.039216)","titleBar.activeBackground":"color(display-p3 0.090196 0.090196 0.090196)","titleBar.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","titleBar.inactiveBackground":"color(display-p3 0.090196 0.090196 0.090196)","titleBar.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","titleBar.border":"color(display-p3 0.039216 0.039216 0.039216)","list.activeSelectionBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.600000)","list.activeSelectionForeground":"color(display-p3 0.980392 0.980392 0.980392)","list.inactiveSelectionBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.450000)","list.hoverBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.350000)","list.focusOutline":"color(display-p3 0.308664 0.645271 1.000000)","tab.activeBackground":"color(display-p3 0.039216 0.039216 0.039216)","tab.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","tab.activeBorderTop":"color(display-p3 0.308664 0.645271 1.000000)","tab.inactiveBackground":"color(display-p3 0.090196 0.090196 0.090196)","tab.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","tab.border":"color(display-p3 0.039216 0.039216 0.039216)","editorGroupHeader.tabsBackground":"color(display-p3 0.090196 0.090196 0.090196)","editorGroupHeader.tabsBorder":"color(display-p3 0.039216 0.039216 0.039216)","panel.background":"color(display-p3 0.090196 0.090196 0.090196)","panel.border":"color(display-p3 0.039216 0.039216 0.039216)","panelTitle.activeBorder":"color(display-p3 0.308664 0.645271 1.000000)","panelTitle.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","panelTitle.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","statusBar.background":"color(display-p3 0.090196 0.090196 0.090196)","statusBar.foreground":"color(display-p3 0.639216 0.639216 0.639216)","statusBar.border":"color(display-p3 0.039216 0.039216 0.039216)","statusBar.noFolderBackground":"color(display-p3 0.090196 0.090196 0.090196)","statusBar.debuggingBackground":"color(display-p3 1.000000 0.832068 0.300621)","statusBar.debuggingForeground":"color(display-p3 0.039216 0.039216 0.039216)","statusBarItem.remoteBackground":"color(display-p3 0.090196 0.090196 0.090196)","statusBarItem.remoteForeground":"color(display-p3 0.639216 0.639216 0.639216)","input.background":"color(display-p3 0.113725 0.113725 0.113725)","input.border":"color(display-p3 0.113725 0.113725 0.113725)","input.foreground":"color(display-p3 0.980392 0.980392 0.980392)","input.placeholderForeground":"color(display-p3 0.388235 0.388235 0.388235)","dropdown.background":"color(display-p3 0.113725 0.113725 0.113725)","dropdown.border":"color(display-p3 0.113725 0.113725 0.113725)","dropdown.foreground":"color(display-p3 0.980392 0.980392 0.980392)","button.background":"color(display-p3 0.308664 0.645271 1.000000)","button.foreground":"color(display-p3 0.039216 0.039216 0.039216)","button.hoverBackground":"color(display-p3 0.282353 0.584314 0.905882)","textLink.foreground":"color(display-p3 0.308664 0.645271 1.000000)","textLink.activeForeground":"color(display-p3 0.308664 0.645271 1.000000)","notifications.background":"color(display-p3 0.062745 0.062745 0.062745)","notifications.foreground":"color(display-p3 0.980392 0.980392 0.980392)","notifications.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationToast.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationCenter.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationCenterHeader.background":"color(display-p3 0.062745 0.062745 0.062745)","notificationCenterHeader.foreground":"color(display-p3 0.639216 0.639216 0.639216)","notificationLink.foreground":"color(display-p3 0.308664 0.645271 1.000000)","notificationsErrorIcon.foreground":"color(display-p3 1.000000 0.250216 0.262337)","notificationsWarningIcon.foreground":"color(display-p3 1.000000 0.832068 0.300621)","notificationsInfoIcon.foreground":"color(display-p3 0.327292 0.790977 0.995660)","quickInput.background":"color(display-p3 0.062745 0.062745 0.062745)","quickInput.foreground":"color(display-p3 0.980392 0.980392 0.980392)","quickInputTitle.background":"color(display-p3 0.062745 0.062745 0.062745)","widget.border":"color(display-p3 0.113725 0.113725 0.113725)","gitDecoration.addedResourceForeground":"color(display-p3 0.304148 0.801790 0.517191)","gitDecoration.conflictingResourceForeground":"color(display-p3 0.467832 0.270883 1.000000)","gitDecoration.modifiedResourceForeground":"color(display-p3 0.308664 0.645271 1.000000)","gitDecoration.deletedResourceForeground":"color(display-p3 1.000000 0.250216 0.262337)","gitDecoration.untrackedResourceForeground":"color(display-p3 0.304148 0.801790 0.517191)","gitDecoration.ignoredResourceForeground":"color(display-p3 0.450980 0.450980 0.450980)","merge.currentHeaderBackground":"color(display-p3 0.467832 0.270883 1.000000 / 0.300000)","merge.currentContentBackground":"color(display-p3 0.467832 0.270883 1.000000 / 0.120000)","merge.incomingHeaderBackground":"color(display-p3 0.327292 0.790977 0.995660 / 0.300000)","merge.incomingContentBackground":"color(display-p3 0.327292 0.790977 0.995660 / 0.120000)","editorOverviewRuler.currentContentForeground":"color(display-p3 0.467832 0.270883 1.000000)","editorOverviewRuler.incomingContentForeground":"color(display-p3 0.327292 0.790977 0.995660)","terminal.titleForeground":"color(display-p3 0.639216 0.639216 0.639216)","terminal.titleInactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","terminal.background":"color(display-p3 0.090196 0.090196 0.090196)","terminal.foreground":"color(display-p3 0.639216 0.639216 0.639216)","terminal.ansiBlack":"color(display-p3 0.090196 0.090196 0.090196)","terminal.ansiRed":"color(display-p3 1.000000 0.250216 0.262337)","terminal.ansiGreen":"color(display-p3 0.298067 0.776115 0.322484)","terminal.ansiYellow":"color(display-p3 1.000000 0.832068 0.300621)","terminal.ansiBlue":"color(display-p3 0.308664 0.645271 1.000000)","terminal.ansiMagenta":"color(display-p3 0.885558 0.236588 0.705659)","terminal.ansiCyan":"color(display-p3 0.327292 0.790977 0.995660)","terminal.ansiWhite":"color(display-p3 0.737255 0.737255 0.737255)","terminal.ansiBrightBlack":"color(display-p3 0.090196 0.090196 0.090196)","terminal.ansiBrightRed":"color(display-p3 1.000000 0.250216 0.262337)","terminal.ansiBrightGreen":"color(display-p3 0.613906 0.826741 0.264677)","terminal.ansiBrightYellow":"color(display-p3 1.000000 0.832068 0.300621)","terminal.ansiBrightBlue":"color(display-p3 0.308664 0.645271 1.000000)","terminal.ansiBrightMagenta":"color(display-p3 0.885558 0.236588 0.705659)","terminal.ansiBrightCyan":"color(display-p3 0.327292 0.790977 0.995660)","terminal.ansiBrightWhite":"color(display-p3 0.737255 0.737255 0.737255)"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"comment markup.link","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"color(display-p3 0.452682 0.814110 0.989434)"}},{"scope":"constant","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.language","settings":{"foreground":"color(display-p3 0.452682 0.814110 0.989434)"}},{"scope":"variable.other.constant","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.control","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"token.storage","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.delete","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.language","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"variable.parameter.function","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"function.parameter","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"variable.parameter","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"keyword.other.special-method","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.function","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"support.function.console","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.namespace","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.optional","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"punctuation","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.terminator","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace.square","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace.round","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"function.brace","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"keyword.operator.module","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.type.object.console","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"support.constant.math","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"support.constant.property.math","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"support.constant.json","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"support.type.object.dom","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"support.variable.property.process","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"meta.property.object","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.template.expression","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.interpolation","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"support.type.primitive","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"support.variable.magic.python","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.type.python","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.function.std.rust","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"variable.language.rust","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.constant.core.rust","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"variable.c","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"source.java","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.method.java","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"import.storage.java","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"token.package.keyword","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"token.package","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"token.storage.type.java","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"entity.name.package.go","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"variable.other.class.php","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"storage.type.haskell","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"storage.type.cs","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"entity.name.label.cs","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"support.constant.edge","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.constant.elm","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.global.clojure","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.method.groovy","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"source.makefile","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"source.ini","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"entity.name.function.xi","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.name.class.xi","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"constant.regexp.xi","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.control.xi","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"invalid.xi","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"constant.character.xi","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"accent.xi","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"wikiword.xi","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name.css","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.constant.property-value","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.constant.font-name","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"color(display-p3 0.460672 0.843934 0.608755)","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"meta.selector","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"selector.sass","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"rgb-value","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"less rgb-value","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"control.elements","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"keyword.operator.less","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.name.tag","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"color(display-p3 0.460672 0.843934 0.608755)","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"meta.tag","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"markup.heading","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.heading.setext","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.quote.markdown","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"keyword.other.unit","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.changed.diff","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"markup.inserted.diff","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"markup.deleted.diff","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"string.regexp","settings":{"foreground":"color(display-p3 0.520590 0.857139 0.902107)"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.character.escape","settings":{"foreground":"color(display-p3 0.466798 0.860904 0.775090)"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name.json","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"block.scope.end","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"block.scope.begin","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"token.info-token","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"token.warn-token","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"token.error-token","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"token.debug-token","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"invalid.illegal","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.broken","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.deprecated","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.unimplemented","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}}],"semanticTokenColors":{"comment":"color(display-p3 0.450980 0.450980 0.450980)","string":"color(display-p3 0.451324 0.823458 0.446819)","number":"color(display-p3 0.452682 0.814110 0.989434)","regexp":"color(display-p3 0.520590 0.857139 0.902107)","keyword":"color(display-p3 0.994741 0.445201 0.573499)","variable":"color(display-p3 1.000000 0.688063 0.418777)","parameter":"color(display-p3 0.639216 0.639216 0.639216)","property":"color(display-p3 1.000000 0.688063 0.418777)","function":"color(display-p3 0.615613 0.445256 1.000000)","method":"color(display-p3 0.615613 0.445256 1.000000)","type":"color(display-p3 0.829375 0.434619 0.954315)","class":"color(display-p3 0.829375 0.434619 0.954315)","namespace":"color(display-p3 1.000000 0.719280 0.270071)","enumMember":"color(display-p3 0.327292 0.790977 0.995660)","variable.constant":"color(display-p3 1.000000 0.868456 0.454295)","variable.defaultLibrary":"color(display-p3 1.000000 0.719280 0.270071)","decorator":"color(display-p3 0.453315 0.683106 1.000000)"}}'))
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly displayName: string;
|
|
5
|
+
readonly type: "light" | "dark";
|
|
6
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
7
|
+
readonly tokenColors: ReadonlyArray<{
|
|
8
|
+
readonly name?: string;
|
|
9
|
+
readonly scope?: string | string[];
|
|
10
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const theme: PierreTheme;
|
|
16
|
+
export default theme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default Object.freeze(JSON.parse('{"name":"pierre-dark","displayName":"Pierre Dark","type":"dark","colors":{"editor.background":"#0a0a0a","editor.foreground":"#fafafa","foreground":"#fafafa","focusBorder":"#009fff","selection.background":"#19283c","editor.selectionBackground":"#009fff4d","editor.lineHighlightBackground":"#19283c8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#a3a3a3","editorIndentGuide.background":"#1d1d1d","editorIndentGuide.activeBackground":"#262626","diffEditor.insertedTextBackground":"#07c4801a","diffEditor.deletedTextBackground":"#ff2e3f1a","sideBar.background":"#171717","sideBar.foreground":"#a3a3a3","sideBar.border":"#0a0a0a","sideBarTitle.foreground":"#fafafa","sideBarSectionHeader.background":"#171717","sideBarSectionHeader.foreground":"#a3a3a3","sideBarSectionHeader.border":"#0a0a0a","activityBar.background":"#171717","activityBar.foreground":"#fafafa","activityBar.border":"#0a0a0a","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#0a0a0a","titleBar.activeBackground":"#171717","titleBar.activeForeground":"#fafafa","titleBar.inactiveBackground":"#171717","titleBar.inactiveForeground":"#737373","titleBar.border":"#0a0a0a","list.activeSelectionBackground":"#19283c99","list.activeSelectionForeground":"#fafafa","list.inactiveSelectionBackground":"#19283c73","list.hoverBackground":"#19283c59","list.focusOutline":"#009fff","tab.activeBackground":"#0a0a0a","tab.activeForeground":"#fafafa","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#171717","tab.inactiveForeground":"#737373","tab.border":"#0a0a0a","editorGroupHeader.tabsBackground":"#171717","editorGroupHeader.tabsBorder":"#0a0a0a","panel.background":"#171717","panel.border":"#0a0a0a","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#fafafa","panelTitle.inactiveForeground":"#737373","statusBar.background":"#171717","statusBar.foreground":"#a3a3a3","statusBar.border":"#0a0a0a","statusBar.noFolderBackground":"#171717","statusBar.debuggingBackground":"#ffca00","statusBar.debuggingForeground":"#0a0a0a","statusBarItem.remoteBackground":"#171717","statusBarItem.remoteForeground":"#a3a3a3","input.background":"#1d1d1d","input.border":"#1d1d1d","input.foreground":"#fafafa","input.placeholderForeground":"#636363","dropdown.background":"#1d1d1d","dropdown.border":"#1d1d1d","dropdown.foreground":"#fafafa","button.background":"#009fff","button.foreground":"#0a0a0a","button.hoverBackground":"#0190e7","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#101010","notifications.foreground":"#fafafa","notifications.border":"#1d1d1d","notificationToast.border":"#1d1d1d","notificationCenter.border":"#1d1d1d","notificationCenterHeader.background":"#101010","notificationCenterHeader.foreground":"#a3a3a3","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#ff2e3f","notificationsWarningIcon.foreground":"#ffca00","notificationsInfoIcon.foreground":"#08c0ef","quickInput.background":"#101010","quickInput.foreground":"#fafafa","quickInputTitle.background":"#101010","widget.border":"#1d1d1d","gitDecoration.addedResourceForeground":"#07c480","gitDecoration.conflictingResourceForeground":"#7b43f8","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#ff2e3f","gitDecoration.untrackedResourceForeground":"#07c480","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#7b43f84d","merge.currentContentBackground":"#7b43f81f","merge.incomingHeaderBackground":"#08c0ef4d","merge.incomingContentBackground":"#08c0ef1f","editorOverviewRuler.currentContentForeground":"#7b43f8","editorOverviewRuler.incomingContentForeground":"#08c0ef","terminal.titleForeground":"#a3a3a3","terminal.titleInactiveForeground":"#737373","terminal.background":"#171717","terminal.foreground":"#a3a3a3","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ff2e3f","terminal.ansiGreen":"#0dbe4e","terminal.ansiYellow":"#ffca00","terminal.ansiBlue":"#009fff","terminal.ansiMagenta":"#e130ac","terminal.ansiCyan":"#08c0ef","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ff2e3f","terminal.ansiBrightGreen":"#86c427","terminal.ansiBrightYellow":"#ffca00","terminal.ansiBrightBlue":"#009fff","terminal.ansiBrightMagenta":"#e130ac","terminal.ansiBrightCyan":"#08c0ef","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#5ecc71"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#68cdf2"}},{"scope":"constant","settings":{"foreground":"#ffd452"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffd452"}},{"scope":"constant.language","settings":{"foreground":"#68cdf2"}},{"scope":"variable.other.constant","settings":{"foreground":"#ffab16"}},{"scope":"keyword","settings":{"foreground":"#ff678d"}},{"scope":"keyword.control","settings":{"foreground":"#ff678d"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#ff678d"}},{"scope":"token.storage","settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#ff678d"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ffa359"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ffa359"}},{"scope":"variable.language","settings":{"foreground":"#ffab16"}},{"scope":"variable.parameter.function","settings":{"foreground":"#a3a3a3"}},{"scope":"function.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffd452"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffd452"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#9d6afb"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.function","settings":{"foreground":"#9d6afb"}},{"scope":"support.function.console","settings":{"foreground":"#9d6afb"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#d568ea"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#d568ea"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#d568ea"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ffab16"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#ff678d"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#9d6afb"}},{"scope":"keyword.operator.module","settings":{"foreground":"#ff678d"}},{"scope":"support.type.object.console","settings":{"foreground":"#ffa359"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ffab16"}},{"scope":"support.constant.math","settings":{"foreground":"#ffab16"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffd452"}},{"scope":"support.constant.json","settings":{"foreground":"#ffd452"}},{"scope":"support.type.object.dom","settings":{"foreground":"#08c0ef"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ffa359"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffd452"}},{"scope":"meta.property.object","settings":{"foreground":"#ffa359"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ffa359"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#ff678d"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ffa359"}},{"scope":"variable.interpolation","settings":{"foreground":"#ffa359"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#ff678d"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#ff678d"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#d568ea"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#9d6afb"}},{"scope":"support.type.primitive","settings":{"foreground":"#d568ea"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#69b1ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ffab16"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#ff678d"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#9d6afb"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffd452"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#9d6afb"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#08c0ef"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ffab16"}},{"scope":"variable.language.rust","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#ff678d"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffd452"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ffab16"}},{"scope":"source.java","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#9d6afb"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#ff678d"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ff855e"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ffab16"}},{"scope":"token.package.keyword","settings":{"foreground":"#ff678d"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ffab16"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#ff678d"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ffab16"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#ff678d"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ffab16"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#9d6afb"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffd452"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#9d6afb"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#ff678d"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ff855e"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#fafafa"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#ff678d"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffd452"}},{"scope":"storage.type.cs","settings":{"foreground":"#ffab16"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ffab16"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ffab16"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.edge","settings":{"foreground":"#ff678d"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#08c0ef"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffd452"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ffab16"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ff855e"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#08c0ef"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ff855e"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ffab16"}},{"scope":"meta.method.groovy","settings":{"foreground":"#9d6afb"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#5ecc71"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ffab16"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#ff678d"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ff855e"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ffab16"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.makefile","settings":{"foreground":"#ffab16"}},{"scope":"source.ini","settings":{"foreground":"#5ecc71"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#08c0ef"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#08c0ef"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#ff678d"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#ff678d"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ffab16"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#08c0ef"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ff855e"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#ff678d"}},{"scope":"keyword.control.xi","settings":{"foreground":"#08c0ef"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#5ecc71"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#9d6afb"}},{"scope":"accent.xi","settings":{"foreground":"#9d6afb"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffd452"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#fafafa"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffd452"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#08c0ef"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffd452"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffd452"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#60d199","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#9d6afb","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#08c0ef"}},{"scope":"meta.selector","settings":{"foreground":"#ff678d"}},{"scope":"selector.sass","settings":{"foreground":"#ff855e"}},{"scope":"rgb-value","settings":{"foreground":"#08c0ef"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffd452"}},{"scope":"less rgb-value","settings":{"foreground":"#ffd452"}},{"scope":"control.elements","settings":{"foreground":"#ffd452"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffd452"}},{"scope":"entity.name.tag","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#60d199","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ff855e"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ff855e"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ff855e"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffd452"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ffab16"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffd452"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#ff678d","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#ff678d"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#ff678d"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#9d6afb"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ff855e"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#5ecc71"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ff855e"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ffab16"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#9d6afb"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#5ecc71"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ff855e"}},{"scope":"string.regexp","settings":{"foreground":"#64d1db"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffd452"}},{"scope":"constant.character.escape","settings":{"foreground":"#61d5c0"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ff855e"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ff855e"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#5ecc71"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ff855e"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#9d6afb"}},{"scope":"token.warn-token","settings":{"foreground":"#ffd452"}},{"scope":"token.error-token","settings":{"foreground":"#fafafa"}},{"scope":"token.debug-token","settings":{"foreground":"#ff678d"}},{"scope":"invalid.illegal","settings":{"foreground":"#fafafa"}},{"scope":"invalid.broken","settings":{"foreground":"#fafafa"}},{"scope":"invalid.deprecated","settings":{"foreground":"#fafafa"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#fafafa"}}],"semanticTokenColors":{"comment":"#737373","string":"#5ecc71","number":"#68cdf2","regexp":"#64d1db","keyword":"#ff678d","variable":"#ffa359","parameter":"#a3a3a3","property":"#ffa359","function":"#9d6afb","method":"#9d6afb","type":"#d568ea","class":"#d568ea","namespace":"#ffab16","enumMember":"#08c0ef","variable.constant":"#ffd452","variable.defaultLibrary":"#ffab16","decorator":"#69b1ff"}}'))
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly displayName: string;
|
|
5
|
+
readonly type: "light" | "dark";
|
|
6
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
7
|
+
readonly tokenColors: ReadonlyArray<{
|
|
8
|
+
readonly name?: string;
|
|
9
|
+
readonly scope?: string | string[];
|
|
10
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const theme: PierreTheme;
|
|
16
|
+
export default theme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default Object.freeze(JSON.parse('{"name":"pierre-light-protanopia-deuteranopia","displayName":"Pierre Light Protanopia & Deuteranopia","type":"light","colors":{"editor.background":"#ffffff","editor.foreground":"#0a0a0a","foreground":"#0a0a0a","focusBorder":"#009fff","selection.background":"#dfebff","editor.selectionBackground":"#009fff2e","editor.lineHighlightBackground":"#dfebff8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#525252","editorIndentGuide.background":"#e5e5e5","editorIndentGuide.activeBackground":"#d4d4d4","diffEditor.insertedTextBackground":"#216cab33","diffEditor.deletedTextBackground":"#ac602333","sideBar.background":"#f5f5f5","sideBar.foreground":"#525252","sideBar.border":"#e5e5e5","sideBarTitle.foreground":"#0a0a0a","sideBarSectionHeader.background":"#f5f5f5","sideBarSectionHeader.foreground":"#525252","sideBarSectionHeader.border":"#e5e5e5","activityBar.background":"#f5f5f5","activityBar.foreground":"#0a0a0a","activityBar.border":"#e5e5e5","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#ffffff","titleBar.activeBackground":"#f5f5f5","titleBar.activeForeground":"#0a0a0a","titleBar.inactiveBackground":"#f5f5f5","titleBar.inactiveForeground":"#737373","titleBar.border":"#e5e5e5","list.activeSelectionBackground":"#dfebffcc","list.activeSelectionForeground":"#0a0a0a","list.inactiveSelectionBackground":"#dfebff73","list.hoverBackground":"#dfebff59","list.focusOutline":"#009fff","tab.activeBackground":"#ffffff","tab.activeForeground":"#0a0a0a","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#f5f5f5","tab.inactiveForeground":"#737373","tab.border":"#e5e5e5","editorGroupHeader.tabsBackground":"#f5f5f5","editorGroupHeader.tabsBorder":"#e5e5e5","panel.background":"#f5f5f5","panel.border":"#e5e5e5","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#0a0a0a","panelTitle.inactiveForeground":"#737373","statusBar.background":"#f5f5f5","statusBar.foreground":"#525252","statusBar.border":"#e5e5e5","statusBar.noFolderBackground":"#f5f5f5","statusBar.debuggingBackground":"#ffca00","statusBar.debuggingForeground":"#ffffff","statusBarItem.remoteBackground":"#f5f5f5","statusBarItem.remoteForeground":"#525252","input.background":"#ededed","input.border":"#d4d4d4","input.foreground":"#0a0a0a","input.placeholderForeground":"#8a8a8a","dropdown.background":"#ededed","dropdown.border":"#d4d4d4","dropdown.foreground":"#0a0a0a","button.background":"#009fff","button.foreground":"#ffffff","button.hoverBackground":"#1aa9ff","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#f7f7f7","notifications.foreground":"#0a0a0a","notifications.border":"#e5e5e5","notificationToast.border":"#e5e5e5","notificationCenter.border":"#e5e5e5","notificationCenterHeader.background":"#f7f7f7","notificationCenterHeader.foreground":"#525252","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#ac6023","notificationsWarningIcon.foreground":"#ffca00","notificationsInfoIcon.foreground":"#2182a1","quickInput.background":"#f7f7f7","quickInput.foreground":"#0a0a0a","quickInputTitle.background":"#f7f7f7","widget.border":"#e5e5e5","gitDecoration.addedResourceForeground":"#216cab","gitDecoration.conflictingResourceForeground":"#58287c","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#ac6023","gitDecoration.untrackedResourceForeground":"#216cab","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#58287c33","merge.currentContentBackground":"#58287c14","merge.incomingHeaderBackground":"#2182a133","merge.incomingContentBackground":"#2182a114","editorOverviewRuler.currentContentForeground":"#58287c","editorOverviewRuler.incomingContentForeground":"#2182a1","terminal.titleForeground":"#525252","terminal.titleInactiveForeground":"#737373","terminal.background":"#f5f5f5","terminal.foreground":"#525252","terminal.ansiBlack":"#1d1d1d","terminal.ansiRed":"#ac6023","terminal.ansiGreen":"#216cab","terminal.ansiYellow":"#ffca00","terminal.ansiBlue":"#1a85d4","terminal.ansiMagenta":"#8836c7","terminal.ansiCyan":"#2182a1","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#1d1d1d","terminal.ansiBrightRed":"#d47628","terminal.ansiBrightGreen":"#1a85d4","terminal.ansiBrightYellow":"#ffca00","terminal.ansiBrightBlue":"#009fff","terminal.ansiBrightMagenta":"#a13cee","terminal.ansiBrightCyan":"#1ca1c7","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#215584"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#215584"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#2182a1"}},{"scope":"constant","settings":{"foreground":"#ac741d"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ac741d"}},{"scope":"constant.language","settings":{"foreground":"#2182a1"}},{"scope":"variable.other.constant","settings":{"foreground":"#ac741d"}},{"scope":"keyword","settings":{"foreground":"#8836c7"}},{"scope":"keyword.control","settings":{"foreground":"#8836c7"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#8836c7"}},{"scope":"token.storage","settings":{"foreground":"#8836c7"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#8836c7"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#8836c7"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ac6023"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ac6023"}},{"scope":"variable.language","settings":{"foreground":"#ac741d"}},{"scope":"variable.parameter.function","settings":{"foreground":"#636363"}},{"scope":"function.parameter","settings":{"foreground":"#636363"}},{"scope":"variable.parameter","settings":{"foreground":"#636363"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ac741d"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ac741d"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#5731a7"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#5731a7"}},{"scope":"entity.name.function","settings":{"foreground":"#5731a7"}},{"scope":"support.function.console","settings":{"foreground":"#5731a7"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#a631be"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#a631be"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#a631be"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#a631be"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ac741d"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#a631be"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ac741d"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#2182a1"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#2182a1"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#2182a1"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#8836c7"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#2182a1"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#8836c7"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#8836c7"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#5731a7"}},{"scope":"keyword.operator.module","settings":{"foreground":"#8836c7"}},{"scope":"support.type.object.console","settings":{"foreground":"#ac6023"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ac741d"}},{"scope":"support.constant.math","settings":{"foreground":"#ac741d"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ac741d"}},{"scope":"support.constant.json","settings":{"foreground":"#ac741d"}},{"scope":"support.type.object.dom","settings":{"foreground":"#2182a1"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ac6023"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ac741d"}},{"scope":"meta.property.object","settings":{"foreground":"#ac6023"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ac6023"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#215584"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#215584"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#8836c7"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ac6023"}},{"scope":"variable.interpolation","settings":{"foreground":"#ac6023"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#8836c7"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#8836c7"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#a631be"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#5731a7"}},{"scope":"support.type.primitive","settings":{"foreground":"#a631be"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#216cab"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#216cab"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#216cab"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ac6023"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ac741d"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#2182a1"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#8836c7"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#5731a7"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ac741d"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#5731a7"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#2182a1"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#5731a7"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ac741d"}},{"scope":"variable.language.rust","settings":{"foreground":"#ac6023"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#8836c7"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ac741d"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ac6023"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#8836c7"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#8836c7"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#8836c7"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#2182a1"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#8836c7"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ac741d"}},{"scope":"source.java","settings":{"foreground":"#ac6023"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#5731a7"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ac741d"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#8836c7"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ac6023"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ac741d"}},{"scope":"token.package.keyword","settings":{"foreground":"#8836c7"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ac741d"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ac741d"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#8836c7"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ac741d"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ac741d"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#8836c7"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#8836c7"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ac741d"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#5731a7"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ac741d"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#5731a7"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#2182a1"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#8836c7"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#2182a1"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#8836c7"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ac6023"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#0a0a0a"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#8836c7"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ac741d"}},{"scope":"storage.type.cs","settings":{"foreground":"#ac741d"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ac6023"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ac741d"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ac741d"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ac6023"}},{"scope":"support.constant.edge","settings":{"foreground":"#8836c7"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#2182a1"}},{"scope":"support.constant.elm","settings":{"foreground":"#ac741d"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ac741d"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ac6023"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#2182a1"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ac6023"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ac741d"}},{"scope":"meta.method.groovy","settings":{"foreground":"#5731a7"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ac6023"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#215584"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ac741d"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#8836c7"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ac6023"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ac741d"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ac6023"}},{"scope":"source.makefile","settings":{"foreground":"#ac741d"}},{"scope":"source.ini","settings":{"foreground":"#215584"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#2182a1"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#2182a1"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#8836c7"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#8836c7"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ac741d"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#2182a1"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ac6023"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#8836c7"}},{"scope":"keyword.control.xi","settings":{"foreground":"#2182a1"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#215584"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#5731a7"}},{"scope":"accent.xi","settings":{"foreground":"#5731a7"}},{"scope":"wikiword.xi","settings":{"foreground":"#ac741d"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#0a0a0a"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ac741d"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#2182a1"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ac741d"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#2182a1"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#2182a1"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ac741d"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#ac741d","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#5731a7","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#2182a1"}},{"scope":"meta.selector","settings":{"foreground":"#8836c7"}},{"scope":"selector.sass","settings":{"foreground":"#ac6023"}},{"scope":"rgb-value","settings":{"foreground":"#2182a1"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ac741d"}},{"scope":"less rgb-value","settings":{"foreground":"#ac741d"}},{"scope":"control.elements","settings":{"foreground":"#ac741d"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ac741d"}},{"scope":"entity.name.tag","settings":{"foreground":"#ac6023"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#ac741d","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ac6023"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ac6023"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#5731a7"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ac6023"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ac6023"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ac6023"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ac741d"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ac741d"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ac741d"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#8836c7","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#8836c7"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#8836c7"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#5731a7"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ac6023"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#215584"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ac6023"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ac6023"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ac6023"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ac6023"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ac6023"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ac741d"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#5731a7"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#215584"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ac6023"}},{"scope":"string.regexp","settings":{"foreground":"#2182a1"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ac6023"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ac741d"}},{"scope":"constant.character.escape","settings":{"foreground":"#1e858e"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ac6023"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ac6023"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#215584"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#2182a1"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ac6023"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ac6023"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#5731a7"}},{"scope":"token.warn-token","settings":{"foreground":"#ac741d"}},{"scope":"token.error-token","settings":{"foreground":"#0a0a0a"}},{"scope":"token.debug-token","settings":{"foreground":"#8836c7"}},{"scope":"invalid.illegal","settings":{"foreground":"#0a0a0a"}},{"scope":"invalid.broken","settings":{"foreground":"#0a0a0a"}},{"scope":"invalid.deprecated","settings":{"foreground":"#0a0a0a"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#0a0a0a"}}],"semanticTokenColors":{"comment":"#737373","string":"#215584","number":"#2182a1","regexp":"#2182a1","keyword":"#8836c7","variable":"#ac6023","parameter":"#636363","property":"#ac6023","function":"#5731a7","method":"#5731a7","type":"#a631be","class":"#a631be","namespace":"#ac741d","enumMember":"#2182a1","variable.constant":"#ac741d","variable.defaultLibrary":"#ac741d","decorator":"#216cab"}}'))
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** VS Code / TextMate theme object (frozen at runtime). */
|
|
2
|
+
interface PierreTheme {
|
|
3
|
+
readonly name: string;
|
|
4
|
+
readonly displayName: string;
|
|
5
|
+
readonly type: "light" | "dark";
|
|
6
|
+
readonly colors: Readonly<Record<string, string>>;
|
|
7
|
+
readonly tokenColors: ReadonlyArray<{
|
|
8
|
+
readonly name?: string;
|
|
9
|
+
readonly scope?: string | string[];
|
|
10
|
+
readonly settings: Readonly<Record<string, string>>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly semanticTokenColors: Readonly<Record<string, string | Record<string, string>>>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const theme: PierreTheme;
|
|
16
|
+
export default theme;
|