@bingjiang0611/rotom 0.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3789) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +61 -0
  3. package/THIRD_PARTY_NOTICES.md +94 -0
  4. package/bin/pi-agent +355 -0
  5. package/bin/rotom +24 -0
  6. package/extensions/browser/browser-relay.ts +440 -0
  7. package/extensions/browser/chrome-extension/coordinate-click.js +48 -0
  8. package/extensions/browser/chrome-extension/full-read.js +113 -0
  9. package/extensions/browser/chrome-extension/interaction-observation.js +5 -0
  10. package/extensions/browser/chrome-extension/interaction-scroll-target.js +54 -0
  11. package/extensions/browser/chrome-extension/interaction-target-state.js +88 -0
  12. package/extensions/browser/chrome-extension/manifest.json +23 -0
  13. package/extensions/browser/chrome-extension/operation-chrome.js +18 -0
  14. package/extensions/browser/chrome-extension/operation-guard.js +12 -0
  15. package/extensions/browser/chrome-extension/page-alerts.js +89 -0
  16. package/extensions/browser/chrome-extension/relay-deadline.js +55 -0
  17. package/extensions/browser/chrome-extension/rendered-text.js +42 -0
  18. package/extensions/browser/chrome-extension/scoped-ax-ref.js +14 -0
  19. package/extensions/browser/chrome-extension/service-worker.js +1244 -0
  20. package/extensions/browser/chrome-extension/shared-tab-group.js +18 -0
  21. package/extensions/browser/chrome-extension/tab-list-status.js +58 -0
  22. package/extensions/browser/chrome-extension/window-open-correlation.js +15 -0
  23. package/extensions/browser/index.ts +505 -0
  24. package/extensions/browser/install-chrome-relay.mjs +216 -0
  25. package/extensions/browser/native-host.mjs +192 -0
  26. package/extensions/browser/relay-protocol.mjs +19 -0
  27. package/extensions/browser/relay-setup-probe.mjs +38 -0
  28. package/extensions/coding-policy/index.ts +38 -0
  29. package/extensions/coding-policy/pi-runtime-drift.ts +75 -0
  30. package/extensions/coding-policy/repair-hints.ts +252 -0
  31. package/extensions/observability/dashboard.mjs +788 -0
  32. package/extensions/observability/index.ts +677 -0
  33. package/extensions/third-party/ask-continuation.ts +78 -0
  34. package/extensions/third-party/computer-use-recovery.ts +339 -0
  35. package/extensions/third-party/deferred-tools.ts +197 -0
  36. package/extensions/third-party/index.ts +84 -0
  37. package/extensions/third-party/node_modules/.package-lock.json +175 -0
  38. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/LICENSE +21 -0
  39. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/README.md +92 -0
  40. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/assets/reference/img.jpg +0 -0
  41. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/architecture.md +158 -0
  42. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/configuration.md +92 -0
  43. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/development.md +123 -0
  44. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/linux.md +65 -0
  45. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/troubleshooting.md +156 -0
  46. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/usage.md +140 -0
  47. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/windows-bridge.md +65 -0
  48. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/extensions/computer-use.ts +203 -0
  49. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.lock +1204 -0
  50. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.toml +18 -0
  51. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/atspi.rs +640 -0
  52. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/error.rs +65 -0
  53. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/lib.rs +11 -0
  54. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/main.rs +1074 -0
  55. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/protocol.rs +49 -0
  56. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/state.rs +293 -0
  57. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/wayland.rs +89 -0
  58. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/x11.rs +909 -0
  59. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/tests/protocol_tests.rs +73 -0
  60. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/macos/bridge.swift +3611 -0
  61. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.lock +396 -0
  62. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.toml +30 -0
  63. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/capture.rs +518 -0
  64. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/error.rs +81 -0
  65. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/input.rs +501 -0
  66. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/lib.rs +16 -0
  67. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/main.rs +1683 -0
  68. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/protocol.rs +53 -0
  69. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/refs.rs +237 -0
  70. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/state.rs +55 -0
  71. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/uia.rs +1252 -0
  72. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/window.rs +718 -0
  73. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/protocol_tests.rs +252 -0
  74. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/refs_tests.rs +86 -0
  75. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/state_tests.rs +33 -0
  76. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/package.json +84 -0
  77. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/arm64/linux-bridge +0 -0
  78. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/x64/linux-bridge +0 -0
  79. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/arm64/bridge +0 -0
  80. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/Info.plist +13 -0
  81. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/MacOS/bridge +0 -0
  82. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/_CodeSignature/CodeResources +115 -0
  83. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/x64/bridge +0 -0
  84. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/build-native.mjs +277 -0
  85. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/setup-helper.mjs +617 -0
  86. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/actions.ts +130 -0
  87. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/bridge.ts +2423 -0
  88. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/cdp.ts +658 -0
  89. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/config.ts +113 -0
  90. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/contract.ts +104 -0
  91. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/note.ts +195 -0
  92. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/outline.ts +651 -0
  93. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/output.ts +134 -0
  94. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/permissions.ts +111 -0
  95. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/architecture.ts +23 -0
  96. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/coerce.ts +16 -0
  97. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/index.ts +59 -0
  98. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/backend.ts +186 -0
  99. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/helper.ts +238 -0
  100. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/backend.ts +131 -0
  101. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/browser.ts +110 -0
  102. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.d.mts +9 -0
  103. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.mjs +34 -0
  104. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper.ts +291 -0
  105. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/permissions.ts +146 -0
  106. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/types.ts +222 -0
  107. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/backend.ts +142 -0
  108. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/helper.ts +140 -0
  109. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/runtime.ts +129 -0
  110. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/state.ts +146 -0
  111. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/view.ts +147 -0
  112. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/LICENSE +21 -0
  113. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/README.md +94 -0
  114. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/ask-user-question.ts +336 -0
  115. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/config.ts +75 -0
  116. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/configuration.md +120 -0
  117. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/hosts.md +93 -0
  118. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/keyboard.md +103 -0
  119. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/localization.md +83 -0
  120. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/tool-schema.md +121 -0
  121. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/events.ts +55 -0
  122. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/index.ts +54 -0
  123. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/de.json +31 -0
  124. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/en.json +31 -0
  125. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/es.json +31 -0
  126. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/fr.json +31 -0
  127. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt-BR.json +31 -0
  128. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt.json +31 -0
  129. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/ru.json +31 -0
  130. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/uk.json +31 -0
  131. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/zh.json +33 -0
  132. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/package.json +100 -0
  133. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/reconcile.ts +47 -0
  134. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/rpc-fallback.ts +166 -0
  135. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +323 -0
  136. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/external-editor.ts +62 -0
  137. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/i18n-bridge.ts +51 -0
  138. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +310 -0
  139. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +250 -0
  140. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/row-intent.ts +143 -0
  141. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/contract.ts +24 -0
  142. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/derivations.ts +40 -0
  143. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/focus.ts +17 -0
  144. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/projections.ts +99 -0
  145. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state-reducer.ts +331 -0
  146. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state.ts +57 -0
  147. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/format-answer.ts +29 -0
  148. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/response-envelope.ts +47 -0
  149. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/types.ts +145 -0
  150. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/validate-questionnaire.ts +56 -0
  151. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/component-binding.ts +45 -0
  152. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/inline-input.ts +66 -0
  153. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/multi-select-view.ts +177 -0
  154. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/option-list-view.ts +68 -0
  155. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/markdown-content-cache.ts +77 -0
  156. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-block-renderer.ts +109 -0
  157. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-box-renderer.ts +86 -0
  158. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-layout-decider.ts +207 -0
  159. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-pane.ts +233 -0
  160. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/submit-picker.ts +65 -0
  161. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/tab-bar.ts +57 -0
  162. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/wrapping-select.ts +288 -0
  163. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/dialog-builder.ts +224 -0
  164. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/props-adapter.ts +117 -0
  165. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/stateful-view.ts +24 -0
  166. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-components.ts +16 -0
  167. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-content-strategy.ts +249 -0
  168. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/CHANGELOG.md +118 -0
  169. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/README.md +70 -0
  170. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/config.ts +309 -0
  171. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/index.ts +13 -0
  172. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/package.json +39 -0
  173. package/extensions/third-party/node_modules/@narumitw/pi-goal/LICENSE +21 -0
  174. package/extensions/third-party/node_modules/@narumitw/pi-goal/README.md +361 -0
  175. package/extensions/third-party/node_modules/@narumitw/pi-goal/package.json +56 -0
  176. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/accounting.ts +106 -0
  177. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command-registration.ts +129 -0
  178. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command.ts +151 -0
  179. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/commands.ts +482 -0
  180. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/errors.ts +176 -0
  181. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/goal.ts +52 -0
  182. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/index.ts +1 -0
  183. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/lifecycle.ts +575 -0
  184. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/markers.ts +25 -0
  185. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/menu.ts +685 -0
  186. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/persistence.ts +283 -0
  187. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/prompts.ts +115 -0
  188. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/run-protocol.ts +380 -0
  189. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/runtime.ts +1493 -0
  190. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/safety.ts +78 -0
  191. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings-ui.ts +515 -0
  192. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings.ts +201 -0
  193. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tool-policy.ts +180 -0
  194. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tools.ts +416 -0
  195. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/wait.ts +75 -0
  196. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/LICENSE +21 -0
  197. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/README.md +739 -0
  198. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.d.ts +5 -0
  199. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.js +356 -0
  200. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.d.ts +77 -0
  201. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.js +10 -0
  202. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.d.ts +13 -0
  203. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.js +181 -0
  204. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.d.ts +1 -0
  205. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.js +19 -0
  206. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.d.ts +8 -0
  207. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.js +11 -0
  208. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.d.ts +11 -0
  209. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.js +618 -0
  210. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.d.ts +8 -0
  211. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.js +94 -0
  212. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.d.ts +8 -0
  213. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.js +106 -0
  214. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.d.ts +2 -0
  215. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.js +233 -0
  216. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.d.ts +13 -0
  217. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.js +50 -0
  218. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.d.ts +9 -0
  219. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.js +203 -0
  220. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.d.ts +17 -0
  221. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.js +38 -0
  222. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.d.ts +4 -0
  223. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.js +227 -0
  224. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.d.ts +19 -0
  225. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.js +55 -0
  226. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.d.ts +30 -0
  227. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.js +118 -0
  228. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.d.ts +40 -0
  229. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.js +174 -0
  230. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.d.ts +11 -0
  231. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.js +10 -0
  232. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.d.ts +14 -0
  233. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.js +33 -0
  234. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.d.ts +40 -0
  235. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.js +169 -0
  236. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.d.ts +63 -0
  237. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.js +408 -0
  238. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.d.ts +4 -0
  239. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.js +113 -0
  240. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.d.ts +10 -0
  241. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.js +58 -0
  242. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.d.ts +27 -0
  243. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.js +479 -0
  244. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.d.ts +29 -0
  245. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.js +158 -0
  246. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.d.ts +6 -0
  247. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.js +104 -0
  248. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.d.ts +3 -0
  249. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.js +2 -0
  250. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.d.ts +2 -0
  251. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.js +134 -0
  252. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.d.ts +2 -0
  253. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.js +314 -0
  254. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.d.ts +72 -0
  255. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.js +1 -0
  256. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.d.ts +2 -0
  257. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.js +9 -0
  258. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.d.ts +192 -0
  259. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.js +1 -0
  260. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/package.json +67 -0
  261. package/extensions/third-party/node_modules/acorn/CHANGELOG.md +998 -0
  262. package/extensions/third-party/node_modules/acorn/LICENSE +21 -0
  263. package/extensions/third-party/node_modules/acorn/README.md +309 -0
  264. package/extensions/third-party/node_modules/acorn/bin/acorn +4 -0
  265. package/extensions/third-party/node_modules/acorn/dist/acorn.d.mts +897 -0
  266. package/extensions/third-party/node_modules/acorn/dist/acorn.d.ts +897 -0
  267. package/extensions/third-party/node_modules/acorn/dist/acorn.js +6342 -0
  268. package/extensions/third-party/node_modules/acorn/dist/acorn.mjs +6313 -0
  269. package/extensions/third-party/node_modules/acorn/dist/bin.js +90 -0
  270. package/extensions/third-party/node_modules/acorn/package.json +50 -0
  271. package/extensions/third-party/node_modules/grok-mermaid/CHANGELOG.md +46 -0
  272. package/extensions/third-party/node_modules/grok-mermaid/LICENSE +205 -0
  273. package/extensions/third-party/node_modules/grok-mermaid/README.md +191 -0
  274. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts +16 -0
  275. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts.map +1 -0
  276. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js +23 -0
  277. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js.map +1 -0
  278. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts +87 -0
  279. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts.map +1 -0
  280. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js +366 -0
  281. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js.map +1 -0
  282. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts +74 -0
  283. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts.map +1 -0
  284. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js +91 -0
  285. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js.map +1 -0
  286. package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts +32 -0
  287. package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts.map +1 -0
  288. package/extensions/third-party/node_modules/grok-mermaid/dist/index.js +100 -0
  289. package/extensions/third-party/node_modules/grok-mermaid/dist/index.js.map +1 -0
  290. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts +62 -0
  291. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts.map +1 -0
  292. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js +324 -0
  293. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js.map +1 -0
  294. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts +12 -0
  295. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts.map +1 -0
  296. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js +194 -0
  297. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js.map +1 -0
  298. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts +87 -0
  299. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts.map +1 -0
  300. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js +881 -0
  301. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js.map +1 -0
  302. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts +83 -0
  303. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts.map +1 -0
  304. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js +1151 -0
  305. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js.map +1 -0
  306. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts +18 -0
  307. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts.map +1 -0
  308. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js +78 -0
  309. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js.map +1 -0
  310. package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts +42 -0
  311. package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts.map +1 -0
  312. package/extensions/third-party/node_modules/grok-mermaid/dist/types.js +1 -0
  313. package/extensions/third-party/node_modules/grok-mermaid/dist/types.js.map +1 -0
  314. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts +2 -0
  315. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts.map +1 -0
  316. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js +994 -0
  317. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js.map +1 -0
  318. package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts +18 -0
  319. package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts.map +1 -0
  320. package/extensions/third-party/node_modules/grok-mermaid/dist/width.js +76 -0
  321. package/extensions/third-party/node_modules/grok-mermaid/dist/width.js.map +1 -0
  322. package/extensions/third-party/node_modules/grok-mermaid/package.json +49 -0
  323. package/extensions/third-party/node_modules/grok-mermaid/src/ansi.ts +34 -0
  324. package/extensions/third-party/node_modules/grok-mermaid/src/canvas.ts +373 -0
  325. package/extensions/third-party/node_modules/grok-mermaid/src/graph.ts +142 -0
  326. package/extensions/third-party/node_modules/grok-mermaid/src/index.ts +104 -0
  327. package/extensions/third-party/node_modules/grok-mermaid/src/labels.ts +326 -0
  328. package/extensions/third-party/node_modules/grok-mermaid/src/layout-seq.ts +203 -0
  329. package/extensions/third-party/node_modules/grok-mermaid/src/layout.ts +1015 -0
  330. package/extensions/third-party/node_modules/grok-mermaid/src/parse.ts +1189 -0
  331. package/extensions/third-party/node_modules/grok-mermaid/src/source-box.ts +89 -0
  332. package/extensions/third-party/node_modules/grok-mermaid/src/types.ts +43 -0
  333. package/extensions/third-party/node_modules/grok-mermaid/src/width-data.ts +993 -0
  334. package/extensions/third-party/node_modules/grok-mermaid/src/width.ts +74 -0
  335. package/extensions/third-party/node_modules/highlight.js/CHANGES.md +3787 -0
  336. package/extensions/third-party/node_modules/highlight.js/LICENSE +29 -0
  337. package/extensions/third-party/node_modules/highlight.js/README.md +521 -0
  338. package/extensions/third-party/node_modules/highlight.js/SECURITY.md +19 -0
  339. package/extensions/third-party/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +310 -0
  340. package/extensions/third-party/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
  341. package/extensions/third-party/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
  342. package/extensions/third-party/node_modules/highlight.js/es/common.d.ts +3 -0
  343. package/extensions/third-party/node_modules/highlight.js/es/common.js +4 -0
  344. package/extensions/third-party/node_modules/highlight.js/es/core.d.ts +3 -0
  345. package/extensions/third-party/node_modules/highlight.js/es/core.js +4 -0
  346. package/extensions/third-party/node_modules/highlight.js/es/index.js +4 -0
  347. package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js +544 -0
  348. package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js.js +11 -0
  349. package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js +83 -0
  350. package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
  351. package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js +92 -0
  352. package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
  353. package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js +153 -0
  354. package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
  355. package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js +266 -0
  356. package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js.js +11 -0
  357. package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js +178 -0
  358. package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
  359. package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js +105 -0
  360. package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js.js +11 -0
  361. package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js +149 -0
  362. package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
  363. package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js +428 -0
  364. package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
  365. package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js +1040 -0
  366. package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
  367. package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js +124 -0
  368. package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
  369. package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
  370. package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
  371. package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js +231 -0
  372. package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
  373. package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
  374. package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
  375. package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js +178 -0
  376. package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
  377. package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js +78 -0
  378. package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
  379. package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js +68 -0
  380. package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js.js +11 -0
  381. package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js +188 -0
  382. package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
  383. package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js +409 -0
  384. package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js.js +11 -0
  385. package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js +236 -0
  386. package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js.js +11 -0
  387. package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js +39 -0
  388. package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
  389. package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
  390. package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
  391. package/extensions/third-party/node_modules/highlight.js/es/languages/c.js +411 -0
  392. package/extensions/third-party/node_modules/highlight.js/es/languages/c.js.js +11 -0
  393. package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js +160 -0
  394. package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js.js +11 -0
  395. package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js +99 -0
  396. package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
  397. package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js +140 -0
  398. package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
  399. package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js +67 -0
  400. package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js.js +11 -0
  401. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
  402. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
  403. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js +184 -0
  404. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
  405. package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js +68 -0
  406. package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
  407. package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js +368 -0
  408. package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
  409. package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js +445 -0
  410. package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js.js +11 -0
  411. package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js +140 -0
  412. package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js.js +11 -0
  413. package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js +637 -0
  414. package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
  415. package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js +100 -0
  416. package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
  417. package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js +329 -0
  418. package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
  419. package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js +418 -0
  420. package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
  421. package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js +65 -0
  422. package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js.js +11 -0
  423. package/extensions/third-party/node_modules/highlight.js/es/languages/css.js +960 -0
  424. package/extensions/third-party/node_modules/highlight.js/es/languages/css.js.js +11 -0
  425. package/extensions/third-party/node_modules/highlight.js/es/languages/d.js +272 -0
  426. package/extensions/third-party/node_modules/highlight.js/es/languages/d.js.js +11 -0
  427. package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js +293 -0
  428. package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js.js +11 -0
  429. package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js +246 -0
  430. package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
  431. package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js +65 -0
  432. package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js.js +11 -0
  433. package/extensions/third-party/node_modules/highlight.js/es/languages/django.js +75 -0
  434. package/extensions/third-party/node_modules/highlight.js/es/languages/django.js.js +11 -0
  435. package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js +133 -0
  436. package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js.js +11 -0
  437. package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
  438. package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
  439. package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js +165 -0
  440. package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js.js +11 -0
  441. package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
  442. package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
  443. package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js +157 -0
  444. package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js.js +11 -0
  445. package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js +47 -0
  446. package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js.js +11 -0
  447. package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js +54 -0
  448. package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
  449. package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js +286 -0
  450. package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
  451. package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js +143 -0
  452. package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js.js +11 -0
  453. package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js +29 -0
  454. package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js.js +11 -0
  455. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
  456. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
  457. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js +235 -0
  458. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
  459. package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js +580 -0
  460. package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js.js +11 -0
  461. package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js +39 -0
  462. package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js.js +11 -0
  463. package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js +79 -0
  464. package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js.js +11 -0
  465. package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js +574 -0
  466. package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
  467. package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js +113 -0
  468. package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js.js +11 -0
  469. package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js +639 -0
  470. package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
  471. package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js +181 -0
  472. package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js.js +11 -0
  473. package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js +306 -0
  474. package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
  475. package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js +189 -0
  476. package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
  477. package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js +120 -0
  478. package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
  479. package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js +128 -0
  480. package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
  481. package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js +3130 -0
  482. package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js.js +11 -0
  483. package/extensions/third-party/node_modules/highlight.js/es/languages/go.js +160 -0
  484. package/extensions/third-party/node_modules/highlight.js/es/languages/go.js.js +11 -0
  485. package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js +81 -0
  486. package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js.js +11 -0
  487. package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js +190 -0
  488. package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
  489. package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js +78 -0
  490. package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
  491. package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js +225 -0
  492. package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
  493. package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js +113 -0
  494. package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js.js +11 -0
  495. package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js +258 -0
  496. package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
  497. package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js +217 -0
  498. package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
  499. package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js +167 -0
  500. package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
  501. package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js +59 -0
  502. package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
  503. package/extensions/third-party/node_modules/highlight.js/es/languages/http.js +97 -0
  504. package/extensions/third-party/node_modules/highlight.js/es/languages/http.js.js +11 -0
  505. package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js +137 -0
  506. package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js.js +11 -0
  507. package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js +70 -0
  508. package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
  509. package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js +121 -0
  510. package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js.js +11 -0
  511. package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js +107 -0
  512. package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
  513. package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js +3205 -0
  514. package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
  515. package/extensions/third-party/node_modules/highlight.js/es/languages/java.js +314 -0
  516. package/extensions/third-party/node_modules/highlight.js/es/languages/java.js.js +11 -0
  517. package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js +772 -0
  518. package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
  519. package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
  520. package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
  521. package/extensions/third-party/node_modules/highlight.js/es/languages/json.js +63 -0
  522. package/extensions/third-party/node_modules/highlight.js/es/languages/json.js.js +11 -0
  523. package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js +51 -0
  524. package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
  525. package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js +442 -0
  526. package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js.js +11 -0
  527. package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js +288 -0
  528. package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
  529. package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js +171 -0
  530. package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
  531. package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js +278 -0
  532. package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js.js +11 -0
  533. package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js +31 -0
  534. package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
  535. package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js +98 -0
  536. package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
  537. package/extensions/third-party/node_modules/highlight.js/es/languages/less.js +1061 -0
  538. package/extensions/third-party/node_modules/highlight.js/es/languages/less.js.js +11 -0
  539. package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js +139 -0
  540. package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
  541. package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
  542. package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
  543. package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js +380 -0
  544. package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
  545. package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js +136 -0
  546. package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
  547. package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js +76 -0
  548. package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
  549. package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js +81 -0
  550. package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js.js +11 -0
  551. package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js +89 -0
  552. package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
  553. package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js +250 -0
  554. package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
  555. package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
  556. package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
  557. package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js +107 -0
  558. package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
  559. package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js +414 -0
  560. package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
  561. package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js +235 -0
  562. package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js.js +11 -0
  563. package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js +108 -0
  564. package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
  565. package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
  566. package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
  567. package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js +27 -0
  568. package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
  569. package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
  570. package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
  571. package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js +184 -0
  572. package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
  573. package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js +141 -0
  574. package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
  575. package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js +365 -0
  576. package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
  577. package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
  578. package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
  579. package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js +153 -0
  580. package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
  581. package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js +187 -0
  582. package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js.js +11 -0
  583. package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js +372 -0
  584. package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js.js +11 -0
  585. package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js +33 -0
  586. package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
  587. package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js +591 -0
  588. package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
  589. package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js +253 -0
  590. package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
  591. package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js +83 -0
  592. package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
  593. package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js +77 -0
  594. package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
  595. package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js +87 -0
  596. package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
  597. package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js +55 -0
  598. package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
  599. package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js +504 -0
  600. package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js.js +11 -0
  601. package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js +60 -0
  602. package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js.js +11 -0
  603. package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js +525 -0
  604. package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
  605. package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js +57 -0
  606. package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
  607. package/extensions/third-party/node_modules/highlight.js/es/languages/php.js +635 -0
  608. package/extensions/third-party/node_modules/highlight.js/es/languages/php.js.js +11 -0
  609. package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js +19 -0
  610. package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
  611. package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js +90 -0
  612. package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js.js +11 -0
  613. package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js +317 -0
  614. package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
  615. package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js +434 -0
  616. package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js.js +11 -0
  617. package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js +43 -0
  618. package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js.js +11 -0
  619. package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js +97 -0
  620. package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
  621. package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js +68 -0
  622. package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js.js +11 -0
  623. package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js +79 -0
  624. package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
  625. package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js +146 -0
  626. package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
  627. package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js +100 -0
  628. package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
  629. package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js +32 -0
  630. package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
  631. package/extensions/third-party/node_modules/highlight.js/es/languages/python.js +441 -0
  632. package/extensions/third-party/node_modules/highlight.js/es/languages/python.js.js +11 -0
  633. package/extensions/third-party/node_modules/highlight.js/es/languages/q.js +38 -0
  634. package/extensions/third-party/node_modules/highlight.js/es/languages/q.js.js +11 -0
  635. package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js +189 -0
  636. package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js.js +11 -0
  637. package/extensions/third-party/node_modules/highlight.js/es/languages/r.js +257 -0
  638. package/extensions/third-party/node_modules/highlight.js/es/languages/r.js.js +11 -0
  639. package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js +142 -0
  640. package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
  641. package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js +37 -0
  642. package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js.js +11 -0
  643. package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js +82 -0
  644. package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
  645. package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js +164 -0
  646. package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
  647. package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js +149 -0
  648. package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
  649. package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js +449 -0
  650. package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
  651. package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
  652. package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
  653. package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js +340 -0
  654. package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js.js +11 -0
  655. package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js +557 -0
  656. package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js.js +11 -0
  657. package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js +214 -0
  658. package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js.js +11 -0
  659. package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js +196 -0
  660. package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
  661. package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js +73 -0
  662. package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
  663. package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js +950 -0
  664. package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js.js +11 -0
  665. package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js +33 -0
  666. package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js.js +11 -0
  667. package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js +126 -0
  668. package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js.js +11 -0
  669. package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js +69 -0
  670. package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
  671. package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js +75 -0
  672. package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js.js +11 -0
  673. package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js +2828 -0
  674. package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
  675. package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js +693 -0
  676. package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js.js +11 -0
  677. package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js +521 -0
  678. package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js.js +11 -0
  679. package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js +53 -0
  680. package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js.js +11 -0
  681. package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js +67 -0
  682. package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js.js +11 -0
  683. package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js +1010 -0
  684. package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
  685. package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js +44 -0
  686. package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
  687. package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js +984 -0
  688. package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js.js +11 -0
  689. package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js +59 -0
  690. package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
  691. package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js +47 -0
  692. package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js.js +11 -0
  693. package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js +191 -0
  694. package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
  695. package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js +77 -0
  696. package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
  697. package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js +172 -0
  698. package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js.js +11 -0
  699. package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js +260 -0
  700. package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js.js +11 -0
  701. package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js +916 -0
  702. package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
  703. package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js +61 -0
  704. package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js.js +11 -0
  705. package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js +157 -0
  706. package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
  707. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
  708. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
  709. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js +220 -0
  710. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
  711. package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js +550 -0
  712. package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
  713. package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js +216 -0
  714. package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
  715. package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js +129 -0
  716. package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js.js +11 -0
  717. package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js +139 -0
  718. package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
  719. package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js +302 -0
  720. package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js.js +11 -0
  721. package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js +153 -0
  722. package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
  723. package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js +205 -0
  724. package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js.js +11 -0
  725. package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js +234 -0
  726. package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js.js +11 -0
  727. package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js +360 -0
  728. package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
  729. package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js +213 -0
  730. package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
  731. package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js +129 -0
  732. package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
  733. package/extensions/third-party/node_modules/highlight.js/es/package.json +1 -0
  734. package/extensions/third-party/node_modules/highlight.js/es/utils/regex.js +158 -0
  735. package/extensions/third-party/node_modules/highlight.js/lib/common.d.ts +3 -0
  736. package/extensions/third-party/node_modules/highlight.js/lib/common.js +42 -0
  737. package/extensions/third-party/node_modules/highlight.js/lib/core.d.ts +3 -0
  738. package/extensions/third-party/node_modules/highlight.js/lib/core.js +2603 -0
  739. package/extensions/third-party/node_modules/highlight.js/lib/index.js +199 -0
  740. package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js +544 -0
  741. package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
  742. package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js +83 -0
  743. package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
  744. package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
  745. package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
  746. package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
  747. package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
  748. package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js +266 -0
  749. package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
  750. package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
  751. package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
  752. package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js +105 -0
  753. package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
  754. package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js +149 -0
  755. package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
  756. package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js +428 -0
  757. package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
  758. package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js +1040 -0
  759. package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
  760. package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js +124 -0
  761. package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
  762. package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
  763. package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
  764. package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js +231 -0
  765. package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
  766. package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
  767. package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
  768. package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js +178 -0
  769. package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
  770. package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
  771. package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
  772. package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js +68 -0
  773. package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
  774. package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js +188 -0
  775. package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
  776. package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js +409 -0
  777. package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
  778. package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js +236 -0
  779. package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
  780. package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js +39 -0
  781. package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
  782. package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
  783. package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
  784. package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js +411 -0
  785. package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js.js +10 -0
  786. package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js +160 -0
  787. package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
  788. package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
  789. package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
  790. package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js +140 -0
  791. package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
  792. package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js +67 -0
  793. package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
  794. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
  795. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
  796. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js +184 -0
  797. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
  798. package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js +68 -0
  799. package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
  800. package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js +368 -0
  801. package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
  802. package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js +445 -0
  803. package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
  804. package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js +140 -0
  805. package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
  806. package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js +637 -0
  807. package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
  808. package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
  809. package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
  810. package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js +329 -0
  811. package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
  812. package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js +418 -0
  813. package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
  814. package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js +65 -0
  815. package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
  816. package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js +960 -0
  817. package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js.js +10 -0
  818. package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js +272 -0
  819. package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js.js +10 -0
  820. package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js +293 -0
  821. package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
  822. package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js +246 -0
  823. package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
  824. package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js +65 -0
  825. package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
  826. package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js +75 -0
  827. package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js.js +10 -0
  828. package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js +133 -0
  829. package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
  830. package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
  831. package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
  832. package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js +165 -0
  833. package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
  834. package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
  835. package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
  836. package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js +157 -0
  837. package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
  838. package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js +47 -0
  839. package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
  840. package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js +54 -0
  841. package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
  842. package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js +286 -0
  843. package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
  844. package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js +143 -0
  845. package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
  846. package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js +29 -0
  847. package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
  848. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
  849. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
  850. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js +235 -0
  851. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
  852. package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js +580 -0
  853. package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
  854. package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js +39 -0
  855. package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
  856. package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js +79 -0
  857. package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
  858. package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js +574 -0
  859. package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
  860. package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js +113 -0
  861. package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js.js +10 -0
  862. package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js +639 -0
  863. package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
  864. package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js +181 -0
  865. package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
  866. package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js +306 -0
  867. package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
  868. package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js +189 -0
  869. package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
  870. package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js +120 -0
  871. package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
  872. package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js +128 -0
  873. package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
  874. package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js +3130 -0
  875. package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
  876. package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js +160 -0
  877. package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js.js +10 -0
  878. package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js +81 -0
  879. package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
  880. package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js +190 -0
  881. package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
  882. package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js +78 -0
  883. package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
  884. package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js +225 -0
  885. package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
  886. package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js +113 -0
  887. package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
  888. package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
  889. package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
  890. package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js +217 -0
  891. package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
  892. package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js +167 -0
  893. package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
  894. package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js +59 -0
  895. package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
  896. package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js +97 -0
  897. package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js.js +10 -0
  898. package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js +137 -0
  899. package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
  900. package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js +70 -0
  901. package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
  902. package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js +121 -0
  903. package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
  904. package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
  905. package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
  906. package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
  907. package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
  908. package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js +314 -0
  909. package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js.js +10 -0
  910. package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js +772 -0
  911. package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
  912. package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
  913. package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
  914. package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js +63 -0
  915. package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js.js +10 -0
  916. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js +51 -0
  917. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
  918. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js +442 -0
  919. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
  920. package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js +288 -0
  921. package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
  922. package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js +171 -0
  923. package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
  924. package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js +278 -0
  925. package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
  926. package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js +31 -0
  927. package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
  928. package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js +98 -0
  929. package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
  930. package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js +1061 -0
  931. package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js.js +10 -0
  932. package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js +139 -0
  933. package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
  934. package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
  935. package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
  936. package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js +380 -0
  937. package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
  938. package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js +136 -0
  939. package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
  940. package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js +76 -0
  941. package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
  942. package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js +81 -0
  943. package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
  944. package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js +89 -0
  945. package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
  946. package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js +250 -0
  947. package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
  948. package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
  949. package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
  950. package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js +107 -0
  951. package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
  952. package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js +414 -0
  953. package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
  954. package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js +235 -0
  955. package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
  956. package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js +108 -0
  957. package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
  958. package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
  959. package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
  960. package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js +27 -0
  961. package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
  962. package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
  963. package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
  964. package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js +184 -0
  965. package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
  966. package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
  967. package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
  968. package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js +365 -0
  969. package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
  970. package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
  971. package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
  972. package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js +153 -0
  973. package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
  974. package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js +187 -0
  975. package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
  976. package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js +372 -0
  977. package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
  978. package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
  979. package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
  980. package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js +591 -0
  981. package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
  982. package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
  983. package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
  984. package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
  985. package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
  986. package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js +77 -0
  987. package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
  988. package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js +87 -0
  989. package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
  990. package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js +55 -0
  991. package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
  992. package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js +504 -0
  993. package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
  994. package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js +60 -0
  995. package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
  996. package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js +525 -0
  997. package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
  998. package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js +57 -0
  999. package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
  1000. package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js +635 -0
  1001. package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js.js +10 -0
  1002. package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
  1003. package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
  1004. package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js +90 -0
  1005. package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
  1006. package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js +317 -0
  1007. package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
  1008. package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js +434 -0
  1009. package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
  1010. package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js +43 -0
  1011. package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
  1012. package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js +97 -0
  1013. package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
  1014. package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js +68 -0
  1015. package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
  1016. package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
  1017. package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
  1018. package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js +146 -0
  1019. package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
  1020. package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js +100 -0
  1021. package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
  1022. package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
  1023. package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
  1024. package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js +441 -0
  1025. package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js.js +10 -0
  1026. package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js +38 -0
  1027. package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js.js +10 -0
  1028. package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js +189 -0
  1029. package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
  1030. package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js +257 -0
  1031. package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js.js +10 -0
  1032. package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
  1033. package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
  1034. package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js +37 -0
  1035. package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
  1036. package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
  1037. package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
  1038. package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js +164 -0
  1039. package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
  1040. package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js +149 -0
  1041. package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
  1042. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js +449 -0
  1043. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
  1044. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
  1045. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
  1046. package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js +340 -0
  1047. package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
  1048. package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js +557 -0
  1049. package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
  1050. package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js +214 -0
  1051. package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
  1052. package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js +196 -0
  1053. package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
  1054. package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js +73 -0
  1055. package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
  1056. package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js +950 -0
  1057. package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
  1058. package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js +33 -0
  1059. package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
  1060. package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js +126 -0
  1061. package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
  1062. package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js +69 -0
  1063. package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
  1064. package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js +75 -0
  1065. package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
  1066. package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js +2828 -0
  1067. package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
  1068. package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js +693 -0
  1069. package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
  1070. package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js +521 -0
  1071. package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
  1072. package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js +53 -0
  1073. package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
  1074. package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js +67 -0
  1075. package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
  1076. package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js +1010 -0
  1077. package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
  1078. package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js +44 -0
  1079. package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
  1080. package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js +984 -0
  1081. package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
  1082. package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js +59 -0
  1083. package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
  1084. package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js +47 -0
  1085. package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
  1086. package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js +191 -0
  1087. package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
  1088. package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js +77 -0
  1089. package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
  1090. package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js +172 -0
  1091. package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
  1092. package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js +260 -0
  1093. package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
  1094. package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js +916 -0
  1095. package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
  1096. package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js +61 -0
  1097. package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
  1098. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
  1099. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
  1100. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
  1101. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
  1102. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
  1103. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
  1104. package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js +550 -0
  1105. package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
  1106. package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js +216 -0
  1107. package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
  1108. package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js +129 -0
  1109. package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
  1110. package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js +139 -0
  1111. package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
  1112. package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js +302 -0
  1113. package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
  1114. package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
  1115. package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
  1116. package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js +205 -0
  1117. package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
  1118. package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js +234 -0
  1119. package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
  1120. package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js +360 -0
  1121. package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
  1122. package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js +213 -0
  1123. package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
  1124. package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js +129 -0
  1125. package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
  1126. package/extensions/third-party/node_modules/highlight.js/package.json +119 -0
  1127. package/extensions/third-party/node_modules/highlight.js/scss/1c-light.scss +107 -0
  1128. package/extensions/third-party/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
  1129. package/extensions/third-party/node_modules/highlight.js/scss/a11y-light.scss +94 -0
  1130. package/extensions/third-party/node_modules/highlight.js/scss/agate.scss +127 -0
  1131. package/extensions/third-party/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
  1132. package/extensions/third-party/node_modules/highlight.js/scss/androidstudio.scss +60 -0
  1133. package/extensions/third-party/node_modules/highlight.js/scss/arduino-light.scss +78 -0
  1134. package/extensions/third-party/node_modules/highlight.js/scss/arta.scss +66 -0
  1135. package/extensions/third-party/node_modules/highlight.js/scss/ascetic.scss +45 -0
  1136. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
  1137. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
  1138. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
  1139. package/extensions/third-party/node_modules/highlight.js/scss/base16/3024.scss +163 -0
  1140. package/extensions/third-party/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
  1141. package/extensions/third-party/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
  1142. package/extensions/third-party/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
  1143. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
  1144. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
  1145. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
  1146. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
  1147. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
  1148. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
  1149. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
  1150. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
  1151. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
  1152. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
  1153. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
  1154. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
  1155. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
  1156. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
  1157. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
  1158. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
  1159. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
  1160. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
  1161. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
  1162. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
  1163. package/extensions/third-party/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
  1164. package/extensions/third-party/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
  1165. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
  1166. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
  1167. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
  1168. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
  1169. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
  1170. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
  1171. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
  1172. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
  1173. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
  1174. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
  1175. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
  1176. package/extensions/third-party/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
  1177. package/extensions/third-party/node_modules/highlight.js/scss/base16/bright.scss +163 -0
  1178. package/extensions/third-party/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
  1179. package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
  1180. package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
  1181. package/extensions/third-party/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
  1182. package/extensions/third-party/node_modules/highlight.js/scss/base16/circus.scss +163 -0
  1183. package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
  1184. package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
  1185. package/extensions/third-party/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
  1186. package/extensions/third-party/node_modules/highlight.js/scss/base16/colors.scss +163 -0
  1187. package/extensions/third-party/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
  1188. package/extensions/third-party/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
  1189. package/extensions/third-party/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
  1190. package/extensions/third-party/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
  1191. package/extensions/third-party/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
  1192. package/extensions/third-party/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
  1193. package/extensions/third-party/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
  1194. package/extensions/third-party/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
  1195. package/extensions/third-party/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
  1196. package/extensions/third-party/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
  1197. package/extensions/third-party/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
  1198. package/extensions/third-party/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
  1199. package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
  1200. package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
  1201. package/extensions/third-party/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
  1202. package/extensions/third-party/node_modules/highlight.js/scss/base16/embers.scss +163 -0
  1203. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
  1204. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
  1205. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
  1206. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
  1207. package/extensions/third-party/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
  1208. package/extensions/third-party/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
  1209. package/extensions/third-party/node_modules/highlight.js/scss/base16/eva.scss +163 -0
  1210. package/extensions/third-party/node_modules/highlight.js/scss/base16/flat.scss +163 -0
  1211. package/extensions/third-party/node_modules/highlight.js/scss/base16/framer.scss +163 -0
  1212. package/extensions/third-party/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
  1213. package/extensions/third-party/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
  1214. package/extensions/third-party/node_modules/highlight.js/scss/base16/github.scss +163 -0
  1215. package/extensions/third-party/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
  1216. package/extensions/third-party/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
  1217. package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
  1218. package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
  1219. package/extensions/third-party/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
  1220. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
  1221. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
  1222. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
  1223. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
  1224. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
  1225. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
  1226. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
  1227. package/extensions/third-party/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
  1228. package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
  1229. package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
  1230. package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
  1231. package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
  1232. package/extensions/third-party/node_modules/highlight.js/scss/base16/helios.scss +163 -0
  1233. package/extensions/third-party/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
  1234. package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
  1235. package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
  1236. package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
  1237. package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
  1238. package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
  1239. package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
  1240. package/extensions/third-party/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
  1241. package/extensions/third-party/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
  1242. package/extensions/third-party/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
  1243. package/extensions/third-party/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
  1244. package/extensions/third-party/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
  1245. package/extensions/third-party/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
  1246. package/extensions/third-party/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
  1247. package/extensions/third-party/node_modules/highlight.js/scss/base16/materia.scss +163 -0
  1248. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
  1249. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
  1250. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
  1251. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
  1252. package/extensions/third-party/node_modules/highlight.js/scss/base16/material.scss +163 -0
  1253. package/extensions/third-party/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
  1254. package/extensions/third-party/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
  1255. package/extensions/third-party/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
  1256. package/extensions/third-party/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
  1257. package/extensions/third-party/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
  1258. package/extensions/third-party/node_modules/highlight.js/scss/base16/nord.scss +163 -0
  1259. package/extensions/third-party/node_modules/highlight.js/scss/base16/nova.scss +163 -0
  1260. package/extensions/third-party/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
  1261. package/extensions/third-party/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
  1262. package/extensions/third-party/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
  1263. package/extensions/third-party/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
  1264. package/extensions/third-party/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
  1265. package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
  1266. package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
  1267. package/extensions/third-party/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
  1268. package/extensions/third-party/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
  1269. package/extensions/third-party/node_modules/highlight.js/scss/base16/phd.scss +163 -0
  1270. package/extensions/third-party/node_modules/highlight.js/scss/base16/pico.scss +163 -0
  1271. package/extensions/third-party/node_modules/highlight.js/scss/base16/pop.scss +163 -0
  1272. package/extensions/third-party/node_modules/highlight.js/scss/base16/porple.scss +163 -0
  1273. package/extensions/third-party/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
  1274. package/extensions/third-party/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
  1275. package/extensions/third-party/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
  1276. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
  1277. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
  1278. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
  1279. package/extensions/third-party/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
  1280. package/extensions/third-party/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
  1281. package/extensions/third-party/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
  1282. package/extensions/third-party/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
  1283. package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
  1284. package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
  1285. package/extensions/third-party/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
  1286. package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
  1287. package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
  1288. package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
  1289. package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
  1290. package/extensions/third-party/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
  1291. package/extensions/third-party/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
  1292. package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
  1293. package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
  1294. package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
  1295. package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
  1296. package/extensions/third-party/node_modules/highlight.js/scss/base16/tango.scss +163 -0
  1297. package/extensions/third-party/node_modules/highlight.js/scss/base16/tender.scss +163 -0
  1298. package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
  1299. package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
  1300. package/extensions/third-party/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
  1301. package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
  1302. package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
  1303. package/extensions/third-party/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
  1304. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
  1305. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
  1306. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
  1307. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
  1308. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
  1309. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
  1310. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
  1311. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
  1312. package/extensions/third-party/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
  1313. package/extensions/third-party/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
  1314. package/extensions/third-party/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
  1315. package/extensions/third-party/node_modules/highlight.js/scss/brown-paper.scss +63 -0
  1316. package/extensions/third-party/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
  1317. package/extensions/third-party/node_modules/highlight.js/scss/color-brewer.scss +66 -0
  1318. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-cherry.scss +104 -0
  1319. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-dimmer.scss +104 -0
  1320. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-icecap.scss +104 -0
  1321. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-saturated.scss +104 -0
  1322. package/extensions/third-party/node_modules/highlight.js/scss/dark.scss +62 -0
  1323. package/extensions/third-party/node_modules/highlight.js/scss/default.scss +117 -0
  1324. package/extensions/third-party/node_modules/highlight.js/scss/devibeans.scss +90 -0
  1325. package/extensions/third-party/node_modules/highlight.js/scss/docco.scss +83 -0
  1326. package/extensions/third-party/node_modules/highlight.js/scss/equinox.scss +71 -0
  1327. package/extensions/third-party/node_modules/highlight.js/scss/far.scss +67 -0
  1328. package/extensions/third-party/node_modules/highlight.js/scss/felipec.scss +94 -0
  1329. package/extensions/third-party/node_modules/highlight.js/scss/foundation.scss +80 -0
  1330. package/extensions/third-party/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
  1331. package/extensions/third-party/node_modules/highlight.js/scss/github-dark.scss +118 -0
  1332. package/extensions/third-party/node_modules/highlight.js/scss/github.scss +118 -0
  1333. package/extensions/third-party/node_modules/highlight.js/scss/gml.scss +72 -0
  1334. package/extensions/third-party/node_modules/highlight.js/scss/googlecode.scss +79 -0
  1335. package/extensions/third-party/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
  1336. package/extensions/third-party/node_modules/highlight.js/scss/gradient-light.scss +90 -0
  1337. package/extensions/third-party/node_modules/highlight.js/scss/grayscale.scss +89 -0
  1338. package/extensions/third-party/node_modules/highlight.js/scss/hybrid.scss +88 -0
  1339. package/extensions/third-party/node_modules/highlight.js/scss/idea.scss +86 -0
  1340. package/extensions/third-party/node_modules/highlight.js/scss/intellij-light.scss +107 -0
  1341. package/extensions/third-party/node_modules/highlight.js/scss/ir-black.scss +66 -0
  1342. package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
  1343. package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
  1344. package/extensions/third-party/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
  1345. package/extensions/third-party/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
  1346. package/extensions/third-party/node_modules/highlight.js/scss/lightfair.scss +81 -0
  1347. package/extensions/third-party/node_modules/highlight.js/scss/lioshi.scss +76 -0
  1348. package/extensions/third-party/node_modules/highlight.js/scss/magula.scss +66 -0
  1349. package/extensions/third-party/node_modules/highlight.js/scss/mono-blue.scss +56 -0
  1350. package/extensions/third-party/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
  1351. package/extensions/third-party/node_modules/highlight.js/scss/monokai.scss +70 -0
  1352. package/extensions/third-party/node_modules/highlight.js/scss/night-owl.scss +174 -0
  1353. package/extensions/third-party/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
  1354. package/extensions/third-party/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
  1355. package/extensions/third-party/node_modules/highlight.js/scss/nord.scss +275 -0
  1356. package/extensions/third-party/node_modules/highlight.js/scss/obsidian.scss +79 -0
  1357. package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
  1358. package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
  1359. package/extensions/third-party/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
  1360. package/extensions/third-party/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
  1361. package/extensions/third-party/node_modules/highlight.js/scss/pojoaque.scss +76 -0
  1362. package/extensions/third-party/node_modules/highlight.js/scss/purebasic.scss +103 -0
  1363. package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
  1364. package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
  1365. package/extensions/third-party/node_modules/highlight.js/scss/rainbow.scss +77 -0
  1366. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-dawn.scss +107 -0
  1367. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-moon.scss +109 -0
  1368. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine.scss +109 -0
  1369. package/extensions/third-party/node_modules/highlight.js/scss/routeros.scss +86 -0
  1370. package/extensions/third-party/node_modules/highlight.js/scss/school-book.scss +62 -0
  1371. package/extensions/third-party/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
  1372. package/extensions/third-party/node_modules/highlight.js/scss/srcery.scss +89 -0
  1373. package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
  1374. package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
  1375. package/extensions/third-party/node_modules/highlight.js/scss/sunburst.scss +89 -0
  1376. package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
  1377. package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
  1378. package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
  1379. package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
  1380. package/extensions/third-party/node_modules/highlight.js/scss/vs-dark.scss +61 -0
  1381. package/extensions/third-party/node_modules/highlight.js/scss/vs.scss +63 -0
  1382. package/extensions/third-party/node_modules/highlight.js/scss/vs2015.scss +100 -0
  1383. package/extensions/third-party/node_modules/highlight.js/scss/xcode.scss +90 -0
  1384. package/extensions/third-party/node_modules/highlight.js/scss/xt256.scss +79 -0
  1385. package/extensions/third-party/node_modules/highlight.js/styles/1c-light.css +107 -0
  1386. package/extensions/third-party/node_modules/highlight.js/styles/1c-light.min.css +9 -0
  1387. package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.css +94 -0
  1388. package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
  1389. package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.css +94 -0
  1390. package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
  1391. package/extensions/third-party/node_modules/highlight.js/styles/agate.css +127 -0
  1392. package/extensions/third-party/node_modules/highlight.js/styles/agate.min.css +20 -0
  1393. package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.css +75 -0
  1394. package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
  1395. package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.css +60 -0
  1396. package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
  1397. package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.css +78 -0
  1398. package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
  1399. package/extensions/third-party/node_modules/highlight.js/styles/arta.css +66 -0
  1400. package/extensions/third-party/node_modules/highlight.js/styles/arta.min.css +1 -0
  1401. package/extensions/third-party/node_modules/highlight.js/styles/ascetic.css +45 -0
  1402. package/extensions/third-party/node_modules/highlight.js/styles/ascetic.min.css +1 -0
  1403. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
  1404. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  1405. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
  1406. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
  1407. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.css +90 -0
  1408. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
  1409. package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.css +163 -0
  1410. package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
  1411. package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.css +163 -0
  1412. package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
  1413. package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
  1414. package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
  1415. package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.css +163 -0
  1416. package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
  1417. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
  1418. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  1419. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
  1420. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  1421. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
  1422. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  1423. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
  1424. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  1425. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
  1426. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  1427. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
  1428. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  1429. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
  1430. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  1431. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
  1432. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  1433. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
  1434. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  1435. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
  1436. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  1437. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
  1438. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  1439. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
  1440. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  1441. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
  1442. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  1443. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
  1444. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  1445. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
  1446. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  1447. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
  1448. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  1449. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
  1450. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  1451. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
  1452. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  1453. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
  1454. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  1455. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
  1456. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  1457. package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.css +163 -0
  1458. package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
  1459. package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.css +163 -0
  1460. package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
  1461. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
  1462. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  1463. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
  1464. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  1465. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
  1466. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  1467. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
  1468. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  1469. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
  1470. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  1471. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
  1472. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  1473. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
  1474. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  1475. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
  1476. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  1477. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
  1478. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  1479. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
  1480. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  1481. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
  1482. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
  1483. package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.css +163 -0
  1484. package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
  1485. package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.css +163 -0
  1486. package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
  1487. package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
  1488. package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
  1489. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
  1490. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  1491. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
  1492. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
  1493. package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.css +163 -0
  1494. package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
  1495. package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.css +163 -0
  1496. package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
  1497. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
  1498. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
  1499. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
  1500. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
  1501. package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
  1502. package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
  1503. package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.css +163 -0
  1504. package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
  1505. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
  1506. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
  1507. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
  1508. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
  1509. package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.css +163 -0
  1510. package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
  1511. package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.css +163 -0
  1512. package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
  1513. package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
  1514. package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
  1515. package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
  1516. package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
  1517. package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
  1518. package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
  1519. package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.css +163 -0
  1520. package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
  1521. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
  1522. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
  1523. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.css +163 -0
  1524. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
  1525. package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
  1526. package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
  1527. package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.css +163 -0
  1528. package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
  1529. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
  1530. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
  1531. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
  1532. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
  1533. package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.css +163 -0
  1534. package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
  1535. package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.css +163 -0
  1536. package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
  1537. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
  1538. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  1539. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
  1540. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  1541. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
  1542. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  1543. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
  1544. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  1545. package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.css +163 -0
  1546. package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
  1547. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
  1548. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
  1549. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.css +163 -0
  1550. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
  1551. package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.css +163 -0
  1552. package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
  1553. package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.css +163 -0
  1554. package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
  1555. package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
  1556. package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  1557. package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
  1558. package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
  1559. package/extensions/third-party/node_modules/highlight.js/styles/base16/github.css +163 -0
  1560. package/extensions/third-party/node_modules/highlight.js/styles/base16/github.min.css +7 -0
  1561. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
  1562. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
  1563. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.css +163 -0
  1564. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
  1565. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
  1566. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  1567. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
  1568. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  1569. package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
  1570. package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
  1571. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
  1572. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  1573. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
  1574. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  1575. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
  1576. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  1577. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
  1578. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  1579. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
  1580. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  1581. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
  1582. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  1583. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
  1584. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  1585. package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
  1586. package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
  1587. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
  1588. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  1589. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
  1590. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  1591. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
  1592. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  1593. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
  1594. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
  1595. package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.css +163 -0
  1596. package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
  1597. package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
  1598. package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
  1599. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
  1600. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  1601. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
  1602. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
  1603. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
  1604. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  1605. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
  1606. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  1607. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
  1608. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
  1609. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
  1610. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
  1611. package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
  1612. package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
  1613. package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
  1614. package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
  1615. package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.css +163 -0
  1616. package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
  1617. package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.css +163 -0
  1618. package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
  1619. package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
  1620. package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
  1621. package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
  1622. package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
  1623. package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
  1624. package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
  1625. package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.css +163 -0
  1626. package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
  1627. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
  1628. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
  1629. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
  1630. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
  1631. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
  1632. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
  1633. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
  1634. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
  1635. package/extensions/third-party/node_modules/highlight.js/styles/base16/material.css +163 -0
  1636. package/extensions/third-party/node_modules/highlight.js/styles/base16/material.min.css +7 -0
  1637. package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
  1638. package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  1639. package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
  1640. package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
  1641. package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.css +163 -0
  1642. package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
  1643. package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.css +163 -0
  1644. package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
  1645. package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.css +163 -0
  1646. package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
  1647. package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.css +163 -0
  1648. package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
  1649. package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.css +163 -0
  1650. package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
  1651. package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.css +163 -0
  1652. package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
  1653. package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
  1654. package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  1655. package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.css +163 -0
  1656. package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
  1657. package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.css +163 -0
  1658. package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
  1659. package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
  1660. package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  1661. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
  1662. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  1663. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
  1664. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  1665. package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
  1666. package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
  1667. package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.css +163 -0
  1668. package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
  1669. package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.css +163 -0
  1670. package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
  1671. package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.css +163 -0
  1672. package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
  1673. package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.css +163 -0
  1674. package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
  1675. package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.css +163 -0
  1676. package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
  1677. package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.css +163 -0
  1678. package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
  1679. package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
  1680. package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
  1681. package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
  1682. package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
  1683. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
  1684. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  1685. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
  1686. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  1687. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
  1688. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
  1689. package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
  1690. package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
  1691. package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
  1692. package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
  1693. package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
  1694. package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
  1695. package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
  1696. package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  1697. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
  1698. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
  1699. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
  1700. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
  1701. package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
  1702. package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
  1703. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
  1704. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  1705. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
  1706. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
  1707. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
  1708. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  1709. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
  1710. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
  1711. package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
  1712. package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
  1713. package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
  1714. package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
  1715. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
  1716. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  1717. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
  1718. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  1719. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
  1720. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  1721. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
  1722. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  1723. package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.css +163 -0
  1724. package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
  1725. package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.css +163 -0
  1726. package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
  1727. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
  1728. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  1729. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
  1730. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
  1731. package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.css +163 -0
  1732. package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
  1733. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
  1734. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  1735. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
  1736. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  1737. package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
  1738. package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
  1739. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
  1740. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  1741. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
  1742. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
  1743. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
  1744. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  1745. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
  1746. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
  1747. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
  1748. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  1749. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
  1750. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  1751. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
  1752. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  1753. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
  1754. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
  1755. package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.css +163 -0
  1756. package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
  1757. package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
  1758. package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  1759. package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
  1760. package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
  1761. package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.css +63 -0
  1762. package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
  1763. package/extensions/third-party/node_modules/highlight.js/styles/brown-papersq.png +0 -0
  1764. package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.css +57 -0
  1765. package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
  1766. package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.css +66 -0
  1767. package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
  1768. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.css +104 -0
  1769. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.min.css +1 -0
  1770. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.css +104 -0
  1771. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.min.css +1 -0
  1772. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.css +104 -0
  1773. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.min.css +1 -0
  1774. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.css +104 -0
  1775. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.min.css +1 -0
  1776. package/extensions/third-party/node_modules/highlight.js/styles/dark.css +62 -0
  1777. package/extensions/third-party/node_modules/highlight.js/styles/dark.min.css +1 -0
  1778. package/extensions/third-party/node_modules/highlight.js/styles/default.css +117 -0
  1779. package/extensions/third-party/node_modules/highlight.js/styles/default.min.css +9 -0
  1780. package/extensions/third-party/node_modules/highlight.js/styles/devibeans.css +90 -0
  1781. package/extensions/third-party/node_modules/highlight.js/styles/devibeans.min.css +7 -0
  1782. package/extensions/third-party/node_modules/highlight.js/styles/docco.css +83 -0
  1783. package/extensions/third-party/node_modules/highlight.js/styles/docco.min.css +1 -0
  1784. package/extensions/third-party/node_modules/highlight.js/styles/equinox.css +71 -0
  1785. package/extensions/third-party/node_modules/highlight.js/styles/equinox.min.css +1 -0
  1786. package/extensions/third-party/node_modules/highlight.js/styles/far.css +67 -0
  1787. package/extensions/third-party/node_modules/highlight.js/styles/far.min.css +1 -0
  1788. package/extensions/third-party/node_modules/highlight.js/styles/felipec.css +94 -0
  1789. package/extensions/third-party/node_modules/highlight.js/styles/felipec.min.css +7 -0
  1790. package/extensions/third-party/node_modules/highlight.js/styles/foundation.css +80 -0
  1791. package/extensions/third-party/node_modules/highlight.js/styles/foundation.min.css +1 -0
  1792. package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
  1793. package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  1794. package/extensions/third-party/node_modules/highlight.js/styles/github-dark.css +118 -0
  1795. package/extensions/third-party/node_modules/highlight.js/styles/github-dark.min.css +10 -0
  1796. package/extensions/third-party/node_modules/highlight.js/styles/github.css +118 -0
  1797. package/extensions/third-party/node_modules/highlight.js/styles/github.min.css +10 -0
  1798. package/extensions/third-party/node_modules/highlight.js/styles/gml.css +72 -0
  1799. package/extensions/third-party/node_modules/highlight.js/styles/gml.min.css +1 -0
  1800. package/extensions/third-party/node_modules/highlight.js/styles/googlecode.css +79 -0
  1801. package/extensions/third-party/node_modules/highlight.js/styles/googlecode.min.css +1 -0
  1802. package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.css +90 -0
  1803. package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
  1804. package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.css +90 -0
  1805. package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
  1806. package/extensions/third-party/node_modules/highlight.js/styles/grayscale.css +89 -0
  1807. package/extensions/third-party/node_modules/highlight.js/styles/grayscale.min.css +1 -0
  1808. package/extensions/third-party/node_modules/highlight.js/styles/hybrid.css +88 -0
  1809. package/extensions/third-party/node_modules/highlight.js/styles/hybrid.min.css +1 -0
  1810. package/extensions/third-party/node_modules/highlight.js/styles/idea.css +86 -0
  1811. package/extensions/third-party/node_modules/highlight.js/styles/idea.min.css +1 -0
  1812. package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.css +107 -0
  1813. package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
  1814. package/extensions/third-party/node_modules/highlight.js/styles/ir-black.css +66 -0
  1815. package/extensions/third-party/node_modules/highlight.js/styles/ir-black.min.css +1 -0
  1816. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
  1817. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  1818. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
  1819. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
  1820. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
  1821. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
  1822. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.css +69 -0
  1823. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
  1824. package/extensions/third-party/node_modules/highlight.js/styles/lightfair.css +81 -0
  1825. package/extensions/third-party/node_modules/highlight.js/styles/lightfair.min.css +1 -0
  1826. package/extensions/third-party/node_modules/highlight.js/styles/lioshi.css +76 -0
  1827. package/extensions/third-party/node_modules/highlight.js/styles/lioshi.min.css +1 -0
  1828. package/extensions/third-party/node_modules/highlight.js/styles/magula.css +66 -0
  1829. package/extensions/third-party/node_modules/highlight.js/styles/magula.min.css +1 -0
  1830. package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.css +56 -0
  1831. package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
  1832. package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
  1833. package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
  1834. package/extensions/third-party/node_modules/highlight.js/styles/monokai.css +70 -0
  1835. package/extensions/third-party/node_modules/highlight.js/styles/monokai.min.css +1 -0
  1836. package/extensions/third-party/node_modules/highlight.js/styles/night-owl.css +174 -0
  1837. package/extensions/third-party/node_modules/highlight.js/styles/night-owl.min.css +1 -0
  1838. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
  1839. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
  1840. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.css +104 -0
  1841. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
  1842. package/extensions/third-party/node_modules/highlight.js/styles/nord.css +275 -0
  1843. package/extensions/third-party/node_modules/highlight.js/styles/nord.min.css +1 -0
  1844. package/extensions/third-party/node_modules/highlight.js/styles/obsidian.css +79 -0
  1845. package/extensions/third-party/node_modules/highlight.js/styles/obsidian.min.css +1 -0
  1846. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
  1847. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  1848. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
  1849. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
  1850. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
  1851. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
  1852. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.css +67 -0
  1853. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
  1854. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.css +76 -0
  1855. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
  1856. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
  1857. package/extensions/third-party/node_modules/highlight.js/styles/purebasic.css +103 -0
  1858. package/extensions/third-party/node_modules/highlight.js/styles/purebasic.min.css +1 -0
  1859. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
  1860. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
  1861. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
  1862. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
  1863. package/extensions/third-party/node_modules/highlight.js/styles/rainbow.css +77 -0
  1864. package/extensions/third-party/node_modules/highlight.js/styles/rainbow.min.css +1 -0
  1865. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.css +107 -0
  1866. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.min.css +4 -0
  1867. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.css +109 -0
  1868. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.min.css +4 -0
  1869. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.css +109 -0
  1870. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.min.css +4 -0
  1871. package/extensions/third-party/node_modules/highlight.js/styles/routeros.css +86 -0
  1872. package/extensions/third-party/node_modules/highlight.js/styles/routeros.min.css +1 -0
  1873. package/extensions/third-party/node_modules/highlight.js/styles/school-book.css +62 -0
  1874. package/extensions/third-party/node_modules/highlight.js/styles/school-book.min.css +1 -0
  1875. package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
  1876. package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
  1877. package/extensions/third-party/node_modules/highlight.js/styles/srcery.css +89 -0
  1878. package/extensions/third-party/node_modules/highlight.js/styles/srcery.min.css +1 -0
  1879. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
  1880. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  1881. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
  1882. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
  1883. package/extensions/third-party/node_modules/highlight.js/styles/sunburst.css +89 -0
  1884. package/extensions/third-party/node_modules/highlight.js/styles/sunburst.min.css +1 -0
  1885. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
  1886. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  1887. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
  1888. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
  1889. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
  1890. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  1891. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
  1892. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  1893. package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.css +61 -0
  1894. package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.min.css +1 -0
  1895. package/extensions/third-party/node_modules/highlight.js/styles/vs.css +63 -0
  1896. package/extensions/third-party/node_modules/highlight.js/styles/vs.min.css +1 -0
  1897. package/extensions/third-party/node_modules/highlight.js/styles/vs2015.css +100 -0
  1898. package/extensions/third-party/node_modules/highlight.js/styles/vs2015.min.css +1 -0
  1899. package/extensions/third-party/node_modules/highlight.js/styles/xcode.css +90 -0
  1900. package/extensions/third-party/node_modules/highlight.js/styles/xcode.min.css +1 -0
  1901. package/extensions/third-party/node_modules/highlight.js/styles/xt256.css +79 -0
  1902. package/extensions/third-party/node_modules/highlight.js/styles/xt256.min.css +1 -0
  1903. package/extensions/third-party/node_modules/highlight.js/types/index.d.ts +274 -0
  1904. package/extensions/third-party/node_modules/jiti/LICENSE +21 -0
  1905. package/extensions/third-party/node_modules/jiti/README.md +258 -0
  1906. package/extensions/third-party/node_modules/jiti/dist/babel.cjs +257 -0
  1907. package/extensions/third-party/node_modules/jiti/dist/jiti.cjs +1 -0
  1908. package/extensions/third-party/node_modules/jiti/lib/jiti-cli.mjs +34 -0
  1909. package/extensions/third-party/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
  1910. package/extensions/third-party/node_modules/jiti/lib/jiti-native.mjs +121 -0
  1911. package/extensions/third-party/node_modules/jiti/lib/jiti-register.d.mts +1 -0
  1912. package/extensions/third-party/node_modules/jiti/lib/jiti-register.mjs +4 -0
  1913. package/extensions/third-party/node_modules/jiti/lib/jiti-static.mjs +23 -0
  1914. package/extensions/third-party/node_modules/jiti/lib/jiti.cjs +30 -0
  1915. package/extensions/third-party/node_modules/jiti/lib/jiti.d.cts +8 -0
  1916. package/extensions/third-party/node_modules/jiti/lib/jiti.d.mts +8 -0
  1917. package/extensions/third-party/node_modules/jiti/lib/jiti.mjs +29 -0
  1918. package/extensions/third-party/node_modules/jiti/lib/types.d.ts +420 -0
  1919. package/extensions/third-party/node_modules/jiti/package.json +146 -0
  1920. package/extensions/third-party/node_modules/pi-subagents/CHANGELOG.md +1905 -0
  1921. package/extensions/third-party/node_modules/pi-subagents/LICENSE +21 -0
  1922. package/extensions/third-party/node_modules/pi-subagents/README.md +122 -0
  1923. package/extensions/third-party/node_modules/pi-subagents/agents/delegate.md +14 -0
  1924. package/extensions/third-party/node_modules/pi-subagents/agents/oracle.md +78 -0
  1925. package/extensions/third-party/node_modules/pi-subagents/agents/researcher.md +52 -0
  1926. package/extensions/third-party/node_modules/pi-subagents/agents/reviewer.md +79 -0
  1927. package/extensions/third-party/node_modules/pi-subagents/agents/scout.md +50 -0
  1928. package/extensions/third-party/node_modules/pi-subagents/agents/worker.md +59 -0
  1929. package/extensions/third-party/node_modules/pi-subagents/async-retention-discovery-worker.mjs +180 -0
  1930. package/extensions/third-party/node_modules/pi-subagents/docs/agents.md +383 -0
  1931. package/extensions/third-party/node_modules/pi-subagents/docs/configuration.md +457 -0
  1932. package/extensions/third-party/node_modules/pi-subagents/docs/extension-api.md +385 -0
  1933. package/extensions/third-party/node_modules/pi-subagents/docs/missions.md +121 -0
  1934. package/extensions/third-party/node_modules/pi-subagents/docs/models.md +194 -0
  1935. package/extensions/third-party/node_modules/pi-subagents/docs/observability.md +250 -0
  1936. package/extensions/third-party/node_modules/pi-subagents/docs/tool-reference.md +359 -0
  1937. package/extensions/third-party/node_modules/pi-subagents/docs/watchdog.md +176 -0
  1938. package/extensions/third-party/node_modules/pi-subagents/docs/workflows.md +331 -0
  1939. package/extensions/third-party/node_modules/pi-subagents/index.ts +1 -0
  1940. package/extensions/third-party/node_modules/pi-subagents/inspector-runner.mjs +11 -0
  1941. package/extensions/third-party/node_modules/pi-subagents/install.mjs +93 -0
  1942. package/extensions/third-party/node_modules/pi-subagents/package.json +106 -0
  1943. package/extensions/third-party/node_modules/pi-subagents/prompts/gather-context-and-clarify.md +13 -0
  1944. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-cleanup.md +59 -0
  1945. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-research.md +50 -0
  1946. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-review.md +54 -0
  1947. package/extensions/third-party/node_modules/pi-subagents/prompts/review-loop.md +43 -0
  1948. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/SKILL.md +45 -0
  1949. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/constraints-and-recipes.md +258 -0
  1950. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/execution-controls.md +443 -0
  1951. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/management-authoring-rpc.md +161 -0
  1952. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/multi-lane-orchestration.md +39 -0
  1953. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/prompting-and-roles.md +260 -0
  1954. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-management.ts +1029 -0
  1955. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-memory.ts +254 -0
  1956. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-refinements.ts +624 -0
  1957. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-scope.ts +6 -0
  1958. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-selection.ts +25 -0
  1959. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-serializer.ts +165 -0
  1960. package/extensions/third-party/node_modules/pi-subagents/src/agents/agents.ts +2055 -0
  1961. package/extensions/third-party/node_modules/pi-subagents/src/agents/chain-serializer.ts +280 -0
  1962. package/extensions/third-party/node_modules/pi-subagents/src/agents/frontmatter.ts +153 -0
  1963. package/extensions/third-party/node_modules/pi-subagents/src/agents/identity.ts +30 -0
  1964. package/extensions/third-party/node_modules/pi-subagents/src/agents/proactive-skills.ts +194 -0
  1965. package/extensions/third-party/node_modules/pi-subagents/src/agents/skills.ts +754 -0
  1966. package/extensions/third-party/node_modules/pi-subagents/src/api/background-work.ts +197 -0
  1967. package/extensions/third-party/node_modules/pi-subagents/src/api/capability-ceiling.ts +17 -0
  1968. package/extensions/third-party/node_modules/pi-subagents/src/api/control-channel.ts +4 -0
  1969. package/extensions/third-party/node_modules/pi-subagents/src/api/delegation.ts +119 -0
  1970. package/extensions/third-party/node_modules/pi-subagents/src/api/external-job-provider.ts +186 -0
  1971. package/extensions/third-party/node_modules/pi-subagents/src/api/external-runs.ts +219 -0
  1972. package/extensions/third-party/node_modules/pi-subagents/src/api/intercom-bridge.ts +3 -0
  1973. package/extensions/third-party/node_modules/pi-subagents/src/api/pi-args.ts +5 -0
  1974. package/extensions/third-party/node_modules/pi-subagents/src/api/preflight.ts +437 -0
  1975. package/extensions/third-party/node_modules/pi-subagents/src/api/project-panes.ts +30 -0
  1976. package/extensions/third-party/node_modules/pi-subagents/src/api/shared-types.ts +21 -0
  1977. package/extensions/third-party/node_modules/pi-subagents/src/extension/config.ts +162 -0
  1978. package/extensions/third-party/node_modules/pi-subagents/src/extension/control-notices.ts +58 -0
  1979. package/extensions/third-party/node_modules/pi-subagents/src/extension/doctor.ts +267 -0
  1980. package/extensions/third-party/node_modules/pi-subagents/src/extension/fanout-child.ts +202 -0
  1981. package/extensions/third-party/node_modules/pi-subagents/src/extension/index.ts +1006 -0
  1982. package/extensions/third-party/node_modules/pi-subagents/src/extension/public-execution.ts +133 -0
  1983. package/extensions/third-party/node_modules/pi-subagents/src/extension/rpc.ts +652 -0
  1984. package/extensions/third-party/node_modules/pi-subagents/src/extension/schemas.ts +379 -0
  1985. package/extensions/third-party/node_modules/pi-subagents/src/extension/steering-notices.ts +35 -0
  1986. package/extensions/third-party/node_modules/pi-subagents/src/extension/subagent-guide.ts +39 -0
  1987. package/extensions/third-party/node_modules/pi-subagents/src/extension/tool-description.ts +197 -0
  1988. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/actions.ts +234 -0
  1989. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/client.ts +130 -0
  1990. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/inspector-runner.ts +155 -0
  1991. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/project-panes.ts +546 -0
  1992. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/shell-command.ts +16 -0
  1993. package/extensions/third-party/node_modules/pi-subagents/src/integrations/herdr-status.ts +330 -0
  1994. package/extensions/third-party/node_modules/pi-subagents/src/intercom/intercom-bridge.ts +191 -0
  1995. package/extensions/third-party/node_modules/pi-subagents/src/intercom/native-supervisor-channel.ts +812 -0
  1996. package/extensions/third-party/node_modules/pi-subagents/src/intercom/result-intercom.ts +421 -0
  1997. package/extensions/third-party/node_modules/pi-subagents/src/missions/actions.ts +433 -0
  1998. package/extensions/third-party/node_modules/pi-subagents/src/missions/goal-driver.ts +164 -0
  1999. package/extensions/third-party/node_modules/pi-subagents/src/missions/lifecycle.ts +367 -0
  2000. package/extensions/third-party/node_modules/pi-subagents/src/missions/store.ts +584 -0
  2001. package/extensions/third-party/node_modules/pi-subagents/src/missions/types.ts +190 -0
  2002. package/extensions/third-party/node_modules/pi-subagents/src/missions/workflow-state.ts +260 -0
  2003. package/extensions/third-party/node_modules/pi-subagents/src/policy/authority.ts +46 -0
  2004. package/extensions/third-party/node_modules/pi-subagents/src/profiles/profiles.ts +663 -0
  2005. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-async-capacity.ts +431 -0
  2006. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-run-index.ts +139 -0
  2007. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-execution.ts +1739 -0
  2008. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-job-tracker.ts +692 -0
  2009. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-resume.ts +601 -0
  2010. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-retention.ts +886 -0
  2011. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status-snapshot.ts +277 -0
  2012. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status.ts +577 -0
  2013. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/auto-drain.ts +67 -0
  2014. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-append.ts +316 -0
  2015. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-root-attachment.ts +199 -0
  2016. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-batcher.ts +168 -0
  2017. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-dedupe.ts +58 -0
  2018. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-replay.ts +287 -0
  2019. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/control-channel.ts +679 -0
  2020. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/fleet-view.ts +604 -0
  2021. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/index-segment.ts +59 -0
  2022. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/inspect-rpc.ts +443 -0
  2023. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/notify.ts +358 -0
  2024. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/owned-process-tree.ts +104 -0
  2025. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/parallel-groups.ts +45 -0
  2026. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/process-terminal.ts +294 -0
  2027. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-files.ts +505 -0
  2028. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-watcher.ts +760 -0
  2029. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/resume-guidance.ts +56 -0
  2030. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/retained-children.ts +135 -0
  2031. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-query.ts +7 -0
  2032. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-resolver.ts +175 -0
  2033. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-status.ts +632 -0
  2034. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/scheduled-runs.ts +823 -0
  2035. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/stale-run-reconciler.ts +416 -0
  2036. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/steering.ts +249 -0
  2037. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-runner.ts +5179 -0
  2038. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-wait.ts +702 -0
  2039. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/terminal-run-index.ts +129 -0
  2040. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/top-level-async.ts +14 -0
  2041. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-completions.ts +166 -0
  2042. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-config.ts +36 -0
  2043. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-subscriptions.ts +464 -0
  2044. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-tool.ts +36 -0
  2045. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-dismiss-action.ts +86 -0
  2046. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-steering-action.ts +262 -0
  2047. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-stop-action.ts +65 -0
  2048. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/execution.ts +2196 -0
  2049. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-control.ts +144 -0
  2050. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-history.ts +137 -0
  2051. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/prompt-audit.ts +172 -0
  2052. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/subagent-executor.ts +5736 -0
  2053. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-detach-reconcile.ts +194 -0
  2054. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-foreground-steering.ts +188 -0
  2055. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/acceptance.ts +1374 -0
  2056. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/agent-contract.ts +38 -0
  2057. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/capability-ceiling.ts +209 -0
  2058. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/chain-outputs.ts +116 -0
  2059. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/child-protocol.ts +401 -0
  2060. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/completion-guard.ts +201 -0
  2061. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/context-mode.ts +44 -0
  2062. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/dynamic-fanout.ts +297 -0
  2063. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-cli-runner.ts +134 -0
  2064. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-bridge.ts +444 -0
  2065. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-runner.ts +286 -0
  2066. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/llm-intent-arbiter.ts +302 -0
  2067. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/long-running-guard.ts +220 -0
  2068. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +420 -0
  2069. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-fallback.ts +432 -0
  2070. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-scope.ts +138 -0
  2071. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-events.ts +1080 -0
  2072. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-path.ts +52 -0
  2073. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-render.ts +123 -0
  2074. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/orca-progress-tabs.ts +437 -0
  2075. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/owner-lifeline.ts +104 -0
  2076. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-handoff.ts +280 -0
  2077. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-utils.ts +250 -0
  2078. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/permissions.ts +99 -0
  2079. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-args.ts +856 -0
  2080. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-spawn.ts +163 -0
  2081. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/process-signal.ts +19 -0
  2082. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-fanout-budget.ts +280 -0
  2083. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-history.ts +181 -0
  2084. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/runtime-acknowledged-extensions.ts +71 -0
  2085. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/session-lease.ts +293 -0
  2086. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/single-output.ts +237 -0
  2087. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/spawn-budget.ts +128 -0
  2088. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/startup-transport.ts +158 -0
  2089. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/structured-output.ts +182 -0
  2090. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-control.ts +269 -0
  2091. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-prompt-runtime.ts +685 -0
  2092. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-startup-retry.ts +116 -0
  2093. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/task-intent.ts +197 -0
  2094. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-availability.ts +83 -0
  2095. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-budget.ts +80 -0
  2096. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-timeout.ts +93 -0
  2097. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/turn-budget.ts +98 -0
  2098. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/usage-budget.ts +65 -0
  2099. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/workflow-graph.ts +209 -0
  2100. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/worktree.ts +784 -0
  2101. package/extensions/third-party/node_modules/pi-subagents/src/shared/accessible-dir.ts +47 -0
  2102. package/extensions/third-party/node_modules/pi-subagents/src/shared/agent-stream-options.ts +5 -0
  2103. package/extensions/third-party/node_modules/pi-subagents/src/shared/artifacts.ts +281 -0
  2104. package/extensions/third-party/node_modules/pi-subagents/src/shared/atomic-json.ts +81 -0
  2105. package/extensions/third-party/node_modules/pi-subagents/src/shared/capacity-resilient-json.ts +102 -0
  2106. package/extensions/third-party/node_modules/pi-subagents/src/shared/child-transcript.ts +264 -0
  2107. package/extensions/third-party/node_modules/pi-subagents/src/shared/completion-owner.ts +14 -0
  2108. package/extensions/third-party/node_modules/pi-subagents/src/shared/display-text.ts +150 -0
  2109. package/extensions/third-party/node_modules/pi-subagents/src/shared/file-coalescer.ts +49 -0
  2110. package/extensions/third-party/node_modules/pi-subagents/src/shared/file-system-retry.ts +95 -0
  2111. package/extensions/third-party/node_modules/pi-subagents/src/shared/fork-context.ts +268 -0
  2112. package/extensions/third-party/node_modules/pi-subagents/src/shared/formatters.ts +131 -0
  2113. package/extensions/third-party/node_modules/pi-subagents/src/shared/jsonl-writer.ts +81 -0
  2114. package/extensions/third-party/node_modules/pi-subagents/src/shared/launch-contract.ts +124 -0
  2115. package/extensions/third-party/node_modules/pi-subagents/src/shared/model-info.ts +81 -0
  2116. package/extensions/third-party/node_modules/pi-subagents/src/shared/node-executable.ts +21 -0
  2117. package/extensions/third-party/node_modules/pi-subagents/src/shared/post-exit-stdio-guard.ts +85 -0
  2118. package/extensions/third-party/node_modules/pi-subagents/src/shared/prompt-resources.ts +11 -0
  2119. package/extensions/third-party/node_modules/pi-subagents/src/shared/session-identity.ts +10 -0
  2120. package/extensions/third-party/node_modules/pi-subagents/src/shared/session-tokens.ts +44 -0
  2121. package/extensions/third-party/node_modules/pi-subagents/src/shared/settings.ts +490 -0
  2122. package/extensions/third-party/node_modules/pi-subagents/src/shared/status-format.ts +55 -0
  2123. package/extensions/third-party/node_modules/pi-subagents/src/shared/types.ts +2307 -0
  2124. package/extensions/third-party/node_modules/pi-subagents/src/shared/utf8.ts +11 -0
  2125. package/extensions/third-party/node_modules/pi-subagents/src/shared/utils.ts +633 -0
  2126. package/extensions/third-party/node_modules/pi-subagents/src/shared/watch-strategy.ts +10 -0
  2127. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-adapters.ts +434 -0
  2128. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-json.ts +108 -0
  2129. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-request.ts +166 -0
  2130. package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-template-bridge.ts +383 -0
  2131. package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-workflows.ts +287 -0
  2132. package/extensions/third-party/node_modules/pi-subagents/src/slash/selector.ts +147 -0
  2133. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-bridge.ts +193 -0
  2134. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-commands.ts +1049 -0
  2135. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-live-state.ts +299 -0
  2136. package/extensions/third-party/node_modules/pi-subagents/src/slash/subagents-admin.ts +432 -0
  2137. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-status.ts +691 -0
  2138. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-transcript.ts +530 -0
  2139. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet.ts +1362 -0
  2140. package/extensions/third-party/node_modules/pi-subagents/src/tui/render-helpers.ts +80 -0
  2141. package/extensions/third-party/node_modules/pi-subagents/src/tui/render.ts +2224 -0
  2142. package/extensions/third-party/node_modules/pi-subagents/src/types/pi-runtime-compat.d.ts +8 -0
  2143. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/change-signature.ts +221 -0
  2144. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/child-status.ts +205 -0
  2145. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/emission-guard.ts +123 -0
  2146. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/lsp-diagnostics.ts +538 -0
  2147. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/model-selection.ts +167 -0
  2148. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/permission-arbiter.ts +146 -0
  2149. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-child.ts +117 -0
  2150. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-main.ts +440 -0
  2151. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/render.ts +54 -0
  2152. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/review.ts +303 -0
  2153. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/runtime.ts +868 -0
  2154. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/scope.ts +62 -0
  2155. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/settings.ts +568 -0
  2156. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/tool-actions.ts +155 -0
  2157. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/turn-delta.ts +161 -0
  2158. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/types.ts +198 -0
  2159. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/warning-format.ts +73 -0
  2160. package/extensions/third-party/node_modules/pi-subagents/src/workflows/chat-progress.ts +148 -0
  2161. package/extensions/third-party/node_modules/pi-subagents/src/workflows/scripted-workflow.ts +1069 -0
  2162. package/extensions/third-party/node_modules/typebox/build/compile/code.d.mts +12 -0
  2163. package/extensions/third-party/node_modules/typebox/build/compile/code.mjs +65 -0
  2164. package/extensions/third-party/node_modules/typebox/build/compile/compile.d.mts +6 -0
  2165. package/extensions/third-party/node_modules/typebox/build/compile/compile.mjs +12 -0
  2166. package/extensions/third-party/node_modules/typebox/build/compile/index.d.mts +8 -0
  2167. package/extensions/third-party/node_modules/typebox/build/compile/index.mjs +14 -0
  2168. package/extensions/third-party/node_modules/typebox/build/compile/validator.d.mts +43 -0
  2169. package/extensions/third-party/node_modules/typebox/build/compile/validator.mjs +121 -0
  2170. package/extensions/third-party/node_modules/typebox/build/error/errors.d.mts +214 -0
  2171. package/extensions/third-party/node_modules/typebox/build/error/errors.mjs +18 -0
  2172. package/extensions/third-party/node_modules/typebox/build/error/index.d.mts +1 -0
  2173. package/extensions/third-party/node_modules/typebox/build/error/index.mjs +1 -0
  2174. package/extensions/third-party/node_modules/typebox/build/format/_idna.d.mts +2 -0
  2175. package/extensions/third-party/node_modules/typebox/build/format/_idna.mjs +216 -0
  2176. package/extensions/third-party/node_modules/typebox/build/format/_puny.d.mts +1 -0
  2177. package/extensions/third-party/node_modules/typebox/build/format/_puny.mjs +74 -0
  2178. package/extensions/third-party/node_modules/typebox/build/format/_registry.d.mts +15 -0
  2179. package/extensions/third-party/node_modules/typebox/build/format/_registry.mjs +96 -0
  2180. package/extensions/third-party/node_modules/typebox/build/format/date.d.mts +6 -0
  2181. package/extensions/third-party/node_modules/typebox/build/format/date.mjs +19 -0
  2182. package/extensions/third-party/node_modules/typebox/build/format/date_time.d.mts +6 -0
  2183. package/extensions/third-party/node_modules/typebox/build/format/date_time.mjs +11 -0
  2184. package/extensions/third-party/node_modules/typebox/build/format/duration.d.mts +5 -0
  2185. package/extensions/third-party/node_modules/typebox/build/format/duration.mjs +8 -0
  2186. package/extensions/third-party/node_modules/typebox/build/format/email.d.mts +5 -0
  2187. package/extensions/third-party/node_modules/typebox/build/format/email.mjs +8 -0
  2188. package/extensions/third-party/node_modules/typebox/build/format/format.d.mts +22 -0
  2189. package/extensions/third-party/node_modules/typebox/build/format/format.mjs +22 -0
  2190. package/extensions/third-party/node_modules/typebox/build/format/hostname.d.mts +7 -0
  2191. package/extensions/third-party/node_modules/typebox/build/format/hostname.mjs +18 -0
  2192. package/extensions/third-party/node_modules/typebox/build/format/idn_email.d.mts +5 -0
  2193. package/extensions/third-party/node_modules/typebox/build/format/idn_email.mjs +8 -0
  2194. package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
  2195. package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
  2196. package/extensions/third-party/node_modules/typebox/build/format/index.d.mts +4 -0
  2197. package/extensions/third-party/node_modules/typebox/build/format/index.mjs +4 -0
  2198. package/extensions/third-party/node_modules/typebox/build/format/ipv4.d.mts +6 -0
  2199. package/extensions/third-party/node_modules/typebox/build/format/ipv4.mjs +38 -0
  2200. package/extensions/third-party/node_modules/typebox/build/format/ipv6.d.mts +5 -0
  2201. package/extensions/third-party/node_modules/typebox/build/format/ipv6.mjs +67 -0
  2202. package/extensions/third-party/node_modules/typebox/build/format/iri.d.mts +5 -0
  2203. package/extensions/third-party/node_modules/typebox/build/format/iri.mjs +13 -0
  2204. package/extensions/third-party/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
  2205. package/extensions/third-party/node_modules/typebox/build/format/iri_reference.mjs +60 -0
  2206. package/extensions/third-party/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
  2207. package/extensions/third-party/node_modules/typebox/build/format/json_pointer.mjs +9 -0
  2208. package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
  2209. package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
  2210. package/extensions/third-party/node_modules/typebox/build/format/regex.d.mts +6 -0
  2211. package/extensions/third-party/node_modules/typebox/build/format/regex.mjs +17 -0
  2212. package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
  2213. package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
  2214. package/extensions/third-party/node_modules/typebox/build/format/time.d.mts +5 -0
  2215. package/extensions/third-party/node_modules/typebox/build/format/time.mjs +27 -0
  2216. package/extensions/third-party/node_modules/typebox/build/format/uri.d.mts +5 -0
  2217. package/extensions/third-party/node_modules/typebox/build/format/uri.mjs +135 -0
  2218. package/extensions/third-party/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
  2219. package/extensions/third-party/node_modules/typebox/build/format/uri_reference.mjs +9 -0
  2220. package/extensions/third-party/node_modules/typebox/build/format/uri_template.d.mts +6 -0
  2221. package/extensions/third-party/node_modules/typebox/build/format/uri_template.mjs +10 -0
  2222. package/extensions/third-party/node_modules/typebox/build/format/url.d.mts +6 -0
  2223. package/extensions/third-party/node_modules/typebox/build/format/url.mjs +9 -0
  2224. package/extensions/third-party/node_modules/typebox/build/format/uuid.d.mts +6 -0
  2225. package/extensions/third-party/node_modules/typebox/build/format/uuid.mjs +9 -0
  2226. package/extensions/third-party/node_modules/typebox/build/guard/emit.d.mts +58 -0
  2227. package/extensions/third-party/node_modules/typebox/build/guard/emit.mjs +194 -0
  2228. package/extensions/third-party/node_modules/typebox/build/guard/globals.d.mts +35 -0
  2229. package/extensions/third-party/node_modules/typebox/build/guard/globals.mjs +90 -0
  2230. package/extensions/third-party/node_modules/typebox/build/guard/guard.d.mts +69 -0
  2231. package/extensions/third-party/node_modules/typebox/build/guard/guard.mjs +217 -0
  2232. package/extensions/third-party/node_modules/typebox/build/guard/index.d.mts +6 -0
  2233. package/extensions/third-party/node_modules/typebox/build/guard/index.mjs +6 -0
  2234. package/extensions/third-party/node_modules/typebox/build/guard/native.d.mts +20 -0
  2235. package/extensions/third-party/node_modules/typebox/build/guard/native.mjs +60 -0
  2236. package/extensions/third-party/node_modules/typebox/build/guard/string.d.mts +6 -0
  2237. package/extensions/third-party/node_modules/typebox/build/guard/string.mjs +164 -0
  2238. package/extensions/third-party/node_modules/typebox/build/index.d.mts +8 -0
  2239. package/extensions/third-party/node_modules/typebox/build/index.mjs +14 -0
  2240. package/extensions/third-party/node_modules/typebox/build/schema/build.d.mts +39 -0
  2241. package/extensions/third-party/node_modules/typebox/build/schema/build.mjs +118 -0
  2242. package/extensions/third-party/node_modules/typebox/build/schema/check.d.mts +6 -0
  2243. package/extensions/third-party/node_modules/typebox/build/schema/check.mjs +14 -0
  2244. package/extensions/third-party/node_modules/typebox/build/schema/compile.d.mts +22 -0
  2245. package/extensions/third-party/node_modules/typebox/build/schema/compile.mjs +46 -0
  2246. package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
  2247. package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
  2248. package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
  2249. package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
  2250. package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
  2251. package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
  2252. package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
  2253. package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
  2254. package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
  2255. package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
  2256. package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
  2257. package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
  2258. package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
  2259. package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
  2260. package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
  2261. package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
  2262. package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
  2263. package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
  2264. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
  2265. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
  2266. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
  2267. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
  2268. package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
  2269. package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
  2270. package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
  2271. package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
  2272. package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
  2273. package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
  2274. package/extensions/third-party/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
  2275. package/extensions/third-party/node_modules/typebox/build/schema/engine/const.mjs +30 -0
  2276. package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
  2277. package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
  2278. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
  2279. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
  2280. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
  2281. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
  2282. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
  2283. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
  2284. package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
  2285. package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
  2286. package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
  2287. package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
  2288. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
  2289. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
  2290. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
  2291. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
  2292. package/extensions/third-party/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
  2293. package/extensions/third-party/node_modules/typebox/build/schema/engine/format.mjs +26 -0
  2294. package/extensions/third-party/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
  2295. package/extensions/third-party/node_modules/typebox/build/schema/engine/if.mjs +47 -0
  2296. package/extensions/third-party/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
  2297. package/extensions/third-party/node_modules/typebox/build/schema/engine/index.mjs +55 -0
  2298. package/extensions/third-party/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
  2299. package/extensions/third-party/node_modules/typebox/build/schema/engine/items.mjs +68 -0
  2300. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
  2301. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
  2302. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
  2303. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
  2304. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
  2305. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
  2306. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
  2307. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
  2308. package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
  2309. package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
  2310. package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
  2311. package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
  2312. package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
  2313. package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
  2314. package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
  2315. package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
  2316. package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
  2317. package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
  2318. package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
  2319. package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
  2320. package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
  2321. package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
  2322. package/extensions/third-party/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
  2323. package/extensions/third-party/node_modules/typebox/build/schema/engine/not.mjs +37 -0
  2324. package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
  2325. package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
  2326. package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
  2327. package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
  2328. package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
  2329. package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
  2330. package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
  2331. package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
  2332. package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
  2333. package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
  2334. package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
  2335. package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
  2336. package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
  2337. package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
  2338. package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
  2339. package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
  2340. package/extensions/third-party/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
  2341. package/extensions/third-party/node_modules/typebox/build/schema/engine/required.mjs +32 -0
  2342. package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
  2343. package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
  2344. package/extensions/third-party/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
  2345. package/extensions/third-party/node_modules/typebox/build/schema/engine/type.mjs +74 -0
  2346. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
  2347. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
  2348. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
  2349. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
  2350. package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
  2351. package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
  2352. package/extensions/third-party/node_modules/typebox/build/schema/errors.d.mts +6 -0
  2353. package/extensions/third-party/node_modules/typebox/build/schema/errors.mjs +24 -0
  2354. package/extensions/third-party/node_modules/typebox/build/schema/index.d.mts +3 -0
  2355. package/extensions/third-party/node_modules/typebox/build/schema/index.mjs +9 -0
  2356. package/extensions/third-party/node_modules/typebox/build/schema/parse.d.mts +13 -0
  2357. package/extensions/third-party/node_modules/typebox/build/schema/parse.mjs +27 -0
  2358. package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
  2359. package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
  2360. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
  2361. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
  2362. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
  2363. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
  2364. package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
  2365. package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
  2366. package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
  2367. package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
  2368. package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
  2369. package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
  2370. package/extensions/third-party/node_modules/typebox/build/schema/schema.d.mts +10 -0
  2371. package/extensions/third-party/node_modules/typebox/build/schema/schema.mjs +10 -0
  2372. package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
  2373. package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
  2374. package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
  2375. package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
  2376. package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
  2377. package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
  2378. package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
  2379. package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
  2380. package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
  2381. package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
  2382. package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
  2383. package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
  2384. package/extensions/third-party/node_modules/typebox/build/schema/static/const.d.mts +1 -0
  2385. package/extensions/third-party/node_modules/typebox/build/schema/static/const.mjs +2 -0
  2386. package/extensions/third-party/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
  2387. package/extensions/third-party/node_modules/typebox/build/schema/static/enum.mjs +2 -0
  2388. package/extensions/third-party/node_modules/typebox/build/schema/static/if.d.mts +15 -0
  2389. package/extensions/third-party/node_modules/typebox/build/schema/static/if.mjs +2 -0
  2390. package/extensions/third-party/node_modules/typebox/build/schema/static/index.d.mts +1 -0
  2391. package/extensions/third-party/node_modules/typebox/build/schema/static/index.mjs +1 -0
  2392. package/extensions/third-party/node_modules/typebox/build/schema/static/items.d.mts +7 -0
  2393. package/extensions/third-party/node_modules/typebox/build/schema/static/items.mjs +2 -0
  2394. package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
  2395. package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
  2396. package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
  2397. package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
  2398. package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
  2399. package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
  2400. package/extensions/third-party/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
  2401. package/extensions/third-party/node_modules/typebox/build/schema/static/properties.mjs +2 -0
  2402. package/extensions/third-party/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
  2403. package/extensions/third-party/node_modules/typebox/build/schema/static/ref.mjs +3 -0
  2404. package/extensions/third-party/node_modules/typebox/build/schema/static/required.d.mts +3 -0
  2405. package/extensions/third-party/node_modules/typebox/build/schema/static/required.mjs +3 -0
  2406. package/extensions/third-party/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
  2407. package/extensions/third-party/node_modules/typebox/build/schema/static/schema.mjs +2 -0
  2408. package/extensions/third-party/node_modules/typebox/build/schema/static/static.d.mts +4 -0
  2409. package/extensions/third-party/node_modules/typebox/build/schema/static/static.mjs +3 -0
  2410. package/extensions/third-party/node_modules/typebox/build/schema/static/type.d.mts +4 -0
  2411. package/extensions/third-party/node_modules/typebox/build/schema/static/type.mjs +3 -0
  2412. package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
  2413. package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
  2414. package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
  2415. package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
  2416. package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
  2417. package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
  2418. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
  2419. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
  2420. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
  2421. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
  2422. package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
  2423. package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
  2424. package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
  2425. package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
  2426. package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
  2427. package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
  2428. package/extensions/third-party/node_modules/typebox/build/schema/types/const.d.mts +9 -0
  2429. package/extensions/third-party/node_modules/typebox/build/schema/types/const.mjs +12 -0
  2430. package/extensions/third-party/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
  2431. package/extensions/third-party/node_modules/typebox/build/schema/types/contains.mjs +14 -0
  2432. package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
  2433. package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
  2434. package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
  2435. package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
  2436. package/extensions/third-party/node_modules/typebox/build/schema/types/default.d.mts +9 -0
  2437. package/extensions/third-party/node_modules/typebox/build/schema/types/default.mjs +12 -0
  2438. package/extensions/third-party/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
  2439. package/extensions/third-party/node_modules/typebox/build/schema/types/defs.mjs +12 -0
  2440. package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
  2441. package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
  2442. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
  2443. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
  2444. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
  2445. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
  2446. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
  2447. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
  2448. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
  2449. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
  2450. package/extensions/third-party/node_modules/typebox/build/schema/types/else.d.mts +9 -0
  2451. package/extensions/third-party/node_modules/typebox/build/schema/types/else.mjs +14 -0
  2452. package/extensions/third-party/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
  2453. package/extensions/third-party/node_modules/typebox/build/schema/types/enum.mjs +13 -0
  2454. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
  2455. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
  2456. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
  2457. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
  2458. package/extensions/third-party/node_modules/typebox/build/schema/types/format.d.mts +9 -0
  2459. package/extensions/third-party/node_modules/typebox/build/schema/types/format.mjs +13 -0
  2460. package/extensions/third-party/node_modules/typebox/build/schema/types/id.d.mts +9 -0
  2461. package/extensions/third-party/node_modules/typebox/build/schema/types/id.mjs +13 -0
  2462. package/extensions/third-party/node_modules/typebox/build/schema/types/if.d.mts +9 -0
  2463. package/extensions/third-party/node_modules/typebox/build/schema/types/if.mjs +14 -0
  2464. package/extensions/third-party/node_modules/typebox/build/schema/types/index.d.mts +54 -0
  2465. package/extensions/third-party/node_modules/typebox/build/schema/types/index.mjs +60 -0
  2466. package/extensions/third-party/node_modules/typebox/build/schema/types/items.d.mts +19 -0
  2467. package/extensions/third-party/node_modules/typebox/build/schema/types/items.mjs +26 -0
  2468. package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
  2469. package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
  2470. package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
  2471. package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
  2472. package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
  2473. package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
  2474. package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
  2475. package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
  2476. package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
  2477. package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
  2478. package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
  2479. package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
  2480. package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
  2481. package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
  2482. package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
  2483. package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
  2484. package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
  2485. package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
  2486. package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
  2487. package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
  2488. package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
  2489. package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
  2490. package/extensions/third-party/node_modules/typebox/build/schema/types/not.d.mts +9 -0
  2491. package/extensions/third-party/node_modules/typebox/build/schema/types/not.mjs +14 -0
  2492. package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
  2493. package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
  2494. package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
  2495. package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
  2496. package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
  2497. package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
  2498. package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
  2499. package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
  2500. package/extensions/third-party/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
  2501. package/extensions/third-party/node_modules/typebox/build/schema/types/properties.mjs +15 -0
  2502. package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
  2503. package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
  2504. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
  2505. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
  2506. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
  2507. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
  2508. package/extensions/third-party/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
  2509. package/extensions/third-party/node_modules/typebox/build/schema/types/ref.mjs +13 -0
  2510. package/extensions/third-party/node_modules/typebox/build/schema/types/required.d.mts +9 -0
  2511. package/extensions/third-party/node_modules/typebox/build/schema/types/required.mjs +14 -0
  2512. package/extensions/third-party/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
  2513. package/extensions/third-party/node_modules/typebox/build/schema/types/schema.mjs +14 -0
  2514. package/extensions/third-party/node_modules/typebox/build/schema/types/then.d.mts +9 -0
  2515. package/extensions/third-party/node_modules/typebox/build/schema/types/then.mjs +14 -0
  2516. package/extensions/third-party/node_modules/typebox/build/schema/types/type.d.mts +9 -0
  2517. package/extensions/third-party/node_modules/typebox/build/schema/types/type.mjs +15 -0
  2518. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
  2519. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
  2520. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
  2521. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
  2522. package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
  2523. package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
  2524. package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
  2525. package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
  2526. package/extensions/third-party/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
  2527. package/extensions/third-party/node_modules/typebox/build/system/arguments/index.mjs +1 -0
  2528. package/extensions/third-party/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
  2529. package/extensions/third-party/node_modules/typebox/build/system/environment/environment.mjs +1 -0
  2530. package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
  2531. package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
  2532. package/extensions/third-party/node_modules/typebox/build/system/environment/index.d.mts +1 -0
  2533. package/extensions/third-party/node_modules/typebox/build/system/environment/index.mjs +1 -0
  2534. package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
  2535. package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
  2536. package/extensions/third-party/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
  2537. package/extensions/third-party/node_modules/typebox/build/system/hashing/index.mjs +1 -0
  2538. package/extensions/third-party/node_modules/typebox/build/system/index.d.mts +4 -0
  2539. package/extensions/third-party/node_modules/typebox/build/system/index.mjs +4 -0
  2540. package/extensions/third-party/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
  2541. package/extensions/third-party/node_modules/typebox/build/system/locale/_config.mjs +15 -0
  2542. package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
  2543. package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
  2544. package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
  2545. package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
  2546. package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
  2547. package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
  2548. package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
  2549. package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
  2550. package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
  2551. package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
  2552. package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
  2553. package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
  2554. package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
  2555. package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
  2556. package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
  2557. package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
  2558. package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
  2559. package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
  2560. package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
  2561. package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
  2562. package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
  2563. package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
  2564. package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
  2565. package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
  2566. package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
  2567. package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
  2568. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
  2569. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
  2570. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
  2571. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
  2572. package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
  2573. package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
  2574. package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
  2575. package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
  2576. package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
  2577. package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
  2578. package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
  2579. package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
  2580. package/extensions/third-party/node_modules/typebox/build/system/locale/index.d.mts +1 -0
  2581. package/extensions/third-party/node_modules/typebox/build/system/locale/index.mjs +1 -0
  2582. package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
  2583. package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
  2584. package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
  2585. package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
  2586. package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
  2587. package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
  2588. package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
  2589. package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
  2590. package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
  2591. package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
  2592. package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
  2593. package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
  2594. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
  2595. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
  2596. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
  2597. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
  2598. package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
  2599. package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
  2600. package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
  2601. package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
  2602. package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
  2603. package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
  2604. package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
  2605. package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
  2606. package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
  2607. package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
  2608. package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
  2609. package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
  2610. package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
  2611. package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
  2612. package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
  2613. package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
  2614. package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
  2615. package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
  2616. package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
  2617. package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
  2618. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
  2619. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
  2620. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
  2621. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
  2622. package/extensions/third-party/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
  2623. package/extensions/third-party/node_modules/typebox/build/system/memory/assign.mjs +11 -0
  2624. package/extensions/third-party/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
  2625. package/extensions/third-party/node_modules/typebox/build/system/memory/clone.mjs +63 -0
  2626. package/extensions/third-party/node_modules/typebox/build/system/memory/create.d.mts +8 -0
  2627. package/extensions/third-party/node_modules/typebox/build/system/memory/create.mjs +30 -0
  2628. package/extensions/third-party/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
  2629. package/extensions/third-party/node_modules/typebox/build/system/memory/discard.mjs +17 -0
  2630. package/extensions/third-party/node_modules/typebox/build/system/memory/index.d.mts +1 -0
  2631. package/extensions/third-party/node_modules/typebox/build/system/memory/index.mjs +1 -0
  2632. package/extensions/third-party/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
  2633. package/extensions/third-party/node_modules/typebox/build/system/memory/memory.mjs +7 -0
  2634. package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
  2635. package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
  2636. package/extensions/third-party/node_modules/typebox/build/system/memory/update.d.mts +7 -0
  2637. package/extensions/third-party/node_modules/typebox/build/system/memory/update.mjs +32 -0
  2638. package/extensions/third-party/node_modules/typebox/build/system/settings/index.d.mts +1 -0
  2639. package/extensions/third-party/node_modules/typebox/build/system/settings/index.mjs +1 -0
  2640. package/extensions/third-party/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
  2641. package/extensions/third-party/node_modules/typebox/build/system/settings/settings.mjs +32 -0
  2642. package/extensions/third-party/node_modules/typebox/build/system/system.d.mts +6 -0
  2643. package/extensions/third-party/node_modules/typebox/build/system/system.mjs +6 -0
  2644. package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
  2645. package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
  2646. package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
  2647. package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
  2648. package/extensions/third-party/node_modules/typebox/build/type/action/_optional.d.mts +19 -0
  2649. package/extensions/third-party/node_modules/typebox/build/type/action/_optional.mjs +40 -0
  2650. package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.d.mts +19 -0
  2651. package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.mjs +40 -0
  2652. package/extensions/third-party/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
  2653. package/extensions/third-party/node_modules/typebox/build/type/action/awaited.mjs +15 -0
  2654. package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
  2655. package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
  2656. package/extensions/third-party/node_modules/typebox/build/type/action/conditional.d.mts +13 -0
  2657. package/extensions/third-party/node_modules/typebox/build/type/action/conditional.mjs +12 -0
  2658. package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
  2659. package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
  2660. package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
  2661. package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
  2662. package/extensions/third-party/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
  2663. package/extensions/third-party/node_modules/typebox/build/type/action/exclude.mjs +11 -0
  2664. package/extensions/third-party/node_modules/typebox/build/type/action/extract.d.mts +11 -0
  2665. package/extensions/third-party/node_modules/typebox/build/type/action/extract.mjs +11 -0
  2666. package/extensions/third-party/node_modules/typebox/build/type/action/index.d.mts +27 -0
  2667. package/extensions/third-party/node_modules/typebox/build/type/action/index.mjs +27 -0
  2668. package/extensions/third-party/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
  2669. package/extensions/third-party/node_modules/typebox/build/type/action/indexed.mjs +14 -0
  2670. package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
  2671. package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
  2672. package/extensions/third-party/node_modules/typebox/build/type/action/interface.d.mts +14 -0
  2673. package/extensions/third-party/node_modules/typebox/build/type/action/interface.mjs +22 -0
  2674. package/extensions/third-party/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
  2675. package/extensions/third-party/node_modules/typebox/build/type/action/keyof.mjs +11 -0
  2676. package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
  2677. package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
  2678. package/extensions/third-party/node_modules/typebox/build/type/action/mapped.d.mts +14 -0
  2679. package/extensions/third-party/node_modules/typebox/build/type/action/mapped.mjs +12 -0
  2680. package/extensions/third-party/node_modules/typebox/build/type/action/module.d.mts +12 -0
  2681. package/extensions/third-party/node_modules/typebox/build/type/action/module.mjs +12 -0
  2682. package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
  2683. package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
  2684. package/extensions/third-party/node_modules/typebox/build/type/action/omit.d.mts +14 -0
  2685. package/extensions/third-party/node_modules/typebox/build/type/action/omit.mjs +14 -0
  2686. package/extensions/third-party/node_modules/typebox/build/type/action/options.d.mts +11 -0
  2687. package/extensions/third-party/node_modules/typebox/build/type/action/options.mjs +11 -0
  2688. package/extensions/third-party/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
  2689. package/extensions/third-party/node_modules/typebox/build/type/action/parameters.mjs +11 -0
  2690. package/extensions/third-party/node_modules/typebox/build/type/action/partial.d.mts +11 -0
  2691. package/extensions/third-party/node_modules/typebox/build/type/action/partial.mjs +11 -0
  2692. package/extensions/third-party/node_modules/typebox/build/type/action/pick.d.mts +14 -0
  2693. package/extensions/third-party/node_modules/typebox/build/type/action/pick.mjs +14 -0
  2694. package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
  2695. package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
  2696. package/extensions/third-party/node_modules/typebox/build/type/action/required.d.mts +11 -0
  2697. package/extensions/third-party/node_modules/typebox/build/type/action/required.mjs +11 -0
  2698. package/extensions/third-party/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
  2699. package/extensions/third-party/node_modules/typebox/build/type/action/return_type.mjs +11 -0
  2700. package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
  2701. package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
  2702. package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
  2703. package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
  2704. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
  2705. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
  2706. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
  2707. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
  2708. package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
  2709. package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
  2710. package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.d.mts +23 -0
  2711. package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.mjs +48 -0
  2712. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
  2713. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
  2714. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
  2715. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
  2716. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
  2717. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
  2718. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
  2719. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
  2720. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
  2721. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
  2722. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +15 -0
  2723. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +24 -0
  2724. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
  2725. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
  2726. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
  2727. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
  2728. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
  2729. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
  2730. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
  2731. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
  2732. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
  2733. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
  2734. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +20 -0
  2735. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +30 -0
  2736. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
  2737. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
  2738. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +14 -0
  2739. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +24 -0
  2740. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.d.mts +2 -0
  2741. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.mjs +2 -0
  2742. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
  2743. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
  2744. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
  2745. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
  2746. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
  2747. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
  2748. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +30 -0
  2749. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.mjs +63 -0
  2750. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
  2751. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
  2752. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +14 -0
  2753. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +27 -0
  2754. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
  2755. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
  2756. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
  2757. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
  2758. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
  2759. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
  2760. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
  2761. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
  2762. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
  2763. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
  2764. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
  2765. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
  2766. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.d.mts +11 -0
  2767. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.mjs +24 -0
  2768. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
  2769. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
  2770. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
  2771. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
  2772. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.d.mts +11 -0
  2773. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.mjs +24 -0
  2774. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
  2775. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
  2776. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
  2777. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
  2778. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
  2779. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
  2780. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
  2781. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
  2782. package/extensions/third-party/node_modules/typebox/build/type/engine/index.d.mts +31 -0
  2783. package/extensions/third-party/node_modules/typebox/build/type/engine/index.mjs +37 -0
  2784. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
  2785. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
  2786. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
  2787. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
  2788. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
  2789. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
  2790. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
  2791. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
  2792. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
  2793. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
  2794. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +17 -0
  2795. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.mjs +22 -0
  2796. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
  2797. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
  2798. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
  2799. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
  2800. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
  2801. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
  2802. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
  2803. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
  2804. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
  2805. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
  2806. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
  2807. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
  2808. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
  2809. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
  2810. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
  2811. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
  2812. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
  2813. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
  2814. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +15 -0
  2815. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +25 -0
  2816. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
  2817. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
  2818. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
  2819. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
  2820. package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.d.mts +165 -0
  2821. package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.mjs +159 -0
  2822. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
  2823. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
  2824. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +18 -0
  2825. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
  2826. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
  2827. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
  2828. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
  2829. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
  2830. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
  2831. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
  2832. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
  2833. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
  2834. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
  2835. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
  2836. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
  2837. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
  2838. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
  2839. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
  2840. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
  2841. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
  2842. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
  2843. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
  2844. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
  2845. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
  2846. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
  2847. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
  2848. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
  2849. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
  2850. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
  2851. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
  2852. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
  2853. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
  2854. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +15 -0
  2855. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +25 -0
  2856. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
  2857. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
  2858. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
  2859. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
  2860. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
  2861. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
  2862. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +16 -0
  2863. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +34 -0
  2864. package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
  2865. package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
  2866. package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.d.mts +21 -0
  2867. package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.mjs +34 -0
  2868. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
  2869. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
  2870. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
  2871. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
  2872. package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
  2873. package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
  2874. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
  2875. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
  2876. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
  2877. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
  2878. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
  2879. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
  2880. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
  2881. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
  2882. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.d.mts +14 -0
  2883. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.mjs +20 -0
  2884. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
  2885. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
  2886. package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
  2887. package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
  2888. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
  2889. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
  2890. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
  2891. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
  2892. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
  2893. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
  2894. package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.d.mts +1 -0
  2895. package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.mjs +1 -0
  2896. package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.d.mts +8 -0
  2897. package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.mjs +14 -0
  2898. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
  2899. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
  2900. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +15 -0
  2901. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +24 -0
  2902. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
  2903. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
  2904. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
  2905. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +7 -0
  2906. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
  2907. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
  2908. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.d.mts +12 -0
  2909. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.mjs +17 -0
  2910. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
  2911. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
  2912. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
  2913. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
  2914. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
  2915. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
  2916. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
  2917. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
  2918. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
  2919. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
  2920. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
  2921. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
  2922. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
  2923. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
  2924. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
  2925. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
  2926. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
  2927. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
  2928. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
  2929. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
  2930. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
  2931. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
  2932. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
  2933. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +7 -0
  2934. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
  2935. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
  2936. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
  2937. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
  2938. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +16 -0
  2939. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +22 -0
  2940. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
  2941. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
  2942. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
  2943. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
  2944. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
  2945. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
  2946. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
  2947. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
  2948. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
  2949. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
  2950. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
  2951. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
  2952. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
  2953. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
  2954. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
  2955. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
  2956. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
  2957. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
  2958. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
  2959. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
  2960. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
  2961. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
  2962. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
  2963. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
  2964. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
  2965. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
  2966. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
  2967. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
  2968. package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
  2969. package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
  2970. package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
  2971. package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
  2972. package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
  2973. package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
  2974. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
  2975. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
  2976. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
  2977. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
  2978. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
  2979. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
  2980. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
  2981. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.mjs +7 -0
  2982. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
  2983. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
  2984. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.d.mts +12 -0
  2985. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.mjs +17 -0
  2986. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
  2987. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
  2988. package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
  2989. package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
  2990. package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
  2991. package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
  2992. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
  2993. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
  2994. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
  2995. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
  2996. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
  2997. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
  2998. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
  2999. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
  3000. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
  3001. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
  3002. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
  3003. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
  3004. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
  3005. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
  3006. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
  3007. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
  3008. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
  3009. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
  3010. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
  3011. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
  3012. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
  3013. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +9 -0
  3014. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
  3015. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
  3016. package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
  3017. package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
  3018. package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
  3019. package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
  3020. package/extensions/third-party/node_modules/typebox/build/type/extends/any.d.mts +9 -0
  3021. package/extensions/third-party/node_modules/typebox/build/type/extends/any.mjs +12 -0
  3022. package/extensions/third-party/node_modules/typebox/build/type/extends/array.d.mts +20 -0
  3023. package/extensions/third-party/node_modules/typebox/build/type/extends/array.mjs +21 -0
  3024. package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
  3025. package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
  3026. package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
  3027. package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
  3028. package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
  3029. package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
  3030. package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
  3031. package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
  3032. package/extensions/third-party/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
  3033. package/extensions/third-party/node_modules/typebox/build/type/extends/enum.mjs +6 -0
  3034. package/extensions/third-party/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
  3035. package/extensions/third-party/node_modules/typebox/build/type/extends/extends.mjs +17 -0
  3036. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.d.mts +55 -0
  3037. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.mjs +83 -0
  3038. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.d.mts +25 -0
  3039. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.mjs +44 -0
  3040. package/extensions/third-party/node_modules/typebox/build/type/extends/function.d.mts +10 -0
  3041. package/extensions/third-party/node_modules/typebox/build/type/extends/function.mjs +17 -0
  3042. package/extensions/third-party/node_modules/typebox/build/type/extends/index.d.mts +2 -0
  3043. package/extensions/third-party/node_modules/typebox/build/type/extends/index.mjs +2 -0
  3044. package/extensions/third-party/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
  3045. package/extensions/third-party/node_modules/typebox/build/type/extends/inference.mjs +62 -0
  3046. package/extensions/third-party/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
  3047. package/extensions/third-party/node_modules/typebox/build/type/extends/integer.mjs +10 -0
  3048. package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
  3049. package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
  3050. package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
  3051. package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
  3052. package/extensions/third-party/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
  3053. package/extensions/third-party/node_modules/typebox/build/type/extends/literal.mjs +44 -0
  3054. package/extensions/third-party/node_modules/typebox/build/type/extends/never.d.mts +8 -0
  3055. package/extensions/third-party/node_modules/typebox/build/type/extends/never.mjs +9 -0
  3056. package/extensions/third-party/node_modules/typebox/build/type/extends/null.d.mts +7 -0
  3057. package/extensions/third-party/node_modules/typebox/build/type/extends/null.mjs +9 -0
  3058. package/extensions/third-party/node_modules/typebox/build/type/extends/number.d.mts +7 -0
  3059. package/extensions/third-party/node_modules/typebox/build/type/extends/number.mjs +9 -0
  3060. package/extensions/third-party/node_modules/typebox/build/type/extends/object.d.mts +25 -0
  3061. package/extensions/third-party/node_modules/typebox/build/type/extends/object.mjs +87 -0
  3062. package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
  3063. package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
  3064. package/extensions/third-party/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
  3065. package/extensions/third-party/node_modules/typebox/build/type/extends/promise.mjs +9 -0
  3066. package/extensions/third-party/node_modules/typebox/build/type/extends/result.d.mts +24 -0
  3067. package/extensions/third-party/node_modules/typebox/build/type/extends/result.mjs +36 -0
  3068. package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
  3069. package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
  3070. package/extensions/third-party/node_modules/typebox/build/type/extends/string.d.mts +7 -0
  3071. package/extensions/third-party/node_modules/typebox/build/type/extends/string.mjs +9 -0
  3072. package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
  3073. package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
  3074. package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
  3075. package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
  3076. package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.d.mts +25 -0
  3077. package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.mjs +60 -0
  3078. package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
  3079. package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
  3080. package/extensions/third-party/node_modules/typebox/build/type/extends/union.d.mts +11 -0
  3081. package/extensions/third-party/node_modules/typebox/build/type/extends/union.mjs +24 -0
  3082. package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
  3083. package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
  3084. package/extensions/third-party/node_modules/typebox/build/type/extends/void.d.mts +7 -0
  3085. package/extensions/third-party/node_modules/typebox/build/type/extends/void.mjs +9 -0
  3086. package/extensions/third-party/node_modules/typebox/build/type/index.d.mts +5 -0
  3087. package/extensions/third-party/node_modules/typebox/build/type/index.mjs +5 -0
  3088. package/extensions/third-party/node_modules/typebox/build/type/script/index.d.mts +1 -0
  3089. package/extensions/third-party/node_modules/typebox/build/type/script/index.mjs +1 -0
  3090. package/extensions/third-party/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
  3091. package/extensions/third-party/node_modules/typebox/build/type/script/mapping.mjs +532 -0
  3092. package/extensions/third-party/node_modules/typebox/build/type/script/parser.d.mts +260 -0
  3093. package/extensions/third-party/node_modules/typebox/build/type/script/parser.mjs +135 -0
  3094. package/extensions/third-party/node_modules/typebox/build/type/script/script.d.mts +17 -0
  3095. package/extensions/third-party/node_modules/typebox/build/type/script/script.mjs +21 -0
  3096. package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
  3097. package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
  3098. package/extensions/third-party/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
  3099. package/extensions/third-party/node_modules/typebox/build/type/script/token/const.mjs +18 -0
  3100. package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
  3101. package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
  3102. package/extensions/third-party/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
  3103. package/extensions/third-party/node_modules/typebox/build/type/script/token/index.mjs +12 -0
  3104. package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
  3105. package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
  3106. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
  3107. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
  3108. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
  3109. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
  3110. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
  3111. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
  3112. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
  3113. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
  3114. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
  3115. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
  3116. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
  3117. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
  3118. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
  3119. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
  3120. package/extensions/third-party/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
  3121. package/extensions/third-party/node_modules/typebox/build/type/script/token/number.mjs +19 -0
  3122. package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
  3123. package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
  3124. package/extensions/third-party/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
  3125. package/extensions/third-party/node_modules/typebox/build/type/script/token/span.mjs +24 -0
  3126. package/extensions/third-party/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
  3127. package/extensions/third-party/node_modules/typebox/build/type/script/token/string.mjs +20 -0
  3128. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
  3129. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
  3130. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
  3131. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
  3132. package/extensions/third-party/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
  3133. package/extensions/third-party/node_modules/typebox/build/type/script/token/until.mjs +21 -0
  3134. package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
  3135. package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
  3136. package/extensions/third-party/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
  3137. package/extensions/third-party/node_modules/typebox/build/type/types/_codec.mjs +61 -0
  3138. package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.d.mts +16 -0
  3139. package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.mjs +26 -0
  3140. package/extensions/third-party/node_modules/typebox/build/type/types/_optional.d.mts +16 -0
  3141. package/extensions/third-party/node_modules/typebox/build/type/types/_optional.mjs +27 -0
  3142. package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.d.mts +16 -0
  3143. package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.mjs +26 -0
  3144. package/extensions/third-party/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
  3145. package/extensions/third-party/node_modules/typebox/build/type/types/_refine.mjs +37 -0
  3146. package/extensions/third-party/node_modules/typebox/build/type/types/any.d.mts +10 -0
  3147. package/extensions/third-party/node_modules/typebox/build/type/types/any.mjs +18 -0
  3148. package/extensions/third-party/node_modules/typebox/build/type/types/array.d.mts +18 -0
  3149. package/extensions/third-party/node_modules/typebox/build/type/types/array.mjs +25 -0
  3150. package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
  3151. package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
  3152. package/extensions/third-party/node_modules/typebox/build/type/types/base.d.mts +50 -0
  3153. package/extensions/third-party/node_modules/typebox/build/type/types/base.mjs +84 -0
  3154. package/extensions/third-party/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
  3155. package/extensions/third-party/node_modules/typebox/build/type/types/bigint.mjs +21 -0
  3156. package/extensions/third-party/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
  3157. package/extensions/third-party/node_modules/typebox/build/type/types/boolean.mjs +17 -0
  3158. package/extensions/third-party/node_modules/typebox/build/type/types/call.d.mts +16 -0
  3159. package/extensions/third-party/node_modules/typebox/build/type/types/call.mjs +22 -0
  3160. package/extensions/third-party/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
  3161. package/extensions/third-party/node_modules/typebox/build/type/types/constructor.mjs +24 -0
  3162. package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
  3163. package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
  3164. package/extensions/third-party/node_modules/typebox/build/type/types/deferred.d.mts +12 -0
  3165. package/extensions/third-party/node_modules/typebox/build/type/types/deferred.mjs +16 -0
  3166. package/extensions/third-party/node_modules/typebox/build/type/types/enum.d.mts +16 -0
  3167. package/extensions/third-party/node_modules/typebox/build/type/types/enum.mjs +17 -0
  3168. package/extensions/third-party/node_modules/typebox/build/type/types/function.d.mts +21 -0
  3169. package/extensions/third-party/node_modules/typebox/build/type/types/function.mjs +25 -0
  3170. package/extensions/third-party/node_modules/typebox/build/type/types/generic.d.mts +13 -0
  3171. package/extensions/third-party/node_modules/typebox/build/type/types/generic.mjs +17 -0
  3172. package/extensions/third-party/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
  3173. package/extensions/third-party/node_modules/typebox/build/type/types/identifier.mjs +17 -0
  3174. package/extensions/third-party/node_modules/typebox/build/type/types/index.d.mts +48 -0
  3175. package/extensions/third-party/node_modules/typebox/build/type/types/index.mjs +54 -0
  3176. package/extensions/third-party/node_modules/typebox/build/type/types/infer.d.mts +15 -0
  3177. package/extensions/third-party/node_modules/typebox/build/type/types/infer.mjs +20 -0
  3178. package/extensions/third-party/node_modules/typebox/build/type/types/integer.d.mts +12 -0
  3179. package/extensions/third-party/node_modules/typebox/build/type/types/integer.mjs +21 -0
  3180. package/extensions/third-party/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
  3181. package/extensions/third-party/node_modules/typebox/build/type/types/intersect.mjs +24 -0
  3182. package/extensions/third-party/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
  3183. package/extensions/third-party/node_modules/typebox/build/type/types/iterator.mjs +28 -0
  3184. package/extensions/third-party/node_modules/typebox/build/type/types/literal.d.mts +31 -0
  3185. package/extensions/third-party/node_modules/typebox/build/type/types/literal.mjs +62 -0
  3186. package/extensions/third-party/node_modules/typebox/build/type/types/never.d.mts +12 -0
  3187. package/extensions/third-party/node_modules/typebox/build/type/types/never.mjs +22 -0
  3188. package/extensions/third-party/node_modules/typebox/build/type/types/null.d.mts +11 -0
  3189. package/extensions/third-party/node_modules/typebox/build/type/types/null.mjs +17 -0
  3190. package/extensions/third-party/node_modules/typebox/build/type/types/number.d.mts +12 -0
  3191. package/extensions/third-party/node_modules/typebox/build/type/types/number.mjs +21 -0
  3192. package/extensions/third-party/node_modules/typebox/build/type/types/object.d.mts +18 -0
  3193. package/extensions/third-party/node_modules/typebox/build/type/types/object.mjs +28 -0
  3194. package/extensions/third-party/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
  3195. package/extensions/third-party/node_modules/typebox/build/type/types/parameter.mjs +21 -0
  3196. package/extensions/third-party/node_modules/typebox/build/type/types/promise.d.mts +21 -0
  3197. package/extensions/third-party/node_modules/typebox/build/type/types/promise.mjs +29 -0
  3198. package/extensions/third-party/node_modules/typebox/build/type/types/properties.d.mts +43 -0
  3199. package/extensions/third-party/node_modules/typebox/build/type/types/properties.mjs +15 -0
  3200. package/extensions/third-party/node_modules/typebox/build/type/types/record.d.mts +46 -0
  3201. package/extensions/third-party/node_modules/typebox/build/type/types/record.mjs +60 -0
  3202. package/extensions/third-party/node_modules/typebox/build/type/types/ref.d.mts +19 -0
  3203. package/extensions/third-party/node_modules/typebox/build/type/types/ref.mjs +18 -0
  3204. package/extensions/third-party/node_modules/typebox/build/type/types/rest.d.mts +11 -0
  3205. package/extensions/third-party/node_modules/typebox/build/type/types/rest.mjs +17 -0
  3206. package/extensions/third-party/node_modules/typebox/build/type/types/schema.d.mts +176 -0
  3207. package/extensions/third-party/node_modules/typebox/build/type/types/schema.mjs +15 -0
  3208. package/extensions/third-party/node_modules/typebox/build/type/types/static.d.mts +48 -0
  3209. package/extensions/third-party/node_modules/typebox/build/type/types/static.mjs +3 -0
  3210. package/extensions/third-party/node_modules/typebox/build/type/types/string.d.mts +12 -0
  3211. package/extensions/third-party/node_modules/typebox/build/type/types/string.mjs +22 -0
  3212. package/extensions/third-party/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
  3213. package/extensions/third-party/node_modules/typebox/build/type/types/symbol.mjs +17 -0
  3214. package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
  3215. package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
  3216. package/extensions/third-party/node_modules/typebox/build/type/types/this.d.mts +14 -0
  3217. package/extensions/third-party/node_modules/typebox/build/type/types/this.mjs +17 -0
  3218. package/extensions/third-party/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
  3219. package/extensions/third-party/node_modules/typebox/build/type/types/tuple.mjs +25 -0
  3220. package/extensions/third-party/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
  3221. package/extensions/third-party/node_modules/typebox/build/type/types/undefined.mjs +17 -0
  3222. package/extensions/third-party/node_modules/typebox/build/type/types/union.d.mts +15 -0
  3223. package/extensions/third-party/node_modules/typebox/build/type/types/union.mjs +24 -0
  3224. package/extensions/third-party/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
  3225. package/extensions/third-party/node_modules/typebox/build/type/types/unknown.mjs +17 -0
  3226. package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
  3227. package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
  3228. package/extensions/third-party/node_modules/typebox/build/type/types/void.d.mts +11 -0
  3229. package/extensions/third-party/node_modules/typebox/build/type/types/void.mjs +17 -0
  3230. package/extensions/third-party/node_modules/typebox/build/typebox.d.mts +73 -0
  3231. package/extensions/third-party/node_modules/typebox/build/typebox.mjs +89 -0
  3232. package/extensions/third-party/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
  3233. package/extensions/third-party/node_modules/typebox/build/value/assert/assert.mjs +28 -0
  3234. package/extensions/third-party/node_modules/typebox/build/value/assert/index.d.mts +1 -0
  3235. package/extensions/third-party/node_modules/typebox/build/value/assert/index.mjs +1 -0
  3236. package/extensions/third-party/node_modules/typebox/build/value/check/check.d.mts +5 -0
  3237. package/extensions/third-party/node_modules/typebox/build/value/check/check.mjs +11 -0
  3238. package/extensions/third-party/node_modules/typebox/build/value/check/index.d.mts +1 -0
  3239. package/extensions/third-party/node_modules/typebox/build/value/check/index.mjs +1 -0
  3240. package/extensions/third-party/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
  3241. package/extensions/third-party/node_modules/typebox/build/value/clean/additional.mjs +6 -0
  3242. package/extensions/third-party/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
  3243. package/extensions/third-party/node_modules/typebox/build/value/clean/clean.mjs +15 -0
  3244. package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
  3245. package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
  3246. package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
  3247. package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
  3248. package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
  3249. package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
  3250. package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
  3251. package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
  3252. package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
  3253. package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
  3254. package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
  3255. package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
  3256. package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
  3257. package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
  3258. package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
  3259. package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
  3260. package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
  3261. package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
  3262. package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
  3263. package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
  3264. package/extensions/third-party/node_modules/typebox/build/value/clean/index.d.mts +1 -0
  3265. package/extensions/third-party/node_modules/typebox/build/value/clean/index.mjs +1 -0
  3266. package/extensions/third-party/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
  3267. package/extensions/third-party/node_modules/typebox/build/value/clone/clone.mjs +83 -0
  3268. package/extensions/third-party/node_modules/typebox/build/value/clone/index.d.mts +1 -0
  3269. package/extensions/third-party/node_modules/typebox/build/value/clone/index.mjs +1 -0
  3270. package/extensions/third-party/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
  3271. package/extensions/third-party/node_modules/typebox/build/value/codec/callback.mjs +25 -0
  3272. package/extensions/third-party/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
  3273. package/extensions/third-party/node_modules/typebox/build/value/codec/decode.mjs +50 -0
  3274. package/extensions/third-party/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
  3275. package/extensions/third-party/node_modules/typebox/build/value/codec/encode.mjs +50 -0
  3276. package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
  3277. package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
  3278. package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
  3279. package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
  3280. package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
  3281. package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
  3282. package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
  3283. package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
  3284. package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
  3285. package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
  3286. package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
  3287. package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
  3288. package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
  3289. package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
  3290. package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
  3291. package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
  3292. package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
  3293. package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
  3294. package/extensions/third-party/node_modules/typebox/build/value/codec/has.d.mts +5 -0
  3295. package/extensions/third-party/node_modules/typebox/build/value/codec/has.mjs +93 -0
  3296. package/extensions/third-party/node_modules/typebox/build/value/codec/index.d.mts +3 -0
  3297. package/extensions/third-party/node_modules/typebox/build/value/codec/index.mjs +3 -0
  3298. package/extensions/third-party/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
  3299. package/extensions/third-party/node_modules/typebox/build/value/convert/convert.mjs +15 -0
  3300. package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
  3301. package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
  3302. package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
  3303. package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
  3304. package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
  3305. package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
  3306. package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
  3307. package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
  3308. package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
  3309. package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
  3310. package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
  3311. package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
  3312. package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
  3313. package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.mjs +7 -0
  3314. package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
  3315. package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
  3316. package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
  3317. package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
  3318. package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
  3319. package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
  3320. package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
  3321. package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
  3322. package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
  3323. package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
  3324. package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
  3325. package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
  3326. package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
  3327. package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
  3328. package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
  3329. package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
  3330. package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
  3331. package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
  3332. package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
  3333. package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.mjs +7 -0
  3334. package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
  3335. package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
  3336. package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
  3337. package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
  3338. package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
  3339. package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
  3340. package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
  3341. package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
  3342. package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
  3343. package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
  3344. package/extensions/third-party/node_modules/typebox/build/value/convert/index.d.mts +1 -0
  3345. package/extensions/third-party/node_modules/typebox/build/value/convert/index.mjs +1 -0
  3346. package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
  3347. package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
  3348. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
  3349. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
  3350. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
  3351. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
  3352. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
  3353. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
  3354. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
  3355. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
  3356. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
  3357. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
  3358. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
  3359. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
  3360. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
  3361. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
  3362. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
  3363. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
  3364. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
  3365. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
  3366. package/extensions/third-party/node_modules/typebox/build/value/create/create.d.mts +5 -0
  3367. package/extensions/third-party/node_modules/typebox/build/value/create/create.mjs +11 -0
  3368. package/extensions/third-party/node_modules/typebox/build/value/create/error.d.mts +5 -0
  3369. package/extensions/third-party/node_modules/typebox/build/value/create/error.mjs +7 -0
  3370. package/extensions/third-party/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
  3371. package/extensions/third-party/node_modules/typebox/build/value/create/from_array.mjs +10 -0
  3372. package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
  3373. package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
  3374. package/extensions/third-party/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
  3375. package/extensions/third-party/node_modules/typebox/build/value/create/from_base.mjs +4 -0
  3376. package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
  3377. package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
  3378. package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
  3379. package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
  3380. package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
  3381. package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
  3382. package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
  3383. package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
  3384. package/extensions/third-party/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
  3385. package/extensions/third-party/node_modules/typebox/build/value/create/from_default.mjs +10 -0
  3386. package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
  3387. package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
  3388. package/extensions/third-party/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
  3389. package/extensions/third-party/node_modules/typebox/build/value/create/from_function.mjs +6 -0
  3390. package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
  3391. package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
  3392. package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
  3393. package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
  3394. package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
  3395. package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
  3396. package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
  3397. package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
  3398. package/extensions/third-party/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
  3399. package/extensions/third-party/node_modules/typebox/build/value/create/from_never.mjs +5 -0
  3400. package/extensions/third-party/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
  3401. package/extensions/third-party/node_modules/typebox/build/value/create/from_null.mjs +4 -0
  3402. package/extensions/third-party/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
  3403. package/extensions/third-party/node_modules/typebox/build/value/create/from_number.mjs +8 -0
  3404. package/extensions/third-party/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
  3405. package/extensions/third-party/node_modules/typebox/build/value/create/from_object.mjs +9 -0
  3406. package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
  3407. package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
  3408. package/extensions/third-party/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
  3409. package/extensions/third-party/node_modules/typebox/build/value/create/from_record.mjs +8 -0
  3410. package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
  3411. package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
  3412. package/extensions/third-party/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
  3413. package/extensions/third-party/node_modules/typebox/build/value/create/from_string.mjs +9 -0
  3414. package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
  3415. package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
  3416. package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
  3417. package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
  3418. package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
  3419. package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
  3420. package/extensions/third-party/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
  3421. package/extensions/third-party/node_modules/typebox/build/value/create/from_type.mjs +69 -0
  3422. package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
  3423. package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
  3424. package/extensions/third-party/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
  3425. package/extensions/third-party/node_modules/typebox/build/value/create/from_union.mjs +9 -0
  3426. package/extensions/third-party/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
  3427. package/extensions/third-party/node_modules/typebox/build/value/create/from_void.mjs +4 -0
  3428. package/extensions/third-party/node_modules/typebox/build/value/create/index.d.mts +2 -0
  3429. package/extensions/third-party/node_modules/typebox/build/value/create/index.mjs +2 -0
  3430. package/extensions/third-party/node_modules/typebox/build/value/default/default.d.mts +13 -0
  3431. package/extensions/third-party/node_modules/typebox/build/value/default/default.mjs +15 -0
  3432. package/extensions/third-party/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
  3433. package/extensions/third-party/node_modules/typebox/build/value/default/from_array.mjs +12 -0
  3434. package/extensions/third-party/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
  3435. package/extensions/third-party/node_modules/typebox/build/value/default/from_base.mjs +5 -0
  3436. package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
  3437. package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
  3438. package/extensions/third-party/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
  3439. package/extensions/third-party/node_modules/typebox/build/value/default/from_default.mjs +13 -0
  3440. package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
  3441. package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
  3442. package/extensions/third-party/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
  3443. package/extensions/third-party/node_modules/typebox/build/value/default/from_object.mjs +32 -0
  3444. package/extensions/third-party/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
  3445. package/extensions/third-party/node_modules/typebox/build/value/default/from_record.mjs +26 -0
  3446. package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
  3447. package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
  3448. package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
  3449. package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
  3450. package/extensions/third-party/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
  3451. package/extensions/third-party/node_modules/typebox/build/value/default/from_type.mjs +27 -0
  3452. package/extensions/third-party/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
  3453. package/extensions/third-party/node_modules/typebox/build/value/default/from_union.mjs +14 -0
  3454. package/extensions/third-party/node_modules/typebox/build/value/default/index.d.mts +1 -0
  3455. package/extensions/third-party/node_modules/typebox/build/value/default/index.mjs +1 -0
  3456. package/extensions/third-party/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
  3457. package/extensions/third-party/node_modules/typebox/build/value/delta/diff.mjs +135 -0
  3458. package/extensions/third-party/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
  3459. package/extensions/third-party/node_modules/typebox/build/value/delta/edit.mjs +17 -0
  3460. package/extensions/third-party/node_modules/typebox/build/value/delta/index.d.mts +3 -0
  3461. package/extensions/third-party/node_modules/typebox/build/value/delta/index.mjs +3 -0
  3462. package/extensions/third-party/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
  3463. package/extensions/third-party/node_modules/typebox/build/value/delta/patch.mjs +42 -0
  3464. package/extensions/third-party/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
  3465. package/extensions/third-party/node_modules/typebox/build/value/equal/equal.mjs +6 -0
  3466. package/extensions/third-party/node_modules/typebox/build/value/equal/index.d.mts +1 -0
  3467. package/extensions/third-party/node_modules/typebox/build/value/equal/index.mjs +1 -0
  3468. package/extensions/third-party/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
  3469. package/extensions/third-party/node_modules/typebox/build/value/errors/errors.mjs +17 -0
  3470. package/extensions/third-party/node_modules/typebox/build/value/errors/index.d.mts +1 -0
  3471. package/extensions/third-party/node_modules/typebox/build/value/errors/index.mjs +1 -0
  3472. package/extensions/third-party/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
  3473. package/extensions/third-party/node_modules/typebox/build/value/hash/hash.mjs +10 -0
  3474. package/extensions/third-party/node_modules/typebox/build/value/hash/index.d.mts +1 -0
  3475. package/extensions/third-party/node_modules/typebox/build/value/hash/index.mjs +1 -0
  3476. package/extensions/third-party/node_modules/typebox/build/value/index.d.mts +21 -0
  3477. package/extensions/third-party/node_modules/typebox/build/value/index.mjs +30 -0
  3478. package/extensions/third-party/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
  3479. package/extensions/third-party/node_modules/typebox/build/value/mutate/error.mjs +6 -0
  3480. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
  3481. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
  3482. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
  3483. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
  3484. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
  3485. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
  3486. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
  3487. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
  3488. package/extensions/third-party/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
  3489. package/extensions/third-party/node_modules/typebox/build/value/mutate/index.mjs +1 -0
  3490. package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
  3491. package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
  3492. package/extensions/third-party/node_modules/typebox/build/value/parse/index.d.mts +1 -0
  3493. package/extensions/third-party/node_modules/typebox/build/value/parse/index.mjs +1 -0
  3494. package/extensions/third-party/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
  3495. package/extensions/third-party/node_modules/typebox/build/value/parse/parse.mjs +47 -0
  3496. package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
  3497. package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
  3498. package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
  3499. package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
  3500. package/extensions/third-party/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
  3501. package/extensions/third-party/node_modules/typebox/build/value/pointer/index.mjs +1 -0
  3502. package/extensions/third-party/node_modules/typebox/build/value/repair/error.d.mts +7 -0
  3503. package/extensions/third-party/node_modules/typebox/build/value/repair/error.mjs +8 -0
  3504. package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
  3505. package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
  3506. package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
  3507. package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
  3508. package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
  3509. package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.mjs +7 -0
  3510. package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
  3511. package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
  3512. package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
  3513. package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
  3514. package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
  3515. package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
  3516. package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
  3517. package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
  3518. package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
  3519. package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
  3520. package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
  3521. package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
  3522. package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
  3523. package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
  3524. package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
  3525. package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
  3526. package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
  3527. package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
  3528. package/extensions/third-party/node_modules/typebox/build/value/repair/index.d.mts +1 -0
  3529. package/extensions/third-party/node_modules/typebox/build/value/repair/index.mjs +1 -0
  3530. package/extensions/third-party/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
  3531. package/extensions/third-party/node_modules/typebox/build/value/repair/repair.mjs +20 -0
  3532. package/extensions/third-party/node_modules/typebox/build/value/shared/index.d.mts +3 -0
  3533. package/extensions/third-party/node_modules/typebox/build/value/shared/index.mjs +4 -0
  3534. package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
  3535. package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
  3536. package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
  3537. package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
  3538. package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
  3539. package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
  3540. package/extensions/third-party/node_modules/typebox/build/value/value.d.mts +16 -0
  3541. package/extensions/third-party/node_modules/typebox/build/value/value.mjs +16 -0
  3542. package/extensions/third-party/node_modules/typebox/license +23 -0
  3543. package/extensions/third-party/node_modules/typebox/package.json +87 -0
  3544. package/extensions/third-party/node_modules/typebox/readme.md +356 -0
  3545. package/extensions/third-party/node_modules/yaml/LICENSE +13 -0
  3546. package/extensions/third-party/node_modules/yaml/README.md +172 -0
  3547. package/extensions/third-party/node_modules/yaml/bin.mjs +11 -0
  3548. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  3549. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  3550. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
  3551. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  3552. package/extensions/third-party/node_modules/yaml/browser/dist/compose/composer.js +217 -0
  3553. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  3554. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  3555. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  3556. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  3557. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  3558. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
  3559. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
  3560. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  3561. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
  3562. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  3563. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  3564. package/extensions/third-party/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  3565. package/extensions/third-party/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
  3566. package/extensions/third-party/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  3567. package/extensions/third-party/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
  3568. package/extensions/third-party/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  3569. package/extensions/third-party/node_modules/yaml/browser/dist/errors.js +57 -0
  3570. package/extensions/third-party/node_modules/yaml/browser/dist/index.js +17 -0
  3571. package/extensions/third-party/node_modules/yaml/browser/dist/log.js +11 -0
  3572. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
  3573. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  3574. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  3575. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  3576. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  3577. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  3578. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  3579. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
  3580. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  3581. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  3582. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  3583. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  3584. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  3585. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  3586. package/extensions/third-party/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
  3587. package/extensions/third-party/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  3588. package/extensions/third-party/node_modules/yaml/browser/dist/parse/parser.js +967 -0
  3589. package/extensions/third-party/node_modules/yaml/browser/dist/public-api.js +102 -0
  3590. package/extensions/third-party/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  3591. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  3592. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  3593. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  3594. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  3595. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  3596. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  3597. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  3598. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  3599. package/extensions/third-party/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  3600. package/extensions/third-party/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  3601. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
  3602. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  3603. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  3604. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  3605. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
  3606. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  3607. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  3608. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  3609. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  3610. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  3611. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  3612. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  3613. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
  3614. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  3615. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  3616. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
  3617. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  3618. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
  3619. package/extensions/third-party/node_modules/yaml/browser/dist/util.js +11 -0
  3620. package/extensions/third-party/node_modules/yaml/browser/dist/visit.js +233 -0
  3621. package/extensions/third-party/node_modules/yaml/browser/index.js +5 -0
  3622. package/extensions/third-party/node_modules/yaml/browser/package.json +3 -0
  3623. package/extensions/third-party/node_modules/yaml/dist/cli.d.ts +8 -0
  3624. package/extensions/third-party/node_modules/yaml/dist/cli.mjs +201 -0
  3625. package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  3626. package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  3627. package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  3628. package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  3629. package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  3630. package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.js +112 -0
  3631. package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  3632. package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  3633. package/extensions/third-party/node_modules/yaml/dist/compose/composer.d.ts +63 -0
  3634. package/extensions/third-party/node_modules/yaml/dist/compose/composer.js +222 -0
  3635. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  3636. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  3637. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  3638. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  3639. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  3640. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  3641. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  3642. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  3643. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  3644. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  3645. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  3646. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
  3647. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  3648. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  3649. package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  3650. package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  3651. package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  3652. package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  3653. package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  3654. package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  3655. package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  3656. package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  3657. package/extensions/third-party/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  3658. package/extensions/third-party/node_modules/yaml/dist/doc/Document.js +337 -0
  3659. package/extensions/third-party/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  3660. package/extensions/third-party/node_modules/yaml/dist/doc/anchors.js +76 -0
  3661. package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  3662. package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  3663. package/extensions/third-party/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  3664. package/extensions/third-party/node_modules/yaml/dist/doc/createNode.js +90 -0
  3665. package/extensions/third-party/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  3666. package/extensions/third-party/node_modules/yaml/dist/doc/directives.js +178 -0
  3667. package/extensions/third-party/node_modules/yaml/dist/errors.d.ts +21 -0
  3668. package/extensions/third-party/node_modules/yaml/dist/errors.js +62 -0
  3669. package/extensions/third-party/node_modules/yaml/dist/index.d.ts +25 -0
  3670. package/extensions/third-party/node_modules/yaml/dist/index.js +50 -0
  3671. package/extensions/third-party/node_modules/yaml/dist/log.d.ts +3 -0
  3672. package/extensions/third-party/node_modules/yaml/dist/log.js +19 -0
  3673. package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
  3674. package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.js +116 -0
  3675. package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  3676. package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.js +151 -0
  3677. package/extensions/third-party/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  3678. package/extensions/third-party/node_modules/yaml/dist/nodes/Node.js +40 -0
  3679. package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
  3680. package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.js +39 -0
  3681. package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
  3682. package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  3683. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  3684. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  3685. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  3686. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  3687. package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  3688. package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  3689. package/extensions/third-party/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  3690. package/extensions/third-party/node_modules/yaml/dist/nodes/identity.js +53 -0
  3691. package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
  3692. package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.js +39 -0
  3693. package/extensions/third-party/node_modules/yaml/dist/options.d.ts +350 -0
  3694. package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  3695. package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  3696. package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  3697. package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  3698. package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  3699. package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  3700. package/extensions/third-party/node_modules/yaml/dist/parse/cst.d.ts +109 -0
  3701. package/extensions/third-party/node_modules/yaml/dist/parse/cst.js +112 -0
  3702. package/extensions/third-party/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  3703. package/extensions/third-party/node_modules/yaml/dist/parse/lexer.js +719 -0
  3704. package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  3705. package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.js +41 -0
  3706. package/extensions/third-party/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  3707. package/extensions/third-party/node_modules/yaml/dist/parse/parser.js +972 -0
  3708. package/extensions/third-party/node_modules/yaml/dist/public-api.d.ts +44 -0
  3709. package/extensions/third-party/node_modules/yaml/dist/public-api.js +107 -0
  3710. package/extensions/third-party/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  3711. package/extensions/third-party/node_modules/yaml/dist/schema/Schema.js +39 -0
  3712. package/extensions/third-party/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  3713. package/extensions/third-party/node_modules/yaml/dist/schema/common/map.js +19 -0
  3714. package/extensions/third-party/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  3715. package/extensions/third-party/node_modules/yaml/dist/schema/common/null.js +17 -0
  3716. package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  3717. package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.js +19 -0
  3718. package/extensions/third-party/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  3719. package/extensions/third-party/node_modules/yaml/dist/schema/common/string.js +16 -0
  3720. package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  3721. package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.js +21 -0
  3722. package/extensions/third-party/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  3723. package/extensions/third-party/node_modules/yaml/dist/schema/core/float.js +47 -0
  3724. package/extensions/third-party/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  3725. package/extensions/third-party/node_modules/yaml/dist/schema/core/int.js +42 -0
  3726. package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  3727. package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.js +25 -0
  3728. package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  3729. package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.js +64 -0
  3730. package/extensions/third-party/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  3731. package/extensions/third-party/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  3732. package/extensions/third-party/node_modules/yaml/dist/schema/tags.js +99 -0
  3733. package/extensions/third-party/node_modules/yaml/dist/schema/types.d.ts +92 -0
  3734. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  3735. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  3736. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  3737. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  3738. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  3739. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  3740. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  3741. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  3742. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  3743. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
  3744. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
  3745. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  3746. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  3747. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  3748. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  3749. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  3750. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  3751. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  3752. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  3753. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  3754. package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  3755. package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  3756. package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  3757. package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.js +132 -0
  3758. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  3759. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  3760. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  3761. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  3762. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  3763. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  3764. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  3765. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
  3766. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  3767. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  3768. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  3769. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  3770. package/extensions/third-party/node_modules/yaml/dist/test-events.d.ts +4 -0
  3771. package/extensions/third-party/node_modules/yaml/dist/test-events.js +134 -0
  3772. package/extensions/third-party/node_modules/yaml/dist/util.d.ts +16 -0
  3773. package/extensions/third-party/node_modules/yaml/dist/util.js +28 -0
  3774. package/extensions/third-party/node_modules/yaml/dist/visit.d.ts +102 -0
  3775. package/extensions/third-party/node_modules/yaml/dist/visit.js +236 -0
  3776. package/extensions/third-party/node_modules/yaml/package.json +97 -0
  3777. package/extensions/third-party/node_modules/yaml/util.js +2 -0
  3778. package/extensions/third-party/package-lock.json +184 -0
  3779. package/extensions/third-party/package.json +11 -0
  3780. package/extensions/third-party/subagent-policy.ts +165 -0
  3781. package/extensions/third-party/vendor/README.md +16 -0
  3782. package/extensions/third-party/vendor/pi-subagents-0.52.1-dev-agent-followthrough.2.tgz +0 -0
  3783. package/npm-shrinkwrap.json +2259 -0
  3784. package/package.json +73 -0
  3785. package/runtime/process-tree.ts +143 -0
  3786. package/runtime/product-config.mjs +21 -0
  3787. package/runtime/resolve-installed-pi.mjs +77 -0
  3788. package/runtime/verify-pi-runtime.mjs +257 -0
  3789. package/skills/pi-subagents/SKILL.md +44 -0
@@ -0,0 +1,3787 @@
1
+ ## Version 11.12.0
2
+
3
+ Parser Engine:
4
+
5
+ - fix(parser) count named capture groups when rewriting backreferences [spokodev][]
6
+
7
+ New Grammars:
8
+
9
+ - add FreeDesktop config file (`.desktop` / systemd) grammar [gg582][]
10
+ - added 3rd party Cedar grammar to SUPPORTED_LANGUAGES [Dhruv Maniya][]
11
+ - added 3rd party DAX and M (Power Query) grammars to SUPPORTED_LANGUAGES [jiaopengzi][]
12
+ - added 3rd party Djot grammar to SUPPORTED_LANGUAGES [Mark Scherer][]
13
+ - added 3rd party Igor Pro grammar to SUPPORTED_LANGUAGES [Ryne Andal][]
14
+ - added 3rd party Jaiva grammar to SUPPORTED_LANGUAGES [Lehlogonolo Poole][]
15
+ - added 3rd party Liquidsoap grammar to SUPPORTED_LANGUAGES [Romain Beauxis][]
16
+ - added 3rd party MoonBit grammar to SUPPORTED_LANGUAGES [Kaida-Amethyst][]
17
+ - added 3rd party Pkl grammar to SUPPORTED_LANGUAGES [Dan Chao][]
18
+ - added 3rd party RAScript grammar to SUPPORTED_LANGUAGES [Joshua Raphael][]
19
+ - added 3rd party Veryl grammar to SUPPORTED_LANGUAGES [Naoya Hatta][]
20
+ - added 3rd party Why3 grammar to SUPPORTED_LANGUAGES [JGalego][]
21
+ - added 3rd party Xojo grammar to SUPPORTED_LANGUAGES [patricksalo][]
22
+ - referenced existing 3rd party ES|QL grammar in SUPPORTED_LANGUAGES [Styx0x6][]
23
+
24
+ Core Grammars:
25
+
26
+ - fix(c) only match real `atomic_*` type names, not C11 atomic functions, issue #3837 [Mark Xian][]
27
+ - fix(c, cpp) bound the run of type tokens in front of a function name (ReDoS), issue #4362 [Jayesh Bhade][]
28
+ - fix(c, cpp) scope angle-bracket header string to `#include`, issue #3505 [Pablo][]
29
+ - fix(c, cpp) stop a raw string's closing delimiter from swallowing quotes, issue #3585 [David Pavlovschii][]
30
+ - enh(cmake) add `block` and `endblock` keywords [Anonymous Maarten][]
31
+ - fix(cmake) only highlight standalone numbers, not digits that begin an identifier (e.g. `3rdparty`), issue #4170 [Mark Xian][]
32
+ - fix(cpp) require a word boundary before numeric literals so digits inside identifiers aren't highlighted as numbers, issue #4231 [Mark Xian][]
33
+ - fix(crystal) stop treating integer division `//` as a regex literal [Zain Asif][]
34
+ - enh(csharp) support digit separators in binary literals and numeric type suffixes, and stop highlighting the leading `_` of an identifier, issue #4258 [Sarath Francis][]
35
+ - enh(css) add corner-shape properties [Hama Tanveer][]
36
+ - enh(css) support six-digit `unicode-range` values [Konstantin Baltsat][]
37
+ - enh(dart) add highlighting for class and function names [guuido][]
38
+ - enh(dns) highlight registered CAA property tags, issue #4475 [Joey Huang][]
39
+ - enh(dns) improve grammar: character strings, TXT, classes, escapes, addresses [Checconio][]
40
+ - enh(dos) add `batch` as an alias, issue #4395 [Hashim Khan][]
41
+ - enh(gherkin) update keyword list [Hirse][]
42
+ - enh(gherkin) variables can't contain whitespace [Hirse][]
43
+ - enh(gherkin) docstrings can use backticks [Hirse][]
44
+ - enh(go) recognize binary integer literals [spokodev][]
45
+ - enh(groovy) support underscores in numeric literals [greymoth][]
46
+ - fix(haskell) highlight `where` in GADT and closed type-family declarations, issue #3753 [Konstantin Baltsat][]
47
+ - enh(java) improve detection of types, including generic and array types [Hannes Wallnoefer][]
48
+ - enh(javascript) add `self` to built-in variables [Dsaquel][]
49
+ - enh(kotlin) add `ktm` and `ktx` aliases [DarkMatter-999][]
50
+ - fix(leaf) fix bug in Leaf keyword highlighting [Francesco Paolo Severino][]
51
+ - fix(lisp) preserve highlighting after quoted multiplication expressions [arturict][]
52
+ - enh(llvm) support block C-style comments [utam-1][]
53
+ - enh(lua) add Lua 5.5 `global` keyword [Nibiri][]
54
+ - fix(markdown) don't treat a `***` or `___` thematic break as the start of bold text, issue #3719 [Mayank Gupta][]
55
+ - enh(nsis) enhance NSIS rules [Jan T. Sott][]
56
+ - enh(python) add missing builtins: `aiter` and `anext` (3.10), `frozendict` and `sentinel` (3.15) [Hugo van Kemenade][]
57
+ - enh(python) correctly highlight `lazy import` syntax from PEP 810 [Peter Bierma][]
58
+ - enh(python) support t-strings [Nicolas Le Cam][]
59
+ - fix(ruby) don't treat the scope resolution operator `::` as a symbol, issue #4294 [Hashim Khan][]
60
+ - enh(rust) add `safe` keyword [Frances Wingerter][]
61
+ - enh(rust) include the `raw` borrow operator in keywords [Shiva Kiran Koninty][]
62
+ - enh(rust) parse f16 and f128 literals [usamoi][]
63
+ - fix(rust) allow function invocations whose names start with a keyword [Xia Li-yao][]
64
+ - fix(rust) recognize `\\` and `\"` char-literal escapes so highlighting doesn't leak, issue #4351 [Sarath Francis][]
65
+ - enh(shell) match period (.) as part of shell prompt [Ian Wienand][]
66
+ - enh(sqf) update to Arma 3 v2.22 [LouMontana][]
67
+ - fix(xml) remove recursive sublanguage references to prevent ReDoS [petejm][]
68
+
69
+ Documentation:
70
+
71
+ - docs(php) explain the difference between `php` and `php-template` [Zain Asif][]
72
+ - document LLVM IR in SUPPORTED_LANGUAGES [Jan Schultke][]
73
+ - document the existing `pwsh` alias for PowerShell [helpimnotdrowning][]
74
+ - list languages with category "common" in SUPPORTED_LANGUAGES [Marc Bernard][]
75
+ - remind contributors to run `npm i` [Proliecan][]
76
+ - fix typos in README.CDN.md [Zitrone][]
77
+
78
+ Themes:
79
+
80
+ - added Equinox theme [Griffon Langyer][]
81
+
82
+ Build / Tooling:
83
+
84
+ - (build) allow third-party packages to override default languages [Lysxia][]
85
+ - (build) use Trusted Publishers in the publishing pipeline [allejo][]
86
+ - fix(types) allow RegExp in `Mode.keywords` [KJyang-0114][]
87
+ - refactor(tools) replace `@colors/colors` with ansis [webdiscus][]
88
+ - chore: dependency updates
89
+
90
+ CONTRIBUTORS
91
+
92
+ [spokodev]: https://github.com/spokodev
93
+ [gg582]: https://github.com/gg582
94
+ [Dhruv Maniya]: https://github.com/iamdhrv
95
+ [jiaopengzi]: https://github.com/jiaopengzi
96
+ [Mark Scherer]: https://github.com/dereuromark
97
+ [Ryne Andal]: https://github.com/ryneandal
98
+ [Lehlogonolo Poole]: https://github.com/yetnt
99
+ [Romain Beauxis]: https://github.com/toots
100
+ [Kaida-Amethyst]: https://github.com/Kaida-Amethyst
101
+ [Dan Chao]: https://github.com/bioball
102
+ [Joshua Raphael]: https://github.com/joshraphael
103
+ [Naoya Hatta]: https://github.com/dalance
104
+ [JGalego]: https://github.com/JGalego
105
+ [patricksalo]: https://github.com/patricksalo
106
+ [Styx0x6]: https://github.com/styx0x6
107
+ [Mark Xian]: https://github.com/xianjianlf2
108
+ [Jayesh Bhade]: https://github.com/Jaybhade
109
+ [Pablo]: https://github.com/MsfPablo
110
+ [David Pavlovschii]: https://github.com/davidpavlovschi
111
+ [Anonymous Maarten]: https://github.com/madebr
112
+ [Zain Asif]: https://github.com/zain-asif-dev
113
+ [Sarath Francis]: https://github.com/sarathfrancis90
114
+ [Hama Tanveer]: https://github.com/ezforhamza
115
+ [Konstantin Baltsat]: https://github.com/Baltsat
116
+ [guuido]: https://github.com/guuido
117
+ [Joey Huang]: https://github.com/oiahoon
118
+ [Checconio]: https://github.com/Checconio
119
+ [Hashim Khan]: https://github.com/Hashim1999164
120
+ [Hirse]: https://github.com/Hirse
121
+ [greymoth]: https://github.com/mahirhir
122
+ [Hannes Wallnoefer]: https://github.com/hns
123
+ [Dsaquel]: https://github.com/Dsaquel
124
+ [DarkMatter-999]: https://github.com/DarkMatter-999
125
+ [Francesco Paolo Severino]: https://github.com/fpseverino
126
+ [arturict]: https://github.com/arturict
127
+ [utam-1]: https://github.com/utam-1
128
+ [Nibiri]: https://github.com/NibiriTheMan
129
+ [Mayank Gupta]: https://github.com/Mynk11
130
+ [Jan T. Sott]: https://github.com/idleberg
131
+ [Hugo van Kemenade]: https://github.com/hugovk
132
+ [Peter Bierma]: https://github.com/ZeroIntensity
133
+ [Nicolas Le Cam]: https://github.com/KuSh
134
+ [Frances Wingerter]: https://github.com/fw-immunant
135
+ [Shiva Kiran Koninty]: https://github.com/skr4n
136
+ [usamoi]: https://github.com/usamoi
137
+ [Xia Li-yao]: https://github.com/Lysxia
138
+ [Ian Wienand]: https://github.com/ianw
139
+ [LouMontana]: https://github.com/LouMontana
140
+ [petejm]: https://github.com/petejm
141
+ [Jan Schultke]: https://github.com/eisenwave
142
+ [helpimnotdrowning]: https://github.com/helpimnotdrowning
143
+ [Marc Bernard]: https://github.com/mbtools
144
+ [Proliecan]: https://github.com/Proliecan
145
+ [Zitrone]: https://github.com/quantenzitrone
146
+ [Griffon Langyer]: https://github.com/rfon6ngy
147
+ [Lysxia]: https://github.com/Lysxia
148
+ [allejo]: https://github.com/allejo
149
+ [KJyang-0114]: https://github.com/KJyang-0114
150
+ [webdiscus]: https://github.com/webdiscus
151
+
152
+
153
+ ## Version 11.11.2
154
+
155
+ Parser Engine:
156
+
157
+ - fix illegal handling at end of input code [Josh Goebel][]
158
+
159
+ New Grammars:
160
+
161
+ - added 3rd party Aiken grammar to SUPPORTED_LANGUAGES [Josh Marchand][]
162
+ - added 3rd party VoltScript grammar to SUPPORTED_LANGUAGES [Chester Moses][]
163
+ - added 3rd party Gleam grammar to SUPPORTED_LANGUAGES [Filip Hoffmann][]
164
+ - added 3rd party Magik grammar to SUPPORTED_LANGUAGES [Sebastiaan Speck][]
165
+ - added 3rd party Prisma grammar to SUPPORTED_LANGUAGES [SungHyun Kim][]
166
+ - added 3rd party Bicep grammar to SUPPORTED_LANGUAGES [Anthony Martin][]
167
+ - added 3rd party L4 grammar to SUPPORTED_LANGUAGES [Thomas Gorissen][]
168
+ - added 3rd party Abc Notation grammar to SUPPORTED_LANGUAGES [NriotHrreion][]
169
+
170
+ Core Grammars:
171
+
172
+ - fix(cpp) exclude keywords from function calls [Eisenwave][]
173
+ - enh(csp) add missing directives / keywords from MDN (7 more) [Max Liashuk][]
174
+ - enh(ada) add new `parallel` keyword, allow `[]` for Ada 2022 [Max Reznik][]
175
+ - fix(javascript) correctly highlight 'for await' again [wolfgang42][]
176
+ - fix(diff) fix unified diff hunk header regex to allow unpaired numbers [Chris Wilson][]
177
+ - enh(php) support single line and hash comments in attributes, constructor and functions [Antoine Musso][]
178
+ - fix(ex) adds support for `?'` char literal and missing `defguardp` keyword [Kevin Bloch][]
179
+ - enh(json) add json5 support [Kerry Shetline][]
180
+ - fix(csharp) Support digit separators [te-ing][]
181
+ - fix(css) `unicode-range` parsing, issue #4253 [Kerry Shetline][]
182
+
183
+ Documentation:
184
+
185
+ - update link to Odin grammar to maintained version [Marian Pekár][]
186
+ - fix type `highlight` deprecated message [Brandon Dong][]
187
+ - fixed typo and incorrect git command [SungHyun Kim][]
188
+ - fix CONTRIBUTING.md broken badge link [SungHyun Kim][]
189
+ - alphabetized languages + upper-cased BASIC in SUPPORTED_LANGUAGES.md [Adam Lui][]
190
+ - deduplicate JSON from SUPPORTED_LANGUAGES [Lukasz Czajczyk][]
191
+
192
+ Themes:
193
+
194
+ - Fix: cybertopia themes render correctly in shadow DOM [hbgl][]
195
+ - added "vs Dark " theme [Twineee1][]
196
+
197
+ CONTRIBUTORS
198
+
199
+ [Josh Goebel]: https://github.com/joshgoebel
200
+ [Marian Pekár]: https://github.com/marianpekar
201
+ [Eisenwave]: https://github.com/Eisenwave/
202
+ [Brandon Dong]: https://github.com/brandondong
203
+ [SungHyun Kim]: https://github.com/witch-factory
204
+ [Lukasz Czajczyk]: https://github.com/LukeCz
205
+ [Josh Marchand]: https://github.com/yHSJ
206
+ [Max Liashuk]: https://github.com/probil
207
+ [Max Reznik]: https://github.com/reznikmm
208
+ [Kevin Bloch]: https://github.com/codingthat
209
+ [Chris Wilson]: https://github.com/sushicw
210
+ [Antoine Musso]: https://github.com/hashar
211
+ [Chester Moses]: https://github.com/Chester-Moses-HCL
212
+ [Kerry Shetline]: https://github.com/kshetline
213
+ [Adam Lui]: https://github.com/adamlui
214
+ [Sebastiaan Speck]: https://github.com/sebastiaanspeck
215
+ [Filip Hoffmann]: https://github.com/folospior
216
+ [Twineee1]: https://github.com/Twineee1
217
+ [hbgl]: https://github.com/hbgl
218
+ [Thomas Gorissen]: https://github.com/serrynaimo
219
+ [te-ing]: https://github.com/te-ing
220
+ [Anthony Martin]: https://github.com/anthony-c-martin
221
+ [NriotHrreion]: https://github.com/NriotHrreion
222
+
223
+
224
+ ## Version 11.11.1
225
+
226
+ - Fixes regression with Rust grammar.
227
+
228
+
229
+ ## Version 11.11.0
230
+
231
+ CAVEATS / POTENTIALLY BREAKING CHANGES
232
+
233
+ - Nothing yet.
234
+
235
+
236
+ Core Grammars:
237
+
238
+ - fix(rust) - adds emoji support in single quote strings [joshgoebel][]
239
+ - fix(apache) - support line continuation via `\` [Josh Goebel][]
240
+ - fix(makefile) - allow strings inside `$()` expressions [aneesh98][]
241
+ - enh(arcade) updated to ArcGIS Arcade version 1.29 [Kristian Ekenes][]
242
+ - enh(css) add all properties listed on MDN (96 additions including `anchor-name`, `aspect-ratio`, `backdrop-filter`, `container`, `margin-trim`, `place-content`, `scroll-timeline`, ...) [BaliBalo][]
243
+ - enh(excel) add built-in functions for Excel 365 release to 2024 [Danny Winrow][]
244
+ - enh(erlang) OTP 27 triple-quoted strings [nixxquality][]
245
+ - enh(erlang) OTP 27 doc attribute [nixxquality][]
246
+ - enh(erlang) OTP 27 Sigil type [nixxquality][]
247
+ - enh(erlang) OTP25/27 maybe statement [nixxquality][]
248
+ - enh(dart) Support digit-separators in number literals [Sam Rawlins][]
249
+ - enh(csharp) add Contextual keywords `file`, `args`, `dynamic`, `record`, `required` and `scoped` [Alvin Joy][]
250
+ - enh(lua) add 'pluto' as an alias [Sainan]
251
+ - enh(bash) add reserved keywords `time` and `coproc` [Álvaro Mondéjar][]
252
+ - enh(nix) update keywords [h7x4][]
253
+ - enh(nix) support paths [h7x4][]
254
+ - enh(nix) support lookup paths [h7x4][]
255
+ - enh(nix) support operators [h7x4][]
256
+ - enh(nix) support REPL keywords [h7x4][]
257
+ - enh(nix) support markdown comments [h7x4][]
258
+ - enh(nix) support basic function params [h7x4][]
259
+ - enh(nix) better parsing of attrsets [h7x4][]
260
+ - enh(nsis) add missing language features [idleberg][]
261
+ - enh(nsis) add test cases [idleberg][]
262
+ - fix(nsis) prevent overlapping keywords to conflict [idleberg][]
263
+ - fix(c) - Fixed hex numbers with decimals [Dxuian]
264
+ - fix(typescript) - Fixedoptional property not highlighted correctly [Dxuian]
265
+ - fix(ruby) - fix `|=` operator false positives (as block arguments) [Aboobacker MK]
266
+ - enh(gcode) rewrote language for modern gcode support [Barthélémy Bonhomme][]
267
+ - fix(sql) - Fixed sql primary key and foreign key spacing issue [Dxuian]
268
+ - fix(cpp) added flat_set and flat_map as a part of cpp 23 version [Lavan]
269
+ - fix(yaml) - Fixed special chars in yaml [Dxuian]
270
+ - fix(basic) - Fixed closing quotation marks not required for a PRINT statement [Somya]
271
+ - fix(nix) remove `add` builtin [h7x4][]
272
+ - fix(nix) mark `or` as builtin instead of literal [h7x4][]
273
+ - fix(nix) handle `'''` string escapes [h7x4][]
274
+ - fix(nix) handle backslash string escapes [h7x4][]
275
+ - fix(nix) don't mix escapes for `"` and `''` strings [h7x4][]
276
+ - fix(swift) - Fixed syntax highlighting for class func/var declarations [guuido]
277
+ - enh(dns) character strings (with escapes), DNS classes, grouping parens; fix unquoted TXT vs `;` comments [Checconio][]
278
+
279
+ - fix(yaml) - Fixed wrong escaping behavior in single quoted strings [guuido]
280
+ - enh(nim) - Add `concept` and `defer` to list of Nim keywords [Jake Leahy]
281
+ - fix(cpp) - Exclude keywords from highlighting as function calls [Eisenwave]
282
+ - fix(llvm) fixed highlighting for C-style block comments [utam-1]
283
+ New Grammars:
284
+
285
+ - added 3rd party TTCN-3 grammar to SUPPORTED_LANGUAGES [Osmocom][]
286
+ - added 3rd party Odin grammar to SUPPORTED_LANGUAGES [clsource][]
287
+ - added 3rd party Liquid grammar to SUPPORTED_LANGUAGES [Laurel King][]
288
+
289
+ Developer Tools:
290
+
291
+ - Nothing yet.
292
+
293
+ Themes:
294
+
295
+ - Added `Rosé Pine` theme [William Wilkinson][]
296
+ - Added `Cybertopia Cherry` theme [Alexandre ZANNI][]
297
+ - Added `Cybertopia Dimmer` theme [Alexandre ZANNI][]
298
+ - Added `Cybertopia Icecap` theme [Alexandre ZANNI][]
299
+ - Added `Cybertopia Saturated` theme [Alexandre ZANNI][]
300
+
301
+ Improvements:
302
+
303
+ - Resolve the memory leak problem when creating multiple Highlight.js instances [Imken][]
304
+
305
+ CONTRIBUTORS
306
+
307
+ [Josh Goebel]: https://github.com/joshgoebel
308
+ [aneesh98]: https://github.com/aneesh98
309
+ [BaliBalo]: https://github.com/BaliBalo
310
+ [William Wilkinson]: https://github.com/wilkinson4
311
+ [nixxquality]: https://github.com/nixxquality
312
+ [srawlins]: https://github.com/srawlins
313
+ [Alvin Joy]: https://github.com/alvinsjoy
314
+ [Dxuian]:https://github.com/Dxuian
315
+ [Aboobacker MK]: https://github.com/tachyons
316
+ [Imken]: https://github.com/immccn123
317
+ [Sainan]: https://github.com/Sainan
318
+ [Osmocom]: https://github.com/osmocom
319
+ [Álvaro Mondéjar]: https://github.com/mondeja
320
+ [Alexandre ZANNI]: https://github.com/noraj
321
+ [Barthélémy Bonhomme]: https://github.com/barthy-koeln
322
+ [Lavan]: https://github.com/jvlavan
323
+ [Somya]: https://github.com/somya-05
324
+ [guuido]: https://github.com/guuido
325
+ [Checconio]: https://github.com/Checconio
326
+ [clsource]: https://github.com/clsource
327
+ [Jake Leahy]: https://github.com/ire4ever1190
328
+ [Laurel King]: https://github.com/laurelthorburn
329
+ [Kristian Ekenes]: https://github.com/ekenes
330
+ [Danny Winrow]: https://github.com/dannywinrow
331
+ [Eisenwave]: https://github.com/Eisenwave/
332
+
333
+
334
+ ## Version 11.10.0
335
+
336
+ CAVEATS / POTENTIALLY BREAKING CHANGES
337
+
338
+ - Drops support for Node 16.x, which is no longer supported by Node.js.
339
+
340
+ Core Grammars:
341
+
342
+ - enh(typescript) add support for `satisfies` operator [Kisaragi Hiu][]
343
+ - enc(c) added more C23 keywords [Melkor-1][]
344
+ - enh(json) added jsonc as an alias [BackupMiles][]
345
+ - enh(gml) updated to latest language version (GML v2024.2) [gnysek][]
346
+ - enh(c) added more C23 keywords and preprcoessor directives [Eisenwave][]
347
+ - enh(js/ts) support namespaced tagged template strings [Aral Balkan][]
348
+ - enh(perl) fix false-positive variable match at end of string [Josh Goebel][]
349
+ - fix(cpp) not all kinds of number literals are highlighted correctly [Lê Duy Quang][]
350
+ - fix(css) fix overly greedy pseudo class matching [Bradley Mackey][]
351
+ - enh(arcade) updated to ArcGIS Arcade version 1.24 [Kristian Ekenes][]
352
+ - fix(typescript): params types [Mohamed Ali][]
353
+ - fix(rust) fix escaped double quotes in string [Mohamed Ali][]
354
+ - fix(rust) fix for r# raw identifier not being highlighted correctly. [JaeBaek Lee][]
355
+ - enh(rust) Adding union to be recognized as a keyword in Rust. [JaeBaek Lee][]
356
+ - fix(yaml) fix for yaml with keys having brackets highlighted incorrectly [Aneesh Kulkarni][]
357
+ - fix(csharp) add raw string highlighting for C# 11. [Tara][]
358
+ - fix(bash) fix # within token being detected as the start of a comment [Felix Uhl][]
359
+ - fix(python) fix `or` conflicts with string highlighting [Mohamed Ali][]
360
+ - enh(python) adds a scope to the `self` variable [Lee Falin][]
361
+ - enh(delphi) allow digits to be omitted for hex and binary literals [Jonah Jeleniewski][]
362
+ - enh(delphi) add support for digit separators [Jonah Jeleniewski][]
363
+ - enh(delphi) add support for character strings with non-decimal numerics [Jonah Jeleniewski][]
364
+ - fix(javascript) incorrect function name highlighting [CY Fung][]
365
+ - fix(1c) fix escaped symbols "+-;():=,[]" literals [Vitaly Barilko][]
366
+ - fix(swift) correctly highlight generics and conformances in type definitions [Bradley Mackey][]
367
+ - enh(swift) add package keyword [Bradley Mackey][]
368
+ - fix(swift) ensure keyword attributes highlight correctly [Bradley Mackey][]
369
+ - fix(types) fix interface LanguageDetail > keywords [Patrick Chiu]
370
+ - enh(java) add `goto` to be recognized as a keyword in Java [Alvin Joy][]
371
+ - enh(bash) add keyword `sudo` [Alvin Joy][]
372
+ - fix(haxe) captures `new` keyword without capturing it within variables/class names [Cameron Taylor][]
373
+ - fix(go) fix go number literals to accept `_` separators, add hex p exponents [Lisa Ugray][]
374
+ - enh(markdown) add entity support [David Schach][] [TaraLei][]
375
+ - enh(css) add `justify-items` and `justify-self` attributes [Vasily Polovnyov][]
376
+ - enh(css) add `accent-color`, `appearance`, `color-scheme`, `rotate`, `scale` and `translate` attributes [Carl Räfting][]
377
+ - fix(fortran) fixes parsing of keywords delimited by dots [Julien Bloino][]
378
+ - enh(css) add `select`, `option`, `optgroup`, `picture` and `source` to list of known tags [Vasily Polovnyov][]
379
+ - enh(css) add `inset`, `inset-*`, `border-start-*-radius` and `border-end-*-radius` attributes [Vasily Polovnyov][]
380
+ - enh(css) add `text-decoration-skip-ink`, `text-decoration-thickness` and `text-underline-offset` attributes [Vasily Polovnyov][]
381
+ - enh(java) add `when` to be recognized as a keyword in Java [Chiel van de Steeg][]
382
+
383
+ New Grammars:
384
+
385
+ - added 3rd party CODEOWNERS grammar to SUPPORTED_LANGUAGES [nataliia-radina][]
386
+ - added 3rd party Luau grammar to SUPPORTED_LANGUAGES [Robloxian Demo][]
387
+ - added 3rd party ReScript grammar to SUPPORTED_LANGUAGES [Paul Tsnobiladzé][]
388
+ - added 3rd party Zig grammar to SUPPORTED_LANGUAGES [Hyou BunKen][]
389
+ - added 3rd party WGSL grammar to SUPPORTED_LANGUAGES [Arman Uguray][]
390
+ - added 3rd party Unison grammar to SUPPORTED_LANGUAGES [Rúnar Bjarnason][]
391
+ - added 3rd party Phix grammar to SUPPORTED_LANGUAGES [PeteLomax][]
392
+ - added 3rd party Mirth grammar to SUPPORTED_LANGUAGES [Sierra][]
393
+ - added 3rd party JSONata grammar to SUPPORTED_LANGUAGES [Vlad Dimov][]
394
+
395
+ Developer Tool:
396
+
397
+ - enh(tools): order CSS options picklist [David Schach][]
398
+ - enh(tools): remove duplicate CSS options [David Schach][]
399
+ - (typescript): deprecate old `highlight` API [Misha Kaletsky][]
400
+
401
+ Themes:
402
+
403
+ - Added `1c-light` theme a like in the IDE 1C:Enterprise 8 (for 1c) [Vitaly Barilko][]
404
+
405
+ [Kisaragi Hiu]: https://github.com/kisaragi-hiu
406
+ [Melkor-1]: https://github.com/Melkor-1
407
+ [PeteLomax]: https://github.com/petelomax
408
+ [gnysek]: https://github.com/gnysek
409
+ [Eisenwave]: https://github.com/Eisenwave
410
+ [Aral Balkan]: https://github.com/aral
411
+ [Lê Duy Quang]: https://github.com/leduyquang753
412
+ [Mohamed Ali]: https://github.com/MohamedAli00949
413
+ [JaeBaek Lee]: https://github.com/ThinkingVincent
414
+ [Bradley Mackey]: https://github.com/bradleymackey
415
+ [Kristian Ekenes]: https://github.com/ekenes
416
+ [Aneesh Kulkarni]: https://github.com/aneesh98
417
+ [Bruno Meneguele]: https://github.com/bmeneg
418
+ [Tara]: https://github.com/taralei
419
+ [Felix Uhl]: https://github.com/iFreilicht
420
+ [nataliia-radina]: https://github.com/Nataliia-Radina
421
+ [Robloxian Demo]: https://github.com/RobloxianDemo
422
+ [Paul Tsnobiladzé]: https://github.com/tsnobip
423
+ [Jonah Jeleniewski]: https://github.com/cirras
424
+ [Josh Goebel]: https://github.com/joshgoebel
425
+ [CY Fung]: https://github.com/cyfung1031
426
+ [Vitaly Barilko]: https://github.com/Diversus23
427
+ [Patrick Chiu]: https://github.com/patrick-kw-chiu
428
+ [Alvin Joy]: https://github.com/alvinsjoy
429
+ [Lisa Ugray]: https://github.com/lugray
430
+ [TaraLei]: https://github.com/TaraLei
431
+ [Cameron Taylor]: https://github.com/ninjamuffin99
432
+ [Vasily Polovnyov]: https://github.com/vast
433
+ [Arman Uguray]: https://github.com/armansito
434
+ [Rúnar Bjarnason]: https://github.com/runarorama
435
+ [Carl Räfting]: https://github.com/carlrafting
436
+ [BackupMiles]: https://github.com/BackupMiles
437
+ [Julien Bloino]: https://github.com/jbloino
438
+ [Sierra]: https://github.com/casuallyblue
439
+ [Vlad Dimov]: https://github.com/DevDimov
440
+ [Chiel van de Steeg]: https://github.com/cvdsteeg
441
+
442
+
443
+ ## Version 11.9.0
444
+
445
+ CAVEATS / POTENTIALLY BREAKING CHANGES
446
+
447
+ - Drops support for Node 14.x, which is no longer supported by Node.js.
448
+ - In the `node` build `styles/*.css` files now ship un-minified
449
+ with minified counterparts as: `styles/*.min.css` [mvorisek][]
450
+ (this makes things consistent with our `cdn` builds)
451
+
452
+ Parser:
453
+
454
+ - (enh) prevent re-highlighting of an element [joshgoebel][]
455
+ - (chore) Remove discontinued badges from README [Bradley Mackey][]
456
+ - (chore) Fix build size report [Bradley Mackey][]
457
+
458
+ New Grammars:
459
+
460
+ - added 3rd party Iptables grammar to SUPPORTED_LANGUAGES [Checconio][]
461
+ - added 3rd party x86asmatt grammar to SUPPORTED_LANGUAGES [gondow][]
462
+ - added 3rd party riscv64 grammar to SUPPORTED_LANGUAGES [aana-h2][]
463
+ - added 3rd party Ballerina grammar to SUPPORTED_LANGUAGES [Yasith Deelaka][]
464
+
465
+ Core Grammars:
466
+
467
+ - fix(cpp) fixed highlighter break state [Md Saad Akhtar][]
468
+ - fix(rust) added negative-lookahead for callable keywords `if` `while` `for` [Omar Hussein][]
469
+ - enh(armasm) added `x0-x30` and `w0-w30` ARMv8 registers [Nicholas Thompson][]
470
+ - enh(haxe) added `final`, `is`, `macro` keywords and `$` identifiers [Robert Borghese][]
471
+ - enh(haxe) support numeric separators and suffixes [Robert Borghese][]
472
+ - fix(haxe) fixed metadata arguments and support non-colon syntax [Robert Borghese][]
473
+ - fix(haxe) differentiate `abstract` declaration from keyword [Robert Borghese][]
474
+ - fix(bash) do not delimit a string by an escaped apostrophe [hancar][]
475
+ - enh(swift) support `macro` keyword [Bradley Mackey][]
476
+ - enh(swift) support parameter pack keywords [Bradley Mackey][]
477
+ - enh(swift) regex literal support [Bradley Mackey][]
478
+ - enh(swift) `@unchecked` and `@Sendable` support [Bradley Mackey][]
479
+ - enh(scala) add using directives support `//> using foo bar` [Jamie Thompson][]
480
+ - fix(scala) fixed comments in constructor arguments not being properly highlighted [Isaac Nonato][]
481
+ - enh(swift) ownership modifiers support [Bradley Mackey][]
482
+ - enh(nsis) Add `!assert` compiler flag [idleberg][]
483
+ - fix(haskell) do not treat double dashes inside infix operators as comments [Zlondrej][]
484
+ - enh(rust) added `eprintln!` macro [qoheniac][]
485
+ - enh(leaf) update syntax to 4.0 [Samuel Bishop][]
486
+ - fix(reasonml) simplify syntax and align it with ocaml [jchavarri][]
487
+ - fix(swift) `warn_unqualified_access` is an attribute [Bradley Mackey][]
488
+ - enh(swift) macro attributes are highlighted as keywords [Bradley Mackey][]
489
+ - enh(stan) updated for version 2.33 (#3859) [Brian Ward][]
490
+ - enh(llvm) match additional types [wtz][]
491
+ - fix(css) added '_' css variable detection [Md Saad Akhtar][]
492
+ - enh(groovy) add `record` and `var` as keywords [Guillaume Laforge][]
493
+
494
+ Developer Tool:
495
+
496
+ - (chore) Update dev tool to use the new `highlight` API. [Shah Shabbir Ahmmed][]
497
+ - (enh) Auto-update the highlighted output when the language dropdown changes. [Shah Shabbir Ahmmed][]
498
+
499
+ [Robert Borghese]: https://github.com/RobertBorghese
500
+ [Isaac Nonato]: https://github.com/isaacnonato
501
+ [Shah Shabbir Ahmmed]: https://github.com/shabbir23ah
502
+ [Josh Goebel]: https://github.com/joshgoebel
503
+ [Checconio]: https://github.com/Checconio
504
+ [Bradley Mackey]: https://github.com/bradleymackey
505
+ [mvorisek]: https://github.com/mvorisek
506
+ [qoheniac]: https://github.com/qoheniac
507
+ [Samuel Bishop]: https://github.com/dannflor
508
+ [gondow]: https://github.com/gondow
509
+ [jchavarri]: https://github.com/jchavarri
510
+ [aana-h2]: https://github.com/aana-h2
511
+ [Nicholas Thompson]: https://github.com/NAThompson
512
+ [Yasith Deelaka]: https://github.com/YasithD
513
+ [Brian Ward]: https://github.com/WardBrian
514
+ [wtz]: https://github.com/wangtz0607
515
+ [Md Saad Akhtar]: https://github.com/akhtarmdsaad
516
+ [Guillaume Laforge]: https://github.com/glaforge
517
+
518
+
519
+ ## Version 11.8.0
520
+
521
+ Parser engine:
522
+
523
+ - added a function to default export to generate a fresh highlighter instance to be used by extensions [WisamMechano][]
524
+ - added BETA `__emitTokens` key to grammars to allow then to direct their own parsing, only using Highlight.js for the HTML rendering [Josh Goebel][]
525
+ - (enh) add `removePlugin` api [faga295][]
526
+ - (fix) typo in language name of `JavaScript` [Cyrus Kao][]
527
+
528
+ New Grammars:
529
+
530
+ - added 3rd party Lang grammar to SUPPORTED_LANGUAGES [AdamRaichu][]
531
+ - added 3rd party C3 grammar to SUPPORTED_LANGUAGES [aliaegik][]
532
+
533
+ Core Grammars:
534
+
535
+ - enh(sql) support `_` in variable names [joshgoebel][]
536
+ - enh(mathematica) update keywords list to 13.2.1 [arnoudbuzing][]
537
+ - enh(protobuf) add `proto` alias for Protobuf [dimitropoulos][]
538
+ - enh(sqf) latest changes in Arma 3 v2.11 [Leopard20][]
539
+ - enh(js/ts) Added support for GraphQL tagged template strings [Ali Ukani][]
540
+ - enh(javascript) add sessionStorage to list of built-in variables [Jeroen van Vianen][]
541
+ - enh(http) Add support for HTTP/3 [Rijenkii][]
542
+ - added 3rd party Motoko grammar to SUPPORTED_LANGUAGES [rvanasa][]
543
+ - added 3rd party Candid grammar to SUPPORTED_LANGUAGES [rvanasa][]
544
+ - fix(haskell) Added support for characters [CrystalSplitter][]
545
+ - enh(dart) Add `base`, `interface`, `sealed`, and `when` keywords [Sam Rawlins][]
546
+ - enh(php) detect newer more flexible NOWdoc syntax (#3679) [Timur Kamaev][]
547
+ - enh(python) improve autodetection of code with type hinting any function's return type (making the `->` operator legal) [Keyacom][]
548
+ - enh(bash) add `select` and `until` as keywords
549
+
550
+ [arnoudbuzing]: https://github.com/arnoudbuzing
551
+ [aliaegik]: https://github.com/aliaegik
552
+ [Josh Goebel]: https://github.com/joshgoebel
553
+ [Timur Kamaev]: https://github.com/doiftrue
554
+ [Leopard20]: https://github.com/Leopard20/
555
+ [WisamMechano]: https://github.com/wisammechano
556
+ [faga295]: https://github.com/faga295
557
+ [AdamRaichu]: https://github.com/AdamRaichu
558
+ [Ali Ukani]: https://github.com/ali
559
+ [Jeroen van Vianen]: https://github.com/morinel
560
+ [gnysek]: https://github.com/gnysek
561
+ [Rijenkii]: https://github.com/rijenkii
562
+ [faga295]: https://github.com/faga295
563
+ [rvanasa]: https://github.com/rvanasa
564
+ [CrystalSplitter]: https://github.com/CrystalSplitter
565
+ [Sam Rawlins]: https://github.com/srawlins
566
+ [Keyacom]: https://github.com/Keyacom
567
+ [Boris Verkhovskiy]: https://github.com/verhovsky
568
+ [Cyrus Kao]: https://github.com/CyrusKao
569
+ [Zlondrej]: https://github.com/zlondrej
570
+
571
+
572
+ ## Version 11.7.0
573
+
574
+ New Grammars:
575
+
576
+ - added 3rd party LookML grammar to SUPPORTED_LANGUAGES [Josh Temple][]
577
+ - added 3rd party FunC grammar to SUPPORTED_LANGUAGES [Nikita Sobolev][]
578
+ - Added 3rd party Flix grammar to SUPPORTED_LANGUAGES [The Flix Organisation][]
579
+ - Added 3rd party RVT grammar to SUPPORTED_LANGUAGES [Sopitive][]
580
+
581
+ Grammars:
582
+
583
+ - enh(scheme) add `scm` alias for Scheme [matyklug18][]
584
+ - fix(typescript) patterns like `<T =` are not JSX [Josh Goebel][]
585
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
586
+ - enh(Ruby) misc improvements (kws, class names, etc) [Josh Goebel][]
587
+ - fix(js) do not flag `import()` as a function, rather a keyword [nathnolt][]
588
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
589
+ - fix(nix) support escaped dollar signs in strings [h7x4][]
590
+ - enh(cmake) support bracket comments [Hirse][]
591
+ - enh(java) add yield keyword to java [MBoegers][]
592
+ - enh(java) add permits keyword to java [MBoegers][]
593
+ - fix(javascript/typescript) correct identifier matching when using numbers [Lachlan Heywood][]
594
+
595
+ Improvements:
596
+
597
+ - Documentation typo fix by [Eddymens][]
598
+
599
+ [matyklug18]: https://github.com/matyklug18
600
+ [Josh Goebel]: https://github.com/joshgoebel
601
+ [Josh Temple]: https://github.com/joshtemple
602
+ [nathnolt]: https://github.com/nathnolt
603
+ [Nick Chambers]: https://github.com/uplime
604
+ [h7x4]: https://github.com/h7x4
605
+ [Hirse]: https://github.com/Hirse
606
+ [The Flix Organisation]: https://github.com/flix
607
+ [MBoegers]: https://github.com/MBoegers
608
+ [Lachlan Heywood]: https://github.com/lachieh
609
+ [Eddymens]: https://github.com/eddymens
610
+ [Sopitive]: https://github.com/Sopitive
611
+
612
+
613
+ ## Version 11.6.0
614
+
615
+ Supported Node.js versions:
616
+
617
+ - (chore) Drops support for Node 12.x, which is no longer supported by Node.js.
618
+
619
+
620
+ Default build changes:
621
+
622
+ - add `wasm` to default `:common` build (#3526) [Josh Goebel][]
623
+ - add `graphql` to default `:common` build (#3526) [Josh Goebel][]
624
+
625
+
626
+ Grammars:
627
+ - fix(json) changed null/booleans from `keyword` to `literal` [shikhar13012001][]
628
+ - enh(gml) reorganized and added additional keywords [Bluecoreg][]
629
+ - enh(csharp) Added support for the new `scoped` keyword in C# (#3571) [David Pine][]
630
+ - enh(scala) add `transparent` keyword [Matt Bovel][]
631
+ - fix(rust) highlight types immediately preceeding `::` (#3540) [Josh Goebel][]
632
+ - Added 3rd party Apex grammar to SUPPORTED_LANGUAGES (#3546) [David Schach][]
633
+ - fix(rust) recognize `include_bytes!` macro (#3541) [Serial-ATA][]
634
+ - fix(java) do not intepret `==` as a variable declaration [Mousetail][]
635
+ - enh(swift) add SE-0335 existential `any` keyword (#3515) [Bradley Mackey][]
636
+ - enh(swift) add support for `distributed` keyword [Marcus Ortiz][]
637
+ - enh(xml) recognize Unicode letters instead of only ASCII letters in XML element and attribute names (#3256)[Martin Honnen][]
638
+ - Added 3rd party Toit grammar to SUPPORTED_LANGUAGES [Serzhan Nasredin][]
639
+ - Use substring() instead of deprecated substr() [Tobias Buschor][]
640
+ - Added 3rd party Oak grammar to SUPPORTED_LANGUAGES [Tim Smith][]
641
+ - enh(python) add `match` and `case` keywords [Avrumy Lunger][]
642
+ - Added 3rd party COBOL grammar to SUPPORTED_LANGUAGES [Gabriel Gonçalves][]
643
+
644
+ [shikhar13012001]: https://github.com/shikhar13012001
645
+ [Bluecoreg]: https://github.com/Bluecoreg
646
+ [Matt Bovel]: https://github.com/mbovel
647
+ [David Schach]: https://github.com/dschach
648
+ [Serial-ATA]: https://github.com/Serial-ATA
649
+ [Bradley Mackey]: https://github.com/bradleymackey
650
+ [Marcus Ortiz]: https://github.com/mportiz08
651
+ [Martin Honnen]: https://github.com/martin-honnen
652
+ [Serzhan Nasredin]: https://github.com/snxx-lppxx
653
+ [Tobias Buschor]: https://github.com/nuxodin/
654
+ [Tim Smith]: https://github.com/timlabs
655
+ [Avrumy Lunger]: https://github.com/vrumger
656
+ [Mousetail]: https://github.com/mousetail
657
+ [Gabriel Gonçalves]: https://github.com/KTSnowy
658
+ [Nikita Sobolev]: https://github.com/sobolevn
659
+ [Misha Kaletsky]: https://github.com/mmkal
660
+
661
+ ## Version 11.5.0
662
+
663
+ Themes:
664
+ - Added `Tokyo-Night-dark` theme [Henri Vandersleyen][]
665
+ - Added `Tokyo-Night-light` theme [Henri Vandersleyen][]
666
+ - Added `panda-syntax-dark` theme [Annmarie Switzer][]
667
+ - Added `panda-syntax-light` theme [Annmarie Switzer][]
668
+
669
+ New Grammars:
670
+
671
+ - Added GraphQL to SUPPORTED_LANGUAGES [John Foster][]
672
+ - Added Macaulay2 to SUPPORTED_LANGUAGES [Doug Torrance][]
673
+
674
+ Grammars:
675
+
676
+ - enh(ruby) lots of small Ruby cleanups/improvements [Josh Goebel][]
677
+ - enh(objectivec) add `type` and `variable.language` scopes [Josh Goebel][]
678
+ - enh(xml) support processing instructions (#3492) [Josh Goebel][]
679
+ - enh(ruby ) better support multi-line IRB prompts
680
+ - enh(bash) improved keyword `$pattern` (numbers allowed in command names) [Martin Mattel][]
681
+ - add `meta.prompt` scope for REPL prompts, etc [Josh Goebel][]
682
+ - fix(markdown) Handle `***Hello world***` without breaking [Josh Goebel][]
683
+ - enh(php) add support for PHP Attributes [Wojciech Kania][]
684
+ - fix(java) prevent false positive variable init on `else` [Josh Goebel][]
685
+ - enh(php) named arguments [Wojciech Kania][]
686
+ - fix(php) PHP constants [Wojciech Kania][]
687
+ - fix(angelscript) incomplete int8, int16, int32, int64 highlighting [Melissa Geels][]
688
+ - enh(ts) modify TypeScript-specific keywords and types list [anydonym][]
689
+ - fix(brainfuck) fix highlighting of initial ++/-- [Christina Hanson][]
690
+ - fix(llvm) escaping in strings and number formats [Flakebi][]
691
+ - enh(elixir) recognize references to modules [Mark Ericksen][]
692
+ - enh(css): add support for more properties [Nicolaos Skimas][]
693
+
694
+ [Martin Mattel]: https://github.com/mmattel
695
+ [John Foster]: https://github.com/jf990
696
+ [Wojciech Kania]: https://github.com/wkania
697
+ [Melissa Geels]: https://github.com/codecat
698
+ [anydonym]: https://github.com/anydonym
699
+ [henri Vandersleyen]: https://github.com/Vanderscycle
700
+ [Christina Hanson]: https://github.com/LyricLy
701
+ [Flakebi]: https://github.com/Flakebi
702
+ [Josh Goebel]: https://github.com/joshgoebel
703
+ [Mark Ericksen]: https://github.com/brainlid
704
+ [Nicolaos Skimas]: https://github.com/dev-nicolaos
705
+ [Doug Torrance]: https://github.com/d-torrance
706
+ [Annmarie Switzer]: https://github.com/annmarie-switzer
707
+
708
+
709
+ ## Version 11.4.0
710
+
711
+ New Language:
712
+
713
+ - Added 3rd party Pine Script grammar to SUPPORTED_LANGUAGES [Jeylani B][]
714
+ - Added 3rd party cURL grammar to SUPPORTED_LANGUAGES [highlightjs-curl](https://github.com/highlightjs/highlightjs-curl)
715
+
716
+ Themes:
717
+
718
+ - `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
719
+ - `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
720
+ - Added `intellij-light` theme [Pegasis]
721
+ - Added `felipec` theme [Felipe Contreras]
722
+
723
+ These changes should be for the better and should not be super noticeable but if you're super picky about your colors you may want to intervene here or copy over the older themes from 11.3 or prior.
724
+
725
+ Grammars:
726
+
727
+ - enh(twig) update keywords list for symfony (#3453) [Matthieu Lempereur][]
728
+ - enh(arcade) updated to ArcGIS Arcade version 1.16 [John Foster][]
729
+ - enh(php) Left and right-side of double colon [Wojciech Kania][]
730
+ - enh(php) add PHP constants [Wojciech Kania][]
731
+ - enh(php) add PHP 8.1 keywords [Wojciech Kania][]
732
+ - fix(cpp) fix `vector<<` template false positive (#3437) [Josh Goebel][]
733
+ - enh(php) support First-class Callable Syntax (#3427) [Wojciech Kania][]
734
+ - enh(php) support class constructor call (#3427) [Wojciech Kania][]
735
+ - enh(php) support function invoke (#3427) [Wojciech Kania][]
736
+ - enh(php) Switch highlighter to partially case-insensitive (#3427) [Wojciech Kania][]
737
+ - enh(php) improve `namespace` and `use` highlighting (#3427) [Josh Goebel][]
738
+ - enh(php) `$this` is a `variable.language` now (#3427) [Josh Goebel][]
739
+ - enh(php) add `__COMPILER_HALT_OFFSET__` (#3427) [Josh Goebel][]
740
+ - enh(js/ts) fix => async function title highlights (#3405) [Josh Goebel][]
741
+ - enh(twig) update keywords list (#3415) [Matthieu Lempereur][]
742
+ - fix(python) def, class keywords detected mid-identifier (#3381) [Josh Goebel][]
743
+ - fix(python) Fix recognition of numeric literals followed by keywords without whitespace (#2985) [Richard Gibson][]
744
+ - enh(swift) add SE-0290 unavailability condition (#3382) [Bradley Mackey][]
745
+ - fix(fsharp) Highlight operators, match type names only in type annotations, support quoted identifiers, and other smaller fixes. [Melvyn Laïly][]
746
+ - enh(java) add `sealed` and `non-sealed` keywords (#3386) [Bradley Mackey][]
747
+ - enh(js/ts) improve `CLASS_REFERENCE` (#3411) [Josh Goebel][]
748
+ - enh(nsis) Update defines pattern to allow `!` (#3417) [idleberg][]
749
+ - enh(nsis) Update language strings pattern to allow `!` (#3420) [idleberg][]
750
+ - fix(stan) Updated for Stan 2.28 and other misc. improvements (#3410)
751
+ - enh(nsis) Update variables pattern (#3416) [idleberg][]
752
+ - fix(clojure) Several issues with Clojure highlighting (#3397) [Björn Ebbinghaus][]
753
+ - fix(clojure) `comment` macro catches more than it should (#3395)
754
+ - fix(clojure) `$` in symbol breaks highlighting
755
+ - fix(clojure) Add complete regex for number detection
756
+ - enh(clojure) Add character mode for character literals
757
+ - fix(clojure) Inconsistent namespaced map highlighting
758
+ - enh(clojure) Add `regex` mode to regex literal
759
+ - fix(clojure) Remove inconsistent/broken highlighting for metadata
760
+ - enh(clojure) Add `punctuation` mode for commas.
761
+ - fix(julia) Enable the `jldoctest` alias (#3432) [Fons van der Plas][]
762
+
763
+ Developer Tools:
764
+
765
+ - (chore) add gzip size compression report (#3400) [Bradley Mackey][]
766
+
767
+ Themes:
768
+
769
+ - Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
770
+
771
+ [John Foster]: https://github.com/jf990
772
+ [Pegasis]: https://github.com/PegasisForever
773
+ [Wojciech Kania]: https://github.com/wkania
774
+ [Jeylani B]: https://github.com/jeyllani
775
+ [Richard Gibson]: https://github.com/gibson042
776
+ [Bradley Mackey]: https://github.com/bradleymackey
777
+ [Melvyn Laïly]: https://github.com/mlaily
778
+ [Björn Ebbinghaus]: https://github.com/MrEbbinghaus
779
+ [Josh Goebel]: https://github.com/joshgoebel
780
+ [Samia Ali]: https://github.com/samiaab1990
781
+ [Matthieu Lempereur]: https://github.com/MrYamous
782
+ [idleberg]: https://github.com/idleberg
783
+ [Fons van der Plas]: https://github.com/fonsp
784
+ [Felipe Contreras]: https://github.com/felipec
785
+
786
+ ## Version 11.3.1
787
+
788
+ Build:
789
+
790
+ - (fix) Grammar CDN modules not generated correctly. (#3363) [Josh Goebel][]
791
+
792
+ [Josh Goebel]: https://github.com/joshgoebel
793
+
794
+
795
+ ## Version 11.3.0
796
+
797
+ Build:
798
+
799
+ - add `HighlightJS` named export (#3295) [Josh Goebel][]
800
+ - add `.default` named export to CJS builds (#3333) [Josh Goebel][]
801
+
802
+ Parser:
803
+
804
+ - add first rough performance testing script (#3280) [Austin Schick][]
805
+ - add `throwUnescapedHTML` to warn against potential HTML injection [Josh Goebel][]
806
+ - expose `regex` helper functions via `hljs` injection [Josh Goebel][]
807
+ - concat
808
+ - lookahead
809
+ - either
810
+ - optional
811
+ - anyNumberOfTimes
812
+
813
+ Grammars:
814
+
815
+ - fix(ts) some complex types would classify as JSX (#3278) [Josh Goebel][]
816
+ - fix(js/ts) less false positives for `class X extends Y` (#3278) [Josh Goebel][]
817
+ - enh(css): add properties from several W3C (Candidate) Recommendations (#3308)
818
+ - fix(js/ts) `Float32Array` highlighted incorrectly (#3353) [Josh Goebel][]
819
+ - fix(css) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
820
+ - fix(scss) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
821
+ - enh(fsharp) rewrite most of the grammar, with many improvements [Melvyn Laïly][]
822
+ - enh(go) better type highlighting, add `error` type [Josh Goebel][]
823
+ - fix(js/ts) regex inside `SUBST` is no longer highlighted [Josh Goebel][]
824
+ - fix(python) added support for unicode identifiers (#3280) [Austin Schick][]
825
+ - enh(css/less/stylus/scss) improve consistency of function dispatch (#3301) [Josh Goebel][]
826
+ - enh(css/less/stylus/scss) detect block comments more fully (#3301) [Josh Goebel][]
827
+ - fix(cpp) switch is a keyword (#3312) [Josh Goebel][]
828
+ - fix(cpp) fix `xor_eq` keyword highlighting. [Denis Kovalchuk][]
829
+ - enh(c,cpp) highlight type modifiers as type (#3316) [Josh Goebel][]
830
+ - enh(css/less/stylus/scss) add support for CSS Grid properties [monochromer][]
831
+ - enh(java) add support for Java Text Block (#3322) [Teletha][]
832
+ - enh(scala) add missing `do` and `then` keyword (#3323) [Nicolas Stucki][]
833
+ - enh(scala) add missing `enum`, `export` and `given` keywords (#3328) [Nicolas Stucki][]
834
+ - enh(scala) remove symbol syntax and fix quoted code syntax (#3324) [Nicolas Stucki][]
835
+ - enh(scala) add Scala 3 `extension` soft keyword (#3326) [Nicolas Stucki][]
836
+ - enh(scala) add Scala 3 `end` soft keyword (#3327) [Nicolas Stucki][]
837
+ - enh(scala) add `inline` soft keyword (#3329) [Nicolas Stucki][]
838
+ - enh(scala) add `using` soft keyword (#3330) [Nicolas Stucki][]
839
+ - enh(fsharp) added `f#` alias (#3337) [Bahnschrift][]
840
+ - enh(bash) added gnu core utilities (#3342) [katzeprior][]
841
+ - enh(nsis) add new NSIS commands (#3351) [idleberg][]
842
+ - fix(nsis) set `case_insensitive` to `true` (#3351) [idleberg][]
843
+ - fix(css/less/stylus/scss) highlight single-colon psuedo-elements properly (#3240) [zsoltlengyelit][]
844
+ - fix(css) add css hex color alpha support (#3360) [ierehon1905][]
845
+
846
+ [Austin Schick]: https://github.com/austin-schick
847
+ [Josh Goebel]: https://github.com/joshgoebel
848
+ [Denis Kovalchuk]: https://github.com/deniskovalchuk
849
+ [monochromer]: https://github.com/monochromer
850
+ [Teletha]: https://github.com/teletha
851
+ [Nicolas Stucki]: https://github.com/nicolasstucki
852
+ [Bahnschrift]: https://github.com/Bahnschrift
853
+ [Melvyn Laïly]: https://github.com/mlaily
854
+ [katzeprior]: https://github.com/katzeprior
855
+ [zsoltlengyelit]: github.com/zsoltlengyelit
856
+ [Syb Wartna]:https://github.com/waarissyb
857
+ [idleberg]: https://github.com/idleberg
858
+ [ierehon1905]: https://github.com/ierehon1905
859
+
860
+
861
+ ## Version 11.2.0
862
+
863
+ Build:
864
+
865
+ - fix: run Node build CSS files thru CSS processor also (#3284) [Josh Goebel][]
866
+
867
+ Parser:
868
+
869
+ - fix(csharp) Fix assignments flagging as functions [Josh Goebel][]
870
+ - fix(types) Fix some type definition issues (#3274) [Josh Goebel][]
871
+ - fix(verilog) Fix directive handling (#3283) [Josh Goebel][]
872
+ - fix(verilog) Fix binary number false positives on `_` (#3283) [Josh Goebel][]
873
+ - enh(verilog) `__FILE__` and `__LINE__` constants (#3283) [Josh Goebel][]
874
+ - enh(verilog) tighten keyword regex (#3283) [Josh Goebel][]
875
+
876
+
877
+ Grammars:
878
+
879
+ - enh(swift) Add `isolated`/`nonisolated` keywords (#3296) [Bradley Mackey][]
880
+
881
+ New Languages:
882
+
883
+ - Added 3rd party X# grammar to SUPPORTED_LANGUAGES [Patrick Kruselburger][]
884
+ - Added 3rd party MKB grammar to SUPPORTED_LANGUAGES (#3297) [Dereavy][]
885
+
886
+ [Josh Goebel]: https://github.com/joshgoebel
887
+ [Patrick Kruselburger]: https://github.com/PatrickKru
888
+ [Bradley Mackey]: https://github.com/bradleymackey
889
+ [Dereavy]: https://github.com/dereavy
890
+
891
+
892
+ ## Version 11.1.0
893
+
894
+ Grammars:
895
+
896
+ - fix(csharp) add missing `catch` keyword (#3251) [Konrad Rudolph][]
897
+ - add additional keywords to csp.js (#3244) [Elijah Conners][]
898
+ - feat(css) handle css variables syntax (#3239) [Thanos Karagiannis][]
899
+ - fix(markdown) Images with empty alt or links with empty text (#3233) [Josh Goebel][]
900
+ - enh(powershell) added `pwsh` alias (#3236) [tebeco][]
901
+ - fix(r) fix bug highlighting examples in doc comments [Konrad Rudolph][]
902
+ - fix(python) identifiers starting with underscore not highlighted (#3221) [Antoine Lambert][]
903
+ - enh(clojure) added `edn` alias (#3213) [Stel Abrego][]
904
+ - enh(elixir) much improved regular expression sigil support (#3207) [Josh Goebel][]
905
+ - enh(elixir) updated list of keywords (#3212) [Angelika Tyborska][]
906
+ - fix(elixir) fixed number detection when numbers start with a zero (#3212) [Angelika Tyborska][]
907
+ - fix(ps1) Flag highlighted incorrectly (#3167) [Pankaj Patil][]
908
+ - fix(latex) Allow wider syntax for magic comments (#3243) [Benedikt Wilde][]
909
+ - fix(js/ts) Constants may include numbers [Josh Goebel][]
910
+
911
+ [Stel Abrego]: https://github.com/stelcodes
912
+ [Josh Goebel]: https://github.com/joshgoebel
913
+ [Antoine Lambert]: https://github.com/anlambert
914
+ [Elijah Conners]: https://github.com/elijahepepe
915
+ [Angelika Tyborska]: https://github.com/angelikatyborska
916
+ [Konrad Rudolph]: https://github.com/klmr
917
+ [tebeco]: https://github.com/tebeco
918
+ [Pankaj Patil]: https://github.com/patil2099
919
+ [Benedikt Wilde]: https://github.com/schtandard
920
+ [Thanos Karagiannis]: https://github.com/thanoskrg
921
+
922
+
923
+ ## Version 11.0.0
924
+
925
+ **This is a major release.** As such it contains breaking changes which may require action from users. Please read [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_11_UPGRADE.md) for a detailed summary of all breaking changes.
926
+
927
+ ### Potentially breaking changes
928
+
929
+ Unless otherwise attributed items below are thanks to [Josh Goebel][] (ref: [#2558](https://github.com/highlightjs/highlight.js/issues/2558)).
930
+
931
+ *The below list should only be considered to be a high-level summary.*
932
+
933
+ Deprecations / Removals / API Changes:
934
+
935
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated. **Use `highlightAll()`.**
936
+ - `highlightBlock(el)` deprecated. **Use `highlightElement(el)`**
937
+ - `before:highlightBlock` & `after:highlightBlock` callbacks deprecated. **Use equivalent `highlightElement` callbacks.**
938
+ - `highlight(languageName, code, ignoreIllegals, continuation)` signature deprecated. **Use `highlight(code, {language, ignoreIllegals})`.**
939
+ - Deprecated `highlight()` signature no longer supports `continuation` argument.
940
+ - `tabReplace` option removed. Consider a plugin.
941
+ - `useBR` option removed. Consider a plugin or CSS.
942
+ - `requireLanguage()` removed. **Use `getLanguage()`.**
943
+ - `endSameAsBegin` mode key removed. **Use `hljs.END_SAME_AS_BEGIN`.**
944
+ - `lexemes` mode key removed. **Use `keywords.$pattern`.**
945
+ - The return values/keys of some APIs have changed slightly.
946
+
947
+ Security:
948
+
949
+ - HTML auto-passthru has been removed. Consider a plugin.
950
+ - Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) [Josh Goebel][]
951
+
952
+ Themes:
953
+
954
+ - The default padding of all themes increases (0.5em => 1em).
955
+ - `schoolbook` has been updated to remove the lined background.
956
+ - `github` updated to better match modern GitHub (#1616) [Jan Pilzer][]
957
+ - `github-gist` has been removed in favor of `github` [Jan Pilzer][]
958
+ - Base16 named themes have been updated to their "canonical" versions
959
+ - `nnfx` updated for v11 xml styles and improved css support
960
+
961
+ Language Grammars:
962
+
963
+ - Default CDN build drops support for several languages.
964
+ - Some language grammar files have been removed.
965
+ - Some redundant language aliases have been removed.
966
+
967
+ ### Other changes
968
+
969
+ Parser:
970
+
971
+ - enh(vala) improve language detection for Vala (#3195) [Konrad Rudolph][]
972
+ - enh(r) add support for operators, fix number highlighting bug (#3194, #3195) [Konrad Rudolph][]
973
+ - enh(parser) add `beginScope` and `endScope` to allow separate scoping begin and end (#3159) [Josh Goebel][]
974
+ - enh(parsed) `endScope` now supports multi-class matchers as well (#3159) [Josh Goebel][]
975
+ - enh(parser) `highlightElement` now always tags blocks with a consistent `language-[name]` class [Josh Goebel][]
976
+ - subLanguage `span` tags now also always have the `language-` prefix added
977
+ - enh(parser) support multi-class matchers (#3081) [Josh Goebel][]
978
+ - enh(parser) Detect comments based on english like text, rather than keyword list [Josh Goebel][]
979
+ - adds `title.class.inherited` sub-scope support [Josh Goebel][]
980
+ - adds `title.class` sub-scope support (#3078) [Josh Goebel][]
981
+ - adds `title.function` sub-scope support (#3078) [Josh Goebel][]
982
+ - adds `beforeMatch` compiler extension (#3078) [Josh Goebel][]
983
+ - adds `cssSelector ` configuration option (#3180) [James Edington][]
984
+
985
+ Grammars:
986
+
987
+ - enh(all) `.meta-keyword` => `.meta .keyword` (nested scopes) (#3167) [Josh Goebel][]
988
+ - enh(all) `.meta-string` => `.meta .string` (nested scopes) (#3167) [Josh Goebel][]
989
+ - enh(swift) add `actor` keyword (#3171) [Bradley Mackey][]
990
+ - enh(crystal) highlight variables (#3154) [Josh Goebel][]
991
+ - fix(ruby) Heredoc without interpolation (#3154) [Josh Goebel][]
992
+ - enh(swift) add `@resultBuilder` attribute (#3151) [Bradley Mackey][]
993
+ - enh(processing) added `pde` alias (#3142) [Dylan McBean][]
994
+ - enh(thrift) Use proper scope for types [Josh Goebel][]
995
+ - enh(java) Simplified class-like matcher (#3078) [Josh Goebel][]
996
+ - enh(cpp) Simplified class-like matcher (#3078) [Josh Goebel][]
997
+ - enh(rust) Simplified class-like matcher (#3078) [Josh Goebel][]
998
+ - enh(actionscript) Simplified class-like matcher (#3078) [Josh Goebel][]
999
+ - enh(arcade) `function.title` => `title.function` (#3078) [Josh Goebel][]
1000
+ - enh(autoit) `function.title` => `title.function` (#3078) [Josh Goebel][]
1001
+ - enh(c) `function.title` => `title.function` (#3078) [Josh Goebel][]
1002
+ - enh(rust) support function invoke and `impl` (#3078) [Josh Goebel][]
1003
+ - chore(properties) disable auto-detection #3102 [Josh Goebel][]
1004
+ - fix(properties) fix incorrect handling of non-alphanumeric keys #3102 [Egor Rogov][]
1005
+ - enh(java) support functions with nested template types (#2641) [Josh Goebel][]
1006
+ - enh(java) highlight types and literals separate from keywords (#3074) [Josh Goebel][]
1007
+ - enh(shell) add alias ShellSession [Ryan Mulligan][]
1008
+ - enh(shell) consider one space after prompt as part of prompt [Ryan Mulligan][]
1009
+ - fix(nginx) fix bug with $ and @ variables [Josh Goebel][]
1010
+ - enh(nginx) improving highlighting of some sections [Josh Goebel][]
1011
+ - fix(vim) variable names may not be zero length [Josh Goebel][]
1012
+ - enh(sqf) Updated keywords to Arma 3 v2.02 (#3084) [R3voA3][]
1013
+ - enh(sqf) Refactored function regex to match CBA component func naming scheme (#3181) [JonBons][]
1014
+ - enh(nim) highlight types properly (not as built-ins) [Josh Goebel][]
1015
+ - (chore) throttle deprecation messages (#3092) [Mihkel Eidast][]
1016
+ - enh(c) Update keyword list for C11/C18 (#3010) [Josh Goebel][]
1017
+ - enh(parser) highlight object properties (#3072) [Josh Goebel][]
1018
+ - enh(javascript/typescript) highlight object properties (#3072) [Josh Goebel][]
1019
+ - enh(haskell) add support for BinaryLiterals (#3150) [Martijn Bastiaan][]
1020
+ - enh(haskell) add support for NumericUnderscores (#3150) [Martijn Bastiaan][]
1021
+ - enh(haskell) add support for HexFloatLiterals (#3150) [Martijn Bastiaan][]
1022
+ - fix(c,cpp) allow declaring multiple functions and (for C++) parenthetical initializers (#3155) [Erik Demaine][]
1023
+ - enh(rust) highlight raw byte string literals correctly (#3173) [Nico Abram][]
1024
+ - fix(cpp) fix detection of common functions that are function templates (#3178) [Kris van Rens][]
1025
+ - enh(cpp) add various keywords and commonly used types for hinting (#3178) [Kris van Rens][]
1026
+ - enh(cpp) cleanup reserved keywords and type lists (#3178) [Kris van Rens][]
1027
+
1028
+ New Languages:
1029
+
1030
+ - Added 3rd party Glimmer grammar to SUPPORTED_LANGUAGES(#3123) [NullVoxPopuli][]
1031
+ - Added Wren support [Josh Goebel][]
1032
+ - Added NestedText support [Josh Goebel][]
1033
+ - Added WebAssembly language grammar [Josh Goebel][]
1034
+ - Added 3rd party Splunk search processing language grammar to SUPPORTED_LANGUAGES (#3090) [Wei Su][]
1035
+ - Added 3rd party ZenScript grammar to SUPPORTED_LANGUAGES(#3106) [Jared Luboff][]
1036
+ - Added 3rd party Papyrus grammar to SUPPORTED_LANGUAGES(#3125) [Mike Watling][]
1037
+
1038
+ Theme Improvements:
1039
+
1040
+ - Added all official Base16 themes (over 150 new themes) [Josh Goebel][]
1041
+ - chore(themes) remove `builtin-name` CSS class (#3119) [Josh Goebel][]
1042
+ - chore(theme) Update GitHub theme css to match GitHub's current styling (#1616) [Jan Pilzer][]
1043
+ - chore(theme) Update Srcery theme css to match its Emacs implementation [Chen Bin][]
1044
+
1045
+ New Themes:
1046
+
1047
+ - DeviBeans Dark by [Farzad Sadeghi][]
1048
+ - GitHub Dark and GitHub Dark Dimmed [Jan Pilzer][]
1049
+
1050
+ Dev Improvements:
1051
+
1052
+ - (chore) greatly improve match scope visualization in dev tool (#3126) [NullVoxPopuli][]
1053
+ - (fix) CSS used for devtool needed an adjustment to fix too wide of content (#3133) [NullVoxPopuli][]
1054
+
1055
+ [Farzad Sadeghi]: https://github.com/terminaldweller
1056
+ [Martijn Bastiaan]: https://github.com/martijnbastiaan
1057
+ [Bradley Mackey]: https://github.com/bradleymackey
1058
+ [Dylan McBean]: https://github.com/DylanMcBean
1059
+ [Josh Goebel]: https://github.com/joshgoebel
1060
+ [Ryan Mulligan]: https://github.com/ryantm
1061
+ [R3voA3]: https://github.com/R3voA3
1062
+ [JonBons]: https://github.com/JonBons
1063
+ [Wei Su]: https://github.com/swsoyee
1064
+ [Jared Luboff]: https://github.com/jaredlll08
1065
+ [NullVoxPopuli]: https://github.com/NullVoxPopuli
1066
+ [Mike Watling]: https://github.com/Pickysaurus
1067
+ [Nico Abram]: https://github.com/nico-abram
1068
+ [James Edington]: http://www.ishygddt.xyz/
1069
+ [Jan Pilzer]: https://github.com/Hirse
1070
+ [Kris van Rens]: https://github.com/krisvanrens
1071
+
1072
+
1073
+ ## Version 10.7.1
1074
+
1075
+ - fix(parser) Resolves issues with TypeScript types [Josh Goebel][]
1076
+
1077
+ ### Version 10.7.0
1078
+
1079
+ Parser:
1080
+
1081
+ - keywords now have a maximum # of times they provide relevance (#3129) [Josh Goebel][]
1082
+ - enh(api) add `unregisterLanguage` method (#3009) [Antoine du Hamel][]
1083
+ - enh: Make alias registration case insensitive (#3026) [David Ostrovsky][]
1084
+ - fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][]
1085
+
1086
+ New Languages:
1087
+
1088
+ - Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES (#2988) [John C][]
1089
+ - Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES (#3002) [Stef Levesque][]
1090
+ - Added 3rd party Q# grammar to SUPPORTED_LANGUAGES(#3006) [Vyron Vasileiadis][]
1091
+
1092
+ Language grammar improvements:
1093
+
1094
+ - enh(js/ts) class references (CamelCase) are highlighted (#3169) [Josh Goebel][]
1095
+ - enh(js/ts) constants (ALL_CAPS) are highlighted (#3169) [Josh Goebel][]
1096
+ - enh(js/ts) highlights function invokation (#3169) [Josh Goebel][]
1097
+ - enh(js/ts) functions assigned to variables are now highlighted `title.function` (#3169) [Josh Goebel][]
1098
+ - enh(parser) smarter detection of comments (#2827) [Josh Goebel][]
1099
+ - fix(python) allow keywords immediately following numbers (#2985) [Josh Goebel][]
1100
+ - fix(xml) char immediately following tag close mis-highlighted (#3044) [Josh Goebel][]
1101
+ - fix(ruby) fix `defined?()` mis-highlighted as `def` (#3025) [Josh Goebel][]
1102
+ - fix(c) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
1103
+ - fix(cpp) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
1104
+ - enh(cpp) Highlight all function dispatches (#3005) [Josh Goebel][]
1105
+ - enh(python) support type hints and better type support (#2972) [Josh Goebel][]
1106
+ - enh(gml) Add additional GML 2.3 keywords (#2984) [xDGameStudios][]
1107
+ - fix(cpp) constructor support for initializers (#3001) [Josh Goebel][]
1108
+ - enh(php) Add `trait` to class-like naming patterns (#2997) [Ayesh][]
1109
+ - enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces (#2997) [Ayesh][]
1110
+ - enh(php) Add `mixed` to list of keywords (#2997) [Ayesh][]
1111
+ - enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support (#2997) [Ayesh][]
1112
+ - enh(php) Add support for Enums (#3004) [Ayesh][]
1113
+ - enh(ecmascript) Add built-in types [Vaibhav Chanana][]
1114
+ - enh(kotlin) Add `kts` as an alias for Kotlin (#3021) [Vaibhav Chanana][]
1115
+ - enh(css) Add `font-smoothing` to attributes list for CSS (#3027) [AndyKIron][]
1116
+ - fix(python) Highlight `print` and `exec` as a builtin (#1468) [Samuel Colvin][]
1117
+ - fix(csharp) Fix unit being highlighted instead of uint (#3046) [Spacehamster][]
1118
+ - enh(swift) add async/await keywords (#3048) [Bradley Mackey][]
1119
+
1120
+ Deprecations:
1121
+
1122
+ - `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7
1123
+ - Please use the newer API which takes `code` and then accepts options as an object
1124
+ - IE: `highlight(code, {language, ignoreIllegals})`
1125
+ - `continuation` is for internal use only and no longer supported
1126
+ - `highlightBlock(el)` deprecated as of 10.7.
1127
+ - Please use `highlightElement(el)` instead.
1128
+ - Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement`
1129
+ - Plugin callback now takes `el` vs `block` attribute
1130
+ - The old API and callbacks will be supported until v12.
1131
+
1132
+
1133
+ [Stef Levesque]: https://github.com/stef-levesque
1134
+ [Josh Goebel]: https://github.com/joshgoebel
1135
+ [John Cheung]: https://github.com/Real-John-Cheung
1136
+ [xDGameStudios]: https://github.com/xDGameStudios
1137
+ [Ayesh]: https://github.com/Ayesh
1138
+ [Vyron Vasileiadis]: https://github.com/fedonman
1139
+ [Antoine du Hamel]: https://github.com/aduh95
1140
+ [Vaibhav Chanana]: https://github.com/il3ven
1141
+ [David Ostrovsky]: https://github.com/davido
1142
+ [AndyKIron]: https://github.com/AndyKIron
1143
+ [Samuel Colvin]: https://github.com/samuelcolvin
1144
+
1145
+ ## Version 10.6.0
1146
+
1147
+ New Languages:
1148
+
1149
+ - Added 3rd party Laravel Blade grammar to SUPPORTED_LANGUAGES (#2944) [Michael Newton][]
1150
+
1151
+ Language grammar improvements:
1152
+
1153
+ - enh(scala) fix triple quoted strings (#2987) [Josh Goebel][]
1154
+ - enh(perl) Much improved regex detection (#2960) [Josh Goebel][]
1155
+ - enh(swift) Improved highlighting for operator and precedencegroup declarations. (#2938) [Steven Van Impe][]
1156
+ - fix(xml) Support single-character namespaces. (#2957) [Jan Pilzer][]
1157
+ - enh(ruby) Support for character literals (#2950) [Vaibhav Chanana][]
1158
+ - enh(powershell) Add three VALID_VERBS and update the reference link (#2981) [davidhcefx][]
1159
+ - fix(php) Highlighting of anonymous functions without {} block [Vaibhav Chanana][]
1160
+
1161
+ Grammar Deprecations:
1162
+
1163
+ - Deprecate `c-like`, though you should not be using it directly anyways.
1164
+ - will be removed in v11.
1165
+ - `c` and `cpp` are now wholly unique grammars that will diverge over time
1166
+
1167
+ Parser:
1168
+
1169
+ - new simpler `highlightAll()` API (#2962) [Josh Goebel][]
1170
+ - this should be a drop-in replacement for both `initHighlighting()` and `initHighlightingOnLoad()`
1171
+ - note: it does not prevent itself from being called multiple times (as the previous API did)
1172
+ - `beginKeyword` no longer bestows double relevance (#2953) [Josh Goebel][]
1173
+ - allow `keywords` to be an array of strings [Josh Goebel][]
1174
+ - add `modes.MATCH_NOTHING_RE` that will never match
1175
+ - This can be used with `end` to hold a mode open (it must then be ended with `endsParent` in one of it's children modes) [Josh Goebel][]
1176
+
1177
+ Deprecations:
1178
+
1179
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated.
1180
+ - Please use the new `highlightAll()` API instead.
1181
+ - Deprecated as of 10.6.
1182
+ - These will both be aliases to `highlightAll` in v11.
1183
+
1184
+ [Michael Newton]: https://github.com/miken32
1185
+ [Steven Van Impe]: https://github.com/svanimpe/
1186
+ [Josh Goebel]: https://github.com/joshgoebel
1187
+ [Vaibhav Chanana]: https://github.com/il3ven
1188
+ [davidhcefx]: https://github.com/davidhcefx
1189
+ [Jan Pilzer]: https://github.com/Hirse
1190
+
1191
+
1192
+ ## Version 10.5.0
1193
+
1194
+ Build:
1195
+
1196
+ - Add Subresource Integrity digest lists to `cdn-assets` [Josh Goebel][]
1197
+ - R and VB.net grammars now ship in our default build (`:common`) [Josh Goebel][]
1198
+
1199
+ Parser:
1200
+
1201
+ - add `match` as sugar for simple `begin` only matches (#2834) [Josh Goebel][]
1202
+ - allow `illegal` to also be an array of regex (#2834) [Josh Goebel][]
1203
+ - add `compilerExtensions` allows grammers to influence mode compilation (#2834) [Josh Goebel][]
1204
+ - some internal pieces are now simple compiler extensions
1205
+
1206
+ New Languages:
1207
+
1208
+ - Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES (#2872) [Oldes Huhuman][]
1209
+
1210
+ Language grammar improvements:
1211
+
1212
+ - enh: CSS grammars now share common foundation, keywords, etc. (#2937) [Josh Goebel][]
1213
+ - enh(css): many consistency improvements
1214
+ - enh(scss): many consistency improvements
1215
+ - enh(stylus): many consistency improvements
1216
+ - enh(less): many consistency improvements
1217
+ - enh(cpp): Support C++ pack expansion in function arguments [Martin Dørum][]
1218
+ - enh(makefile): Add `make` as an alias (#2883) [tripleee][]
1219
+ - enh(swift) Improved grammar for strings (#2819) [Steven Van Impe][]
1220
+ - enh(swift) Grammar improvements (#2908) [Steven Van Impe][]
1221
+ - New grammar for keywords and built-ins
1222
+ - Added support for operator highlighting
1223
+ - New grammar for attributes
1224
+ - Added support for quoted identifiers, implicit parameters, and property wrapper projections
1225
+ - Support for more complex expressions in string interpolation
1226
+ - enh(swift) Improved highlighting for types and generic arguments (#2920) [Steven Van Impe][]
1227
+ - enh(swift) Improved highlighting for functions, initializers, and subscripts (#2930) [Steven Van Impe][]
1228
+ - fix(http) avoid recursive sublanguage and tighten rules (#2893) [Josh Goebel][]
1229
+ - fix(asciidoc): Handle section titles level 5 (#2868) [Vaibhav Chanana][]
1230
+ - fix(asciidoc): Support unconstrained emphasis syntax (#2869) [Guillaume Grossetie][]
1231
+ - enh(scheme) Allow `[]` for argument lists (#2913) [Josh Goebel][]
1232
+ - enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
1233
+ - Adds support for Date data types, see (#2775)
1234
+ - Adds support for `REM` comments and fixes `'''` doctags (#2875) (#2851)
1235
+ - Custom number mode to support VB.net specific number flags
1236
+ - Hex (&H), Oct (&O), and binary (&B) prefixes
1237
+ - Separating digits with underscores: 90_946
1238
+ - Type suffixes: 123UI (unsigned integer)
1239
+ - Improves directives detection and adds support for `Enable`, `Disable`, and `Then` keywords
1240
+ - Adds more markup tests
1241
+ - fix(javascript) Empty block-comments break highlighting (#2896) [Jan Pilzer][]
1242
+ - enh(dart) Fix empty block-comments from breaking highlighting (#2898) [Jan Pilzer][]
1243
+ - enh(dart) Fix empty doc-comment eating next line [Jan Pilzer][]
1244
+ - enh(asciidoc) Adds support for unconstrained bold syntax (#2869) [Guillaume Grossetie][]
1245
+ - enh(c-like) Incorrect highlighting for interger suffix (#2919) [Vaibhav Chanana][]
1246
+ - enh(properties) Correctly handle trailing backslash (#2922) [Vaibhav Chanana][]
1247
+
1248
+ Recent Deprecations:
1249
+
1250
+ - HTML "merging" is deprecated. (#2873) [Josh Goebel][]
1251
+ - HTML inside `<pre>` blocks will no longer be magically merged back into the
1252
+ highlighted code's HTML result - it will instead be silently removed.
1253
+ - Consider [using a plugin][htmlPlugin] if you truly need this functionality
1254
+ - Deprecated as of 10.5.0 - will be removed in v11.
1255
+ - `tabReplace` option deprecated. (#2873) [Josh Goebel][]
1256
+ - **Consider:** Use the CSS `tab-size` property, or simply pre-process the
1257
+ text yourself before rendering the initial HTML
1258
+ - otherwise, [use a plugin][tabPlugin]
1259
+ - Deprecated as of 10.5.0 - will be removed in v11.
1260
+ - `useBR` option deprecated. (#2559) [Josh Goebel][]
1261
+ - **Recommended:** You really should just use the HTML `<pre>` tag
1262
+ - or perhaps try CSS `white-space: pre;`
1263
+ - otherwise, [use a plugin][brPlugin]
1264
+ - Deprecated as of 10.3.0 - will be removed in v11.
1265
+ - `requireLanguage` API is deprecated, will be removed in v11.0.
1266
+ - **Consider:** Use `getLanguage` (with custom error handling) or built-time dependencies.
1267
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
1268
+ - Deprecated as of 10.4.0 - will be removed in v11.
1269
+
1270
+ [htmlPlugin]: https://github.com/highlightjs/highlight.js/issues/2889
1271
+ [tabPlugin]: https://github.com/highlightjs/highlight.js/issues/2874
1272
+ [brPlugin]: https://github.com/highlightjs/highlight.js/issues/2559
1273
+
1274
+ [Martin Dørum]: https://github.com/mortie
1275
+ [Jan Pilzer]: https://github.com/Hirse
1276
+ [Oldes Huhuman]: https://github.com/Oldes
1277
+ [Josh Goebel]: https://github.com/joshgoebel
1278
+ [tripleee]: https://github.com/tripleee
1279
+ [Steven Van Impe]: https://github.com/svanimpe/
1280
+ [Vaibhav Chanana]: https://github.com/il3ven
1281
+ [Guillaume Grossetie]: https://github.com/mogztter
1282
+
1283
+
1284
+ ## Version 10.4.1 (tentative)
1285
+
1286
+ Security
1287
+
1288
+ - (fix) Exponential backtracking fixes for: [Josh Goebel][]
1289
+ - cpp
1290
+ - handlebars
1291
+ - gams
1292
+ - perl
1293
+ - jboss-cli
1294
+ - r
1295
+ - erlang-repl
1296
+ - powershell
1297
+ - routeros
1298
+ - (fix) Polynomial backtracking fixes for: [Josh Goebel][]
1299
+ - asciidoc
1300
+ - reasonml
1301
+ - latex
1302
+ - kotlin
1303
+ - gcode
1304
+ - d
1305
+ - aspectj
1306
+ - moonscript
1307
+ - coffeescript/livescript
1308
+ - csharp
1309
+ - scilab
1310
+ - crystal
1311
+ - elixir
1312
+ - basic
1313
+ - ebnf
1314
+ - ruby
1315
+ - fortran/irpf90
1316
+ - livecodeserver
1317
+ - yaml
1318
+ - x86asm
1319
+ - dsconfig
1320
+ - markdown
1321
+ - ruleslanguage
1322
+ - xquery
1323
+ - sqf
1324
+
1325
+ Very grateful to [Michael Schmidt][] for all the help.
1326
+
1327
+ [Michael Schmidt]: https://github.com/RunDevelopment
1328
+ [Josh Goebel]: https://github.com/joshgoebel
1329
+
1330
+
1331
+ ## Version 10.4.0
1332
+
1333
+ A largish release with many improvements and fixes from quite a few different contributors. Enjoy!
1334
+
1335
+ Deprecations:
1336
+
1337
+ - (chore) `requireLanguage` is deprecated.
1338
+ - Prefer `getLanguage` (with custom error handling) or built-time dependencies.
1339
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
1340
+
1341
+ Parser:
1342
+
1343
+ - enh(parser) use negative look-ahead for `beginKeywords` support (#2813) [Josh Goebel][]
1344
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
1345
+ - fix(vue): Language name now appears in CSS class (#2807) [Michael Rush][]
1346
+ - (chore) Clean up all regexs to be UTF-8 compliant/ready (#2759) [Josh Goebel][]
1347
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
1348
+
1349
+ New Languages:
1350
+
1351
+ - Added 3rd party Chapel grammar to SUPPORTED_LANGUAGES (#2806) [Brad Chamberlain][]
1352
+ - Added BBCode grammar to SUPPORTED_LANGUAGES (#2867) [Paul Reid][]
1353
+ - enh(javascript) Added `node-repl` for Node.js REPL sessions (#2792) [Marat Nagayev][]
1354
+
1355
+ Language Improvements:
1356
+
1357
+ - enh(shell) Recognize prompts which contain tilde `~` (#2859) [Guillaume Grossetie][]
1358
+ - enh(shell) Add support for multiline commands with line continuation `\` (#2861) [Guillaume Grossetie][]
1359
+ - enh(autodetect) Over 30+ improvements to auto-detect (#2745) [Josh Goebel][]
1360
+ - 4-5% improvement in auto-detect against large sample set
1361
+ - properties, angelscript, lsl, javascript, n1ql, ocaml, ruby
1362
+ - protobuf, hy, scheme, crystal, yaml, r, vbscript, groovy
1363
+ - python, java, php, lisp, matlab, clojure, csharp, css
1364
+ - fix(r) fixed keywords not properly spaced (#2852) [Josh Goebel][]
1365
+ - fix(javascript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
1366
+ - fix(livescript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
1367
+ - bug(xml) XML grammar was far too imprecise/fuzzy [Josh Goebel][]
1368
+ - enh(xml) Improve precision to prevent false auto-detect positives [Josh Goebel][]
1369
+ - fix(js/ts) Prevent for/while/if/switch from falsly matching as functions (#2803) [Josh Goebel][]
1370
+ - enh(julia) Update keyword lists for Julia 1.x (#2781) [Fredrik Ekre][]
1371
+ - enh(python) Match numeric literals per the language reference [Richard Gibson][]
1372
+ - enh(ruby) Match numeric literals per language documentation [Richard Gibson][]
1373
+ - enh(javascript) Match numeric literals per ECMA-262 spec [Richard Gibson][]
1374
+ - enh(java) Match numeric literals per Java Language Specification [Richard Gibson][]
1375
+ - enh(swift) Match numeric literals per language reference [Richard Gibson][]
1376
+ - enh(php) highlight variables (#2785) [Taufik Nurrohman][]
1377
+ - fix(python) Handle comments on decorators (#2804) [Jonathan Sharpe][]
1378
+ - enh(diff) improve highlighting of diff for git patches [Florian Bezdeka][]
1379
+ - fix(llvm) lots of small improvements and fixes (#2830) [Josh Goebel][]
1380
+ - enh(mathematica) Rework entire implementation [Patrick Scheibe][]
1381
+ - Correct matching of the many variations of Mathematica's numbers
1382
+ - Matching of named-characters aka special symbols like `\[Gamma]`
1383
+ - Updated list of version 12.1 built-in symbols
1384
+ - Matching of patterns, slots, message-names and braces
1385
+ - fix(swift) Handle keywords that start with `#` [Marcus Ortiz][]
1386
+ - enh(swift) Match `some` keyword [Marcus Ortiz][]
1387
+ - enh(swift) Match `@main` attribute [Marcus Ortiz][]
1388
+
1389
+ Dev Improvements:
1390
+
1391
+ - chore(dev) add theme picker to the tools/developer tool (#2770) [Josh Goebel][]
1392
+ - fix(dev) the Vue.js plugin no longer throws an exception when hljs is not in the global namespace [Kyle Brown][]
1393
+
1394
+ New themes:
1395
+
1396
+ - *StackOverflow Dark* by [Jan Pilzer][]
1397
+ - *StackOverflow Light* by [Jan Pilzer][]
1398
+
1399
+ [Guillaume Grossetie]: https://github.com/mogztter
1400
+ [Brad Chamberlain]: https://github.com/bradcray
1401
+ [Marat Nagayev]: https://github.com/nagayev
1402
+ [Fredrik Ekre]: https://github.com/fredrikekre
1403
+ [Richard Gibson]: https://github.com/gibson042
1404
+ [Josh Goebel]: https://github.com/joshgoebel
1405
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
1406
+ [Jan Pilzer]: https://github.com/Hirse
1407
+ [Jonathan Sharpe]: https://github.com/textbook
1408
+ [Michael Rush]: https://github.com/rushimusmaximus
1409
+ [Patrick Scheibe]: https://github.com/halirutan
1410
+ [Kyle Brown]: https://github.com/kylebrown9
1411
+ [Marcus Ortiz]: https://github.com/mportiz08
1412
+ [Paul Reid]: https://github.com/RedGuy12
1413
+
1414
+
1415
+ ## Version 10.3.1
1416
+
1417
+ Prior version let some look-behind regex sneak in, which does not work
1418
+ yet on Safari. This release removes those incompatible regexes.
1419
+
1420
+ Fix:
1421
+
1422
+ - fix(Safari) Remove currently unsupported look-behind regex ([fix][187e7cfc]) [Josh Goebel][]
1423
+
1424
+ [Josh Goebel]: https://github.com/joshgoebel
1425
+ [187e7cfc]: https://github.com/highlightjs/highlight.js/commit/187e7cfcb06277ce13b5f35fb6c37ab7a7b46de9
1426
+
1427
+
1428
+ ## Version 10.3.0
1429
+
1430
+ Language Improvements:
1431
+
1432
+ - enh(latex) Complete ground up rewrite of LaTex grammar [schtandard][]
1433
+ - fix(cpp) implement backslash line continuation in comments (#2757) [Konrad Rudolph][]
1434
+ - fix(cpp) improve parsing issues with templates (#2752) [Josh Goebel][]
1435
+ - enh(cpp) add support for `enum (struct|class)` and `union` (#2752) [Josh Goebel][]
1436
+ - fix(js/ts) Fix nesting of `{}` inside template literals SUBST expression (#2748) [Josh Goebel][]
1437
+ - enh(js/ts) Highlight class methods as functions (#2727) [Josh Goebel][]
1438
+ - fix(js/ts) `constructor` is now highlighted as a function title (not keyword) (#2727) [Josh Goebel][]
1439
+ - fix(c-like) preprocessor directives not detected after else (#2738) [Josh Goebel][]
1440
+ - enh(javascript) allow `#` for private class fields (#2701) [Chris Krycho][]
1441
+ - fix(js) prevent runaway regex (#2746) [Josh Goebel][]
1442
+ - fix(bash) enh(bash) allow nested params (#2731) [Josh Goebel][]
1443
+ - fix(python) Fix highlighting of keywords and strings (#2713, #2715) [Konrad Rudolph][]
1444
+ - fix(fsharp) Prevent `(*)` from being detected as a multi-line comment [Josh Goebel][]
1445
+ - enh(bash) add support for heredocs (#2684) [Josh Goebel][]
1446
+ - enh(r) major overhaul of the R language grammar (and fix a few bugs) (#2680) [Konrad Rudolph][]
1447
+ - enh(csharp) Add all C# 9 keywords, and other missing keywords (#2679) [David Pine][]
1448
+ - enh(objectivec) Add `objective-c++` and `obj-c++` aliases for Objective-C [Josh Goebel][]
1449
+ - enh(java) Add support for `record` (#2685) [Josh Goebel][]
1450
+ - fix(csharp) prevent modifier keywords wrongly flagged as `title` (#2683) [Josh Goebel][]
1451
+ - enh(axapta) Update keyword list for Axapta (X++) (#2686) [Ryan Jonasson][]
1452
+ - fix(fortran) FORTRAN 77-style comments (#2677) [Philipp Engel][]
1453
+ - fix(javascript) Comments inside params should be highlighted (#2702) [Josh Goebel][]
1454
+ - fix(scala) Comments inside class header should be highlighted (#1559) [Josh Goebel][]
1455
+ - fix(c-like) Correctly highlight modifiers (`final`) in class declaration (#2696) [Josh Goebel][]
1456
+ - enh(angelscript) Improve heredocs, numbers, metadata blocks (#2724) [Melissa Geels][]
1457
+ - enh(javascript) Implement Numeric Separators (#2617) [Antoine du Hamel][]
1458
+ - enh(typescript) TypeScript also gains support for numeric separators (#2617) [Antoine du Hamel][]
1459
+ - enh(php) Add support for PHP 8 `match` keyword and add `php8` as an alias (#2733) [Ayesh Karunaratne][]
1460
+ - fix(handlebars) Support if else keyboards (#2659) [Tom Wallace][]
1461
+
1462
+ Deprecations:
1463
+
1464
+ - `useBR` option deprecated and will be removed in v11.0. (#2559) [Josh Goebel][]
1465
+
1466
+ [Chris Krycho]: https://github.com/chriskrycho
1467
+ [David Pine]: https://github.com/IEvangelist
1468
+
1469
+
1470
+ [Ryan Jonasson]: https://github.com/ryanjonasson
1471
+ [Philipp Engel]: https://github.com/interkosmos
1472
+ [Konrad Rudolph]: https://github.com/klmr
1473
+ [Melissa Geels]: https://github.com/codecat
1474
+ [Antoine du Hamel]: https://github.com/aduh95
1475
+ [Ayesh Karunaratne]: https://github.com/Ayesh
1476
+ [Tom Wallace]: https://github.com/thomasmichaelwallace
1477
+ [schtandard]: https://github.com/schtandard
1478
+
1479
+
1480
+ ## Version 10.2.1
1481
+
1482
+ Parser Engine:
1483
+
1484
+ - fix(parser) complete fix for resuming matches from same index (#2678) [Josh Goebel][]
1485
+
1486
+ [Josh Goebel]: https://github.com/yyyc514
1487
+
1488
+
1489
+ ## Version 10.2.0
1490
+
1491
+ Parser Engine:
1492
+
1493
+ - (fix) When ignoring a potential match highlighting can terminate early (#2649) [Josh Goebel][]
1494
+
1495
+
1496
+ New themes:
1497
+
1498
+ - *Gradient Light* by [Samia Ali]()
1499
+
1500
+ Deprecations:
1501
+
1502
+ - `fixMarkup` is now deprecated and will be removed in v11.0. (#2534) [Josh Goebel][]
1503
+
1504
+ Big picture:
1505
+
1506
+ - Add simple Vue plugin for basic use cases (#2544) [Josh Goebel][]
1507
+
1508
+ Language Improvements:
1509
+
1510
+ - fix(bash) Fewer false positives for keywords in arguments (#2669) [sirosen][]
1511
+ - fix(js) Prevent long series of /////// from causing freezes (#2656) [Josh Goebel][]
1512
+ - enh(csharp) Add `init` and `record` keywords for C# 9.0 (#2660) [Youssef Victor][]
1513
+ - enh(matlab) Add new R2019b `arguments` keyword and fix `enumeration` keyword (#2619) [Andrew Janke][]
1514
+ - fix(kotlin) Remove very old keywords and update example code (#2623) [kageru][]
1515
+ - fix(night) Prevent object prototypes method values from being returned in `getLanguage` (#2636) [night][]
1516
+ - enh(java) Add support for `enum`, which will identify as a `class` now (#2643) [ezksd][]
1517
+ - enh(nsis) Add support for NSIS 3.06 commands (#2653) [idleberg][]
1518
+ - enh(php) detect newer more flexible HEREdoc syntax (#2658) [eytienne][]
1519
+
1520
+ [Youssef Victor]: https://github.com/Youssef1313
1521
+ [Josh Goebel]: https://github.com/joshgoebel
1522
+ [Andrew Janke]: https://github.com/apjanke
1523
+ [Samia Ali]: https://github.com/samiaab1990
1524
+ [kageru]: https://github.com/kageru
1525
+ [night]: https://github.com/night
1526
+ [ezksd]: https://github.com/ezksd
1527
+ [idleberg]: https://github.com/idleberg
1528
+ [eytienne]: https://github.com/eytienne
1529
+ [sirosen]: https://github.com/sirosen
1530
+
1531
+ ## Version 10.1.1
1532
+
1533
+ Fixes:
1534
+
1535
+ - Resolve issue on Node 6 due to dangling comma (#2608) [Edwin Hoogerbeets][]
1536
+ - Resolve `index.d.ts is not a module` error (#2603) [Josh Goebel][]
1537
+
1538
+ [Josh Goebel]: https://github.com/joshgoebel
1539
+ [Edwin Hoogerbeets]: https://github.com/ehoogerbeets
1540
+
1541
+
1542
+ ## Version 10.1.0
1543
+
1544
+ New themes:
1545
+
1546
+ - *NNFX* and *NNFX-dark* by [Jim Mason][]
1547
+ - *lioshi* by [lioshi][]
1548
+
1549
+ Parser Engine:
1550
+
1551
+ - (parser) Now escapes quotes in text content when escaping HTML (#2564) [Josh Goebel][]
1552
+ - (parser) Adds `keywords.$pattern` key to grammar definitions (#2519) [Josh Goebel][]
1553
+ - (parser) Adds SHEBANG utility mode [Josh Goebel][]
1554
+ - (parser) Adds `registerAliases` method (#2540) [Taufik Nurrohman][]
1555
+ - (enh) Added `on:begin` callback for modes (#2261) [Josh Goebel][]
1556
+ - (enh) Added `on:end` callback for modes (#2261) [Josh Goebel][]
1557
+ - (enh) Added ability to programatically ignore begin and end matches (#2261) [Josh Goebel][]
1558
+ - (enh) Added `END_SAME_AS_BEGIN` mode to replace `endSameAsBegin` parser attribute (#2261) [Josh Goebel][]
1559
+ - (fix) `fixMarkup` would rarely destroy markup when `useBR` was enabled (#2532) [Josh Goebel][]
1560
+
1561
+ Deprecations:
1562
+
1563
+ - `htmlbars` grammar is now deprecated. Use `handlebars` instead. (#2344) [Nils Knappmeier][]
1564
+ - when using `highlightBlock` `result.re` deprecated. Use `result.relevance` instead. (#2552) [Josh Goebel][]
1565
+ - ditto for `result.second_best.re` => `result.second_best.relevance` (#2552)
1566
+ - `lexemes` is now deprecated in favor of `keywords.$pattern` key (#2519) [Josh Goebel][]
1567
+ - `endSameAsBegin` is now deprecated. (#2261) [Josh Goebel][]
1568
+
1569
+ Language Improvements:
1570
+
1571
+ - fix(groovy) strings are not allowed inside ternary clauses (#2217) [Josh Goebel][]
1572
+ - fix(typescript) add `readonly` keyword (#2562) [Martin (Lhoerion)][]
1573
+ - fix(javascript) fix regex inside parens after a non-regex (#2530) [Josh Goebel][]
1574
+ - enh(typescript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1575
+ - enh(javascript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1576
+ - [enh] Add `OPTIMIZE:` and `HACK:` to the labels highlighted inside comments [Josh Goebel][]
1577
+ - enh(typescript/javascript/coffeescript/livescript) derive ECMAscript keywords from a common foudation (#2518) [Josh Goebel][]
1578
+ - enh(typescript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Josh Goebel][]
1579
+ - enh(javascript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Vania Kucher][]
1580
+ - enh(cpp) add `pair`, `make_pair`, `priority_queue` as built-ins (#2538) [Hankun Lin][]
1581
+ - enh(cpp) recognize `priority_queue` `pair` as cpp containers (#2541) [Hankun Lin][]
1582
+ - fix(javascript) prevent `set` keyword conflicting with setTimeout, etc. (#2514) [Vania Kucher][]
1583
+ - fix(cpp) Fix highlighting of unterminated raw strings (#2261) [David Benjamin][]
1584
+ - fix(javascript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1585
+ - fix(typescript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1586
+ - fix(yaml) Fix tags to include non-word characters (#2486) [Peter Plantinga][]
1587
+ - fix(swift) `@objcMembers` was being partially highlighted (#2543) [Nick Randall][]
1588
+ - enh(dart) Add `late` and `required` keywords, the `Never` built-in type, and nullable built-in types (#2550) [Sam Rawlins][]
1589
+ - enh(erlang) Add underscore separators to numeric literals (#2554) [Sergey Prokhorov][]
1590
+ - enh(handlebars) Support for sub-expressions, path-expressions, hashes, block-parameters and literals (#2344) [Nils Knappmeier][]
1591
+ - enh(protobuf) Support multiline comments (#2597) [Pavel Evstigneev][]
1592
+ - fix(toml) Improve key parsing (#2595) [Antoine du Hamel][]
1593
+
1594
+ [Josh Goebel]: https://github.com/joshgoebel
1595
+ [Peter Plantinga]: https://github.com/pplantinga
1596
+ [David Benjamin]: https://github.com/davidben
1597
+ [Vania Kucher]: https://github.com/qWici
1598
+ [Hankun Lin]: https://github.com/Linhk1606
1599
+ [Nick Randall]: https://github.com/nicked
1600
+ [Sam Rawlins]: https://github.com/srawlins
1601
+ [Sergey Prokhorov]: https://github.com/seriyps
1602
+ [Nils Knappmeier]: https://github.com/nknapp
1603
+ [Martin (Lhoerion)]: https://github.com/Lhoerion
1604
+ [Jim Mason]: https://github.com/RocketMan
1605
+ [lioshi]: https://github.com/lioshi
1606
+ [Pavel Evstigneev]: https://github.com/Paxa
1607
+ [Antoine du Hamel]: https://github.com/aduh95
1608
+
1609
+
1610
+ ## Version 10.0.2
1611
+
1612
+ Brower build:
1613
+
1614
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (bug) Fix: Version 10 fails to load as CommonJS module. (#2511) [Josh Goebel][]
1615
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (removal) AMD module loading support has been removed. (#2511) [Josh Goebel][]
1616
+
1617
+ Parser Engine Changes:
1618
+
1619
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2522) fix(parser) Fix freez issue with illegal 0 width matches (#2524) [Josh Goebel][]
1620
+
1621
+
1622
+ [Josh Goebel]: https://github.com/joshgoebel
1623
+
1624
+
1625
+ ## Version 10.0.1
1626
+
1627
+ Parser Engine Changes:
1628
+
1629
+ - (bug) Fix sublanguage with no relevance score (#2506) [Josh Goebel][]
1630
+
1631
+ [Josh Goebel]: https://github.com/joshgoebel
1632
+
1633
+
1634
+ ## Version 10.0.0
1635
+
1636
+ New languages:
1637
+
1638
+ - add(php-template) Explicit language to detect PHP templates (vs xml) [Josh Goebel][]
1639
+ - enh(python) Added `python-repl` for Python REPL sessions
1640
+ - add(never) Added 3rd party Never language support
1641
+
1642
+ New themes:
1643
+
1644
+ - *Srcery* by [Chen Bin][]
1645
+
1646
+ Parser Engine Changes:
1647
+
1648
+ - (bug) Fix `beginKeywords` to ignore . matches (#2434) [Josh Goebel][]
1649
+ - (enh) add `before:highlight` plugin API callback (#2395) [Josh Goebel][]
1650
+ - (enh) add `after:highlight` plugin API callback (#2395) [Josh Goebel][]
1651
+ - (enh) split out parse tree generation and HTML rendering concerns (#2404) [Josh Goebel][]
1652
+ - (enh) every language can have a `name` attribute now (#2400) [Josh Goebel][]
1653
+ - (enh) improve regular expression detect (less false-positives) (#2380) [Josh Goebel][]
1654
+ - (enh) make `noHighlightRe` and `languagePrefixRe` configurable (#2374) [Josh Goebel][]
1655
+
1656
+ Language Improvements:
1657
+
1658
+ - enh(python) Exclude parens from functions params (#2490) [Álvaro Mondéjar][]
1659
+ - enh(swift) Add `compactMap` to keywords as built_in (#2478) [Omid Golparvar][]
1660
+ - enh(nim) adds `func` keyword (#2468) [Adnan Yaqoob][]
1661
+ - enh(xml) deprecate ActionScript inside script tags (#2444) [Josh Goebel][]
1662
+ - fix(javascript) prevent get/set variables conflicting with keywords (#2440) [Josh Goebel][]
1663
+ - bug(clojure) Now highlights `defn-` properly (#2438) [Josh Goebel][]
1664
+ - enh(bash) default value is another variable (#2439) [Josh Goebel][]
1665
+ - enh(bash) string nested within string (#2439) [Josh Goebel][]
1666
+ - enh(bash) Add arithmetic expression support (#2439) [Josh Goebel][]
1667
+ - enh(clojure) Add support for global definitions name (#2347) [Alexandre Grison][]
1668
+ - enh(fortran) Support Fortran 77 style comments (#2416) [Josh Goebel][]
1669
+ - (csharp) add support for `@identifier` style identifiers (#2414) [Josh Goebel][]
1670
+ - fix(elixir) Support function names with a slash (#2406) [Josh Goebel][]
1671
+ - fix(javascript) comma is allowed in a "value container" (#2403) [Josh Goebel][]
1672
+ - enh(apache) add `deny` and `allow` keywords [Josh Goebel][]
1673
+ - enh(apache) highlight numeric attributes values [Josh Goebel][]
1674
+ - enh(apache) highlight IP addresses, ports, and strings in sections [Josh Goebel][]
1675
+ - enh(php) added more keywords and include `<?=` syntax to meta [Taufik Nurrohman][]
1676
+ - fix(protobuf) Fix `rpc` when followed by a block (#) [Josh Goebel][]
1677
+ - enh(zephir) almost complete rework of the zephir grammar (#2387) [Josh Goebel][]
1678
+ - (markdown) much improved code block support (#2382) [Josh Goebel][]
1679
+ - (markdown) improve bold/italic nesting (#2382) [Josh Goebel][]
1680
+ - enh(csharp) Support `where` keyword as class constraint (#2378) [Josh Goebel][]
1681
+ - enh(csharp) Allow reference path in class inheritance lists (#2378) [Josh Goebel][]
1682
+ - enh(csharp) Add generic modifiers (in, out) (#2378) [Josh Goebel][]
1683
+ - (fortran) enh(fortran) support intrinsic data types (#2379) [Josh Goebel][]
1684
+ - enh(java) annotations can include numbers (#2377) [Josh Goebel][]
1685
+ - enh(java) annotations can take params (#2377) [Josh Goebel][]
1686
+ - enh(java) allow annotations inside function call params (#2377) [Josh Goebel][]
1687
+ - enh(parser) pre/post-highlightBlock callbacks via plugin (#2285) [Josh Goebel][]
1688
+ - (fortran) Add Fortran 2018 keywords and coarray intrinsics (#2361) [Sam Miller][]
1689
+ - (delphi) highlight hexadecimal, octal, and binary numbers (#2370) [Robert Riebisch]()
1690
+ - enh(plaintext) added `text` and `txt` as alias (#2360) [Taufik Nurrohman][]
1691
+ - enh(powershell) added PowerShell v5.1/v7 default aliases as "built_in"s (#2423) [Sean Williams][]
1692
+ - enh(yaml) added support for timestamps (#2475) [Peter Plantinga][]
1693
+
1694
+ Developer Tools:
1695
+
1696
+ - added Dockerfile for optionally developing with a container
1697
+
1698
+ [Omid Golparvar]: https://github.com/omidgolparvar
1699
+ [Alexandre Grison]: https://github.com/agrison
1700
+ [Josh Goebel]: https://github.com/joshgoebel
1701
+ [Chen Bin]: https://github.com/redguardtoo
1702
+ [Sam Miller]: https://github.com/smillerc
1703
+ [Robert Riebisch]: https://github.com/bttrx
1704
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
1705
+ [Josh Goebel]: https://github.com/joshgoebel
1706
+ [Sean Williams]: https://github.com/hmmwhatsthisdo
1707
+ [Adnan Yaqoob]: https://github.com/adnanyaqoobvirk
1708
+ [Álvaro Mondéjar]: https://github.com/mondeja
1709
+
1710
+
1711
+ ## Version 9.18.1
1712
+
1713
+ Grammar Improvements:
1714
+
1715
+ - bug(coffeescript) fix freezing bug due to badly behaved regex (#2376) [Josh Goebel][]
1716
+
1717
+ [Josh Goebel]: https://github.com/joshgoebel
1718
+
1719
+
1720
+ ## Version 9.18.0
1721
+
1722
+ New languages:
1723
+
1724
+ - none.
1725
+
1726
+ New themes:
1727
+
1728
+ - none.
1729
+
1730
+ Core Changes:
1731
+
1732
+ - none.
1733
+
1734
+ Language Improvements:
1735
+
1736
+ - (javascript) fix JSX self-closing tag issues (#2322) [Josh Goebel][]
1737
+ - (fortran) added `block` and `endblock` keywords (#2343) [Philipp Engel][]
1738
+ - (javascript) support jsx fragments (#2333) [Josh Goebel][]
1739
+ - (ini) support TOML arrays, clean up grammar (#2335) [Josh Goebel][]
1740
+ - (vbnet) add nameof operator to the keywords (#2329) [Youssef Victor][]
1741
+ - (stan) updated with improved coverage of language keywords and patterns. (#1829) [Jeffrey Arnold][]
1742
+ - enh(cpp) Detect namespaced function types (`A::typeName func(...)`) (#2332) [Josh Goebel][]
1743
+ - enh(cpp) Detect namespaced functions also (`A::functionName`) (#2332) [Josh Goebel][]
1744
+ - enh(cpp) Properly detect decltype(auto) (#2332) [Josh Goebel][]
1745
+ - enh(cpp) recognize primitive types (`int8_t`, etc.) as function types (#2332) [Josh Goebel][]
1746
+
1747
+ Developer Tools:
1748
+
1749
+ - feat(developer): add button to show parsed structure (#2345) [Nils Knappmeier][]
1750
+
1751
+ [Jeffrey Arnold]: https://github.com/jrnold
1752
+ [Josh Goebel]: https://github.com/joshgoebel
1753
+ [Philipp Engel]: https://github.com/interkosmos
1754
+ [Youssef Victor]: https://github.com/Youssef1313
1755
+ [Nils Knappmeier]: https://github.com/nknapp
1756
+
1757
+
1758
+ ## Version 9.17.1
1759
+
1760
+ Fixes:
1761
+
1762
+ - fix(parser): resolve IE 11 issue with Object.freeze() (#2319) [Josh Goebel][]
1763
+
1764
+ [Josh Goebel]: https://github.com/joshgoebel
1765
+
1766
+
1767
+ ## Version 9.17.0
1768
+
1769
+ New languages:
1770
+
1771
+ - none.
1772
+
1773
+ New themes:
1774
+
1775
+ - *Gradient Dark* by [Samia Ali][]
1776
+
1777
+ Core Improvements:
1778
+
1779
+ - chore(parser): switch from `createElementNS` to `createElement` (#2314) [Josh Goebel][]
1780
+ - enh(parser): add better error when a language requirement is missing (#2311) [Josh Goebel][]
1781
+ - fix(parser/docs): disallow `self` mode at the top-level of a language (#2294) [Josh Goebel][]
1782
+ - enh(parser) add safe & debug modes. Better error handling for crash conditions. (#2286) [Josh Goebel][]
1783
+ - fix(parser): Fix merger HTML attribute quoting (#2235) [Josh Goebel][]
1784
+ - fix(parser): Look-ahead regex now work for end matches also (#2237) [Josh Goebel][]
1785
+ - fix(parser): Better errors when a language is missing (#2236) [Josh Goebel][]
1786
+ - fix(parser): freeze built-in modes to prevent grammars altering them (#2271) [Josh Goebel][]
1787
+ - fix(themes): fix inconsistencies between some themes padding/spacing (#2300) [Josh Goebel][]
1788
+ - ehh(build) Add CI check for building a "use strict" safe rollup package from NPM builds (#2247) [Josh Goebel][]
1789
+ - fix(pkg): Prefix global addEventListener with window to be able to minify with closure compiler (#2305) [Kirill Saksin]()
1790
+
1791
+ Language Improvements:
1792
+
1793
+ - fix(sql): backslash is not used to escape in strings in standard SQL (#1748) [Mike Schall][]
1794
+ - enh(ebnf) add backticks as additional string variant (#2290) [Chris Marchesi][]
1795
+ - chore(javascript): add esm related extensions to aliases (#2298) [Rongjian Zhang][]
1796
+ - fix(kotlin): fix termination of """ string literals (#2295) [Josh Goebel][]
1797
+ - fix(mercury): don't change global STRING modes (#2271) [Josh Goebel][]
1798
+ - enh(xml) expand and improve document type highlighting (#2287) [w3suli][]
1799
+ - enh(ebnf) add underscore as allowed meta identifier character, and dot as terminator (#2281) [Chris Marchesi][]
1800
+ - fix(makefile) fix double relevance for assigns, improves auto-detection (#2278) [Josh Goebel][]
1801
+ - enh(xml) support for highlighting entities (#2260) [w3suli][]
1802
+ - enh(gml) fix naming of keyword class (consistency fix) (#2254) [Liam Nobel][]
1803
+ - enh(javascript): Add support for jsdoc comments (#2245) [Milutin Kristofic][]
1804
+ - fix(python) fix `if` getting confused as an f-string (#2200) [Josh Goebel][] and [Carl Baxter][]
1805
+ - enh(powershell) major overhaul, huge improvements (#2224)
1806
+ - enh(css) Improve @rule highlighting, including properties (#2241) [Josh Goebel][]
1807
+ - enh(css) Improve highlighting of numbers inside expr/func `calc(2px+3px)` (#2241)
1808
+ - enh(scss) Pull some of the CSS improvements back into SCSS (#2241)
1809
+ - fix(go): Fix escaped character literals (#2266) [David Benjamin][]
1810
+ - fix(objectivec): Fix various preprocessor highlighting issues (#2265) [David Benjamin][]
1811
+ - fix(objectivec): Handle multibyte character literals (#2268) [David Benjamin][]
1812
+ - enh(cpp): Add additional keywords (#2289) [Adrian Ostrowski][]
1813
+
1814
+ [Josh Goebel]: https://github.com/joshgoebel
1815
+ [Liam Nobel]: https://github.com/liamnobel
1816
+ [Carl Baxter]: https://github.com/cdbax
1817
+ [Milutin Kristofic]: https://github.com/milutin
1818
+ [w3suli]: https://github.com/w3suli
1819
+ [David Benjamin]: https://github.com/davidben
1820
+ [Chris Marchesi]: https://github.com/vancluever
1821
+ [Adrian Ostrowski]: https://github.com/aostrowski
1822
+ [Rongjian Zhang]: https://github.com/pd4d10
1823
+ [Mike Schall]: https://github.com/schallm
1824
+ [Kirill Saksin]: https://github.com/saksmt
1825
+ [Samia Ali]:https://github.com/samiaab1990
1826
+ [Erik Demaine]:https://github.com/edemaine
1827
+
1828
+
1829
+ ## Version 9.16.2
1830
+
1831
+ New languages:
1832
+ none.
1833
+
1834
+ New styles:
1835
+ none.
1836
+
1837
+ Improvements:
1838
+ - fix(arduino) Resolves issue with arduino.js not being "use strict" safe (#2247)
1839
+
1840
+
1841
+ ## Version 9.16.1
1842
+
1843
+ New languages:
1844
+ none.
1845
+
1846
+ New styles:
1847
+ - *Night Owl* by [Carl Baxter][]
1848
+
1849
+ Improvements:
1850
+ - Add CLI tool to quickly check for relevance conflicts [Mark Ellis][] (#1554)
1851
+ - enhance(twig) update list of filter and tags (#2090)
1852
+ - fix(crystal): correctly highlight `!~` method definition (#2222)
1853
+ - fix dropping characters if we choke up on a 0-width match (#2219)
1854
+ - (accesslog) improve accesslog relevancy scoring (#2172)
1855
+ - fix(shell): fix parsing of prompts with forward slash (#2218)
1856
+ - improve parser to properly support look-ahead regex in begin matchers (#2135)
1857
+ - blacklist super-common keywords from having relevance (#2179)
1858
+ - fix(swift): support for `@dynamicMemberLookup` and `@propertyWrapper` (#2202)
1859
+ - fix: `endWithParent` inside `starts` now always works (#2201)
1860
+ - fix(typescript): constructor in declaration doesn't break highlighting
1861
+ - fix(typescript): only match function keyword as a separate identifier (#2191)
1862
+ - feature(arduino) make arduino a super-set of cpp grammar
1863
+ - fix(javascript): fix object attributes immediately following line comments
1864
+ - fix(xml): remove `vbscript` as potential script tag subLanguage
1865
+ - fix(Elixir): improve regex for numbers
1866
+ - fix(YAML): improve matching for keys, blocks and numbers
1867
+ - fix(Pony): improve regex for numbers
1868
+ - fix(handlebars): add support for raw-blocks, and triple-mustaches(#2175)
1869
+ - fix(handlebars): fix parsing of block-comments containing closing mustaches (#2175)
1870
+ - fix(handlebars): add support for segment-literal notation, and escaped mustaches (#2184)
1871
+ - JSON: support for comments in JSON (#2016)
1872
+ - fix(cpp): improve string literal matching
1873
+ - fix(highlight.js): omit empty span-tags in the output (#2182)
1874
+ - fix(Go): improve function declaration matching
1875
+ - fix(python): added support for f-string literal curly braces (#2195)
1876
+ - fix(cpp): add `future` built-in (#1610)
1877
+ - fix(python): support comments within function parameters (#2214)
1878
+
1879
+ [Carl Baxter]: https://github.com/cdbax
1880
+ [Mark Ellis]: https://github.com/ellismarkf
1881
+
1882
+ ## Version 9.15.10
1883
+ New languages:
1884
+ none.
1885
+ New styles:
1886
+ none.
1887
+ Improvements:
1888
+ - support for ruby's squiggly heredoc (#2049)
1889
+ - support css custom properties (#2082)
1890
+ - fix(PureBASIC): update to 5.60 (#1508)
1891
+ - fix(Kotlin): parenthesized types in function declaration (#2107)
1892
+ - fix(Kotlin): nested comment (#2104)
1893
+ - fix(isbl): contains key typo (#2103)
1894
+ - fix(github-gist.css): match Github styles (#2100)
1895
+ - fix(elm): update to latest elm syntax (#2088)
1896
+ - fix: Support highlighting inline HTML and CSS tagged template strings in JS and TS (#2105)
1897
+ - feat(YAML): add YAML to common languages (#1952)
1898
+ - feat(xml): Add support for Windows Script File (.wsf), inline VBScript in XML `script` tags (#1690)
1899
+
1900
+ ## Version 9.15.9
1901
+
1902
+ Improvements:
1903
+ - fix(AutoHotkey): order and extended highlighting (#1579)
1904
+ - fix(Go): correctly highlight hex numbers, rather than stopping at last 'd' or 'f'. (#2060)
1905
+ - fix(Mathematica): Improvements to language (#2065)
1906
+ - fix(Node): Adds SCSS build (#2079)
1907
+ - fix(Rust): update keywords (#2052)
1908
+ - fix(Stata): Added keywords for the meta-analysis suite introduced in Stata 16 (#2081)
1909
+ - fix(Bash): escape double quotes (#2048)
1910
+
1911
+ ## Version 9.15.8
1912
+
1913
+ New languages:
1914
+ none.
1915
+ New styles:
1916
+ none.
1917
+ Improvements:
1918
+ - fix(bash): revert escaped double quotes - broke Firefox/Safari.
1919
+
1920
+ ## Version 9.15.7
1921
+ New languages:
1922
+ none.
1923
+ New styles:
1924
+ none.
1925
+ Improvements:
1926
+ - fix(powershell): Add cmdlets (#2022)
1927
+ - fix(Bash): escaped double quotes (#2041)
1928
+ - fix(c++): add aliases 'hh', 'hxx', 'cxx' (#2017)
1929
+ - fix(ini/toml): Support comments on the same line. (#2039)
1930
+ - fix(JSX): not rendering well in a function without parentheses. (#2024)
1931
+ - fix(LiveCode): language definition update (#2021)
1932
+ - fix(markdown): indented lists (#2004)
1933
+ - fix(styles/school-book): don't style all the pre, use .hljs instead (#2034)
1934
+ - fix(JSX): Modify JSX tag detection to use XML language regex in place of simplistic \w+
1935
+
1936
+ ## Version 9.15.6
1937
+ New languages:
1938
+ none.
1939
+ New styles:
1940
+ none.
1941
+ Improvements:
1942
+ - Move dependencies to be devDependencies.
1943
+ - Fixed security issues in dev dependencies.
1944
+
1945
+ ## Version 9.15.5
1946
+ New languages:
1947
+ none.
1948
+ New styles:
1949
+ none.
1950
+ Improvements:
1951
+ 🔥 Hot fix: updated build tool.
1952
+
1953
+ ## Version 9.15.4
1954
+ New languages:
1955
+ none.
1956
+ New styles:
1957
+ none.
1958
+ Improvements:
1959
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1960
+
1961
+ ## Version 9.15.3
1962
+ New languages:
1963
+ none.
1964
+ New styles:
1965
+ none.
1966
+ Improvements:
1967
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1968
+
1969
+ ## Version 9.15.2
1970
+ New languages:
1971
+ none.
1972
+ New styles:
1973
+ none.
1974
+ Improvements:
1975
+ 🔥 Hot fix that was preventing highlight.js from installing.
1976
+
1977
+ ## Version 9.15.1
1978
+
1979
+ New languages:
1980
+ none.
1981
+
1982
+ New styles:
1983
+ none.
1984
+
1985
+ Improvements:
1986
+
1987
+ - Pony: Fixed keywords without spaces at line ends, highlighting of `iso` in class definitions, and function heads without bodies in traits and interfaces. Removed FUNCTION and CLASS modes until they are found to be needed and to provide some of the fixes.
1988
+ - Support external language files in minified version of highlight.js (#1888)
1989
+
1990
+ ## Version 9.15
1991
+
1992
+ New languages:
1993
+ none.
1994
+
1995
+ New styles:
1996
+ none.
1997
+
1998
+ Improvements:
1999
+ - new cli tool `hljs` - allows easier [building from command line](docs/building-testing.rst#building-a-bundle-from-the-command-line).
2000
+ - cpp: Fully support C++11 raw strings. (#1897)
2001
+ - Python: Treat False None and True as literals (#1920)
2002
+
2003
+ ## Version 9.14.2
2004
+
2005
+ New languages:
2006
+ none.
2007
+ New styles:
2008
+ none.
2009
+ Improvements:
2010
+ - *Gauss* fixed to stop global namespace pollution [Scott Hyndman][].
2011
+ - fix(Tcl): removed apostrophe string delimiters (don't exist)
2012
+
2013
+ [Scott Hyndman]: https://github.com/shyndman
2014
+
2015
+ ## Version 9.14.1
2016
+
2017
+ New languages:
2018
+ none.
2019
+ New styles:
2020
+ none.
2021
+ Improvements:
2022
+ - Pony: language improvements (#1958)
2023
+
2024
+ ## Version 9.14.0
2025
+
2026
+ New languages:
2027
+ none.
2028
+ New styles:
2029
+ none.
2030
+ Improvements:
2031
+ - Pony: add missing "object" highlighting (#1932)
2032
+ - Added *XQuery* built-in functions, prolog declarations, as well as parsing of function bodies, computed and direct constructors, by [Duncan Paterson][]
2033
+ - fix(dart): Corrects highlighting with string interpolation. (#1946)
2034
+ - fix(swift): be eager on optional-using types (!/?) (#1919)
2035
+ - fix(tex): Changed cyrillic to unicode (IE11 throw SCRIPT5021) (#1601)
2036
+ - fix(JavaScript): Recognize get/set accessor keywords (#1940)
2037
+ - Fixed Dockerfile definition when using highlight continuation parameter, by [Laurent Voullemier][]
2038
+ - Added tests & new `annotation` and `verbatim` keywords to *Crystal*, by [Benoit de Chezelles][]
2039
+ - Added missing dockerfile markup tests, by [Laurent Voullemier][]
2040
+ Allow empty prompt text in clojure-repl, by [Egor Rogov][]
2041
+ - Fixed several issues with *Crystal* language definition, by [Johannes Müller][]
2042
+ - Added `C#` as an alias for *CSharp* language, by [Ahmed Atito][]
2043
+ - Added generic user-defined proc support, new compiler define, refactor to re-use rules, and add tests to *GAUSS*, by [Matthew Evans][]
2044
+ - Improve *Crystal* language to highlight regexes after some keywords, by [Tsuyusato Kitsune][]
2045
+ - Fix filterByQualifiers: fileInfo can be null
2046
+ - Fixed String interpolation in Dart, by [Scott Hyndman][].
2047
+
2048
+ [Laurent Voullemier]: https://github.com/l-vo
2049
+ [Benoit de Chezelles]: https://github.com/bew
2050
+ [Johannes Müller]: https://github.com/straight-shoota
2051
+ [Ahmed Atito]: https://github.com/atitoa93
2052
+ [Matthew Evans]: https://github.com/matthewevans
2053
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2054
+ [Scott Hyndman]: https://github.com/shyndman
2055
+ [Duncan Paterson]: https://github.com/duncdrum
2056
+
2057
+ ## Version 9.13.1
2058
+
2059
+ Improvements:
2060
+
2061
+ - *C#* function declarations no longer include trailing whitespace, by [JeremyTCD][]
2062
+ - Added new and missing keywords to *AngelScript*, by [Melissa Geels][]
2063
+ - *TypeScript* decorator factories highlighting fix, by [Antoine Boisier-Michaud][]
2064
+ - Added support for multiline strings to *Swift*, by [Alejandro Isaza][]
2065
+ - Fixed issue that was causing some minifiers to fail.
2066
+ - Fixed `autoDetection` to accept language aliases.
2067
+
2068
+ [JeremyTCD]: https://github.com/JeremyTCD
2069
+ [Melissa Geels]: https://github.com/codecat
2070
+ [Antoine Boisier-Michaud]: https://github.com/Aboisier
2071
+ [Alejandro Isaza]: https://github.com/alejandro-isaza
2072
+
2073
+ ## Version 9.13.0
2074
+
2075
+ New languages:
2076
+
2077
+ - *ArcGIS Arcade* by [John Foster][]
2078
+ - *AngelScript* by [Melissa Geels][]
2079
+ - *GML* by [meseta][]
2080
+ - *isbl* built-in language DIRECTUM and Conterra by [Dmitriy Tarasov][].
2081
+ - *PostgreSQL* SQL dialect and PL/pgSQL language by [Egor Rogov][].
2082
+ - *ReasonML* by [Gidi Meir Morris][]
2083
+ - *SAS* by [Mauricio Caceres Bravo][]
2084
+ - *Plaintext* by [Egor Rogov][]
2085
+ - *.properties* by [bostko][] and [Egor Rogov][]
2086
+
2087
+ New styles:
2088
+
2089
+ - *a11y-dark theme* by [Eric Bailey][]
2090
+ - *a11y-light theme* by [Eric Bailey][]
2091
+ - *An Old Hope* by [Gustavo Costa][]
2092
+ - *Atom One Dark Reasonable* by [Gidi Meir Morris][]
2093
+ - *isbl editor dark* by [Dmitriy Tarasov][]
2094
+ - *isbl editor light* by [Dmitriy Tarasov][]
2095
+ - *Lightfair* by [Tristian Kelly][]
2096
+ - [*Nord*][nord-highlightjs] by [Arctic Ice Studio][]
2097
+ - *[🦄 Shades of Purple](https://github.com/ahmadawais/Shades-of-Purple-HighlightJS)* by [Ahmad Awais][]
2098
+
2099
+ Improvements:
2100
+
2101
+ - New attribute `endSameAsBegin` for nested constructs with variable names
2102
+ by [Egor Rogov][].
2103
+ - *Python* highlighting of escaped quotes fixed by [Harmon][]
2104
+ - *PHP*: Added alias for php7, by [Vijaya Chandran Mani][]
2105
+ - *C++* string handling, by [David Benjamin][]
2106
+ - *Swift* Add `@objcMembers` to `@attributes`, by [Berk Çebi][]
2107
+ - Infrastructural changes by [Marcos Cáceres][]
2108
+ - Fixed metachars highighting for *NSIS* by [Jan T. Sott][]
2109
+ - *Yaml* highlight local tags as types by [Léo Lam][]
2110
+ - Improved highlighting for *Elixir* by [Piotr Kaminski][]
2111
+ - New attribute `disableAutodetect` for preventing autodetection by [Egor Rogov][]
2112
+ - *Matlab*: transpose operators and double quote strings, by [JohnC32][] and [Egor Rogov][]
2113
+ - Various documentation typos and improvemets by [Jimmy Wärting][], [Lutz Büch][], [bcleland][]
2114
+ - *Cmake* updated with new keywords and commands by [Deniz Bahadir][]
2115
+
2116
+ [Ahmad Awais]: https://github.com/ahmadawais
2117
+ [Arctic Ice Studio]: https://github.com/arcticicestudio
2118
+ [Dmitriy Tarasov]: https://github.com/MedvedTMN
2119
+ [Egor Rogov]: https://github.com/egor-rogov
2120
+ [Eric Bailey]: https://github.com/ericwbailey
2121
+ [Gidi Meir Morris]: https://github.com/gmmorris
2122
+ [Gustavo Costa]: https://github.com/gusbemacbe
2123
+ [Harmon]: https://github.com/Harmon758
2124
+ [Melissa Geels]: https://github.com/codecat
2125
+ [meseta]: https://github.com/meseta
2126
+ [nord-highlightjs]: https://github.com/arcticicestudio/nord-highlightjs
2127
+ [Tristian Kelly]: https://github.com/TristianK3604
2128
+ [Vijaya Chandran Mani]: https://github.com/vijaycs85
2129
+ [John Foster]: https://github.com/jf990
2130
+ [David Benjamin]: https://github.com/davidben
2131
+ [Berk Çebi]: https://github.com/berkcebi
2132
+ [Mauricio Caceres Bravo]: https://github.com/mcaceresb
2133
+ [bostko]: https://github.com/bostko
2134
+ [Deniz Bahadir]: https://github.com/Bagira80
2135
+ [bcleland]: https://github.com/bcleland
2136
+ [JohnC32]: https://github.com/JohnC32
2137
+ [Lutz Büch]: https://github.com/lutz-100worte
2138
+ [Piotr Kaminski]: https://github.com/pkaminski
2139
+ [Léo Lam]: https://github.com/leoetlino
2140
+ [Jan T. Sott]: https://github.com/idleberg
2141
+ [Jimmy Wärting]: https://github.com/jimmywarting
2142
+ [Marcos Cáceres]: https://github.com/marcoscaceres
2143
+
2144
+ ## Version 9.12.0
2145
+
2146
+ New language:
2147
+
2148
+ - *MikroTik* RouterOS Scripting language by [Ivan Dementev][].
2149
+
2150
+ New style:
2151
+
2152
+ - *VisualStudio 2015 Dark* by [Nicolas LLOBERA][]
2153
+
2154
+ Improvements:
2155
+ - *Crystal* updated with new keywords and syntaxes by [Tsuyusato Kitsune][].
2156
+ - *Julia* updated to the modern definitions by [Alex Arslan][].
2157
+ - *julia-repl* added by [Morten Piibeleht][].
2158
+ - [Stanislav Belov][] wrote a new definition for *1C*, replacing the one that
2159
+ has not been updated for more than 8 years. The new version supports syntax
2160
+ for versions 7.7 and 8.
2161
+ - [Nicolas LLOBERA][] improved C# definition fixing edge cases with function
2162
+ titles detection and added highlighting of `[Attributes]`.
2163
+ - [nnnik][] provided a few correctness fixes for *Autohotkey*.
2164
+ - [Martin Clausen][] made annotation collections in *Clojure* to look
2165
+ consistently with other kinds.
2166
+ - [Alejandro Alonso][] updated *Swift* keywords.
2167
+
2168
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2169
+ [Alex Arslan]: https://github.com/ararslan
2170
+ [Morten Piibeleht]: https://github.com/mortenpi
2171
+ [Stanislav Belov]: https://github.com/4ppl
2172
+ [Ivan Dementev]: https://github.com/DiVAN1x
2173
+ [Nicolas LLOBERA]: https://github.com/Nicolas01
2174
+ [nnnik]: https://github.com/nnnik
2175
+ [Martin Clausen]: https://github.com/maacl
2176
+ [Alejandro Alonso]: https://github.com/Azoy
2177
+
2178
+ ## Version 9.11.0
2179
+
2180
+ New languages:
2181
+
2182
+ - *Shell* by [Tsuyusato Kitsune][]
2183
+ - *jboss-cli* by [Raphaël Parrëe][]
2184
+
2185
+ Improvements:
2186
+
2187
+ - [Joël Porquet] has [greatly improved the definition of *makefile*][5b3e0e6].
2188
+ - *C++* class titles are now highlighted as in other languages with classes.
2189
+ - [Jordi Petit][] added rarely used `or`, `and` and `not` keywords to *C++*.
2190
+ - [Pieter Vantorre][] fixed highlighting of negative floating point values.
2191
+
2192
+
2193
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2194
+ [Jordi Petit]: https://github.com/jordi-petit
2195
+ [Raphaël Parrëe]: https://github.com/rparree
2196
+ [Pieter Vantorre]: https://github.com/NuclearCookie
2197
+ [5b3e0e6]: https://github.com/isagalaev/highlight.js/commit/5b3e0e68bfaae282faff6697d6a490567fa9d44b
2198
+
2199
+
2200
+ ## Version 9.10.0
2201
+
2202
+ Apologies for missing the previous release cycle. Some thing just can't be
2203
+ automated… Anyway, we're back!
2204
+
2205
+ New languages:
2206
+
2207
+ - *Hy* by [Sergey Sobko][]
2208
+ - *Leaf* by [Hale Chan][]
2209
+ - *N1QL* by [Andres Täht][] and [Rene Saarsoo][]
2210
+
2211
+ Improvements:
2212
+
2213
+ - *Rust* got updated with new keywords by [Kasper Andersen][] and then
2214
+ significantly modernized even more by [Eduard-Mihai Burtescu][] (yes, @eddyb,
2215
+ Rust core team member!)
2216
+ - *Python* updated with f-literals by [Philipp A][].
2217
+ - *YAML* updated with unquoted strings support.
2218
+ - *Gauss* updated with new keywords by [Matt Evans][].
2219
+ - *Lua* updated with new keywords by [Joe Blow][].
2220
+ - *Kotlin* updated with new keywords by [Philipp Hauer][].
2221
+ - *TypeScript* got highlighting of function params and updated keywords by
2222
+ [Ike Ku][].
2223
+ - *Scheme* now correctly handles \`-quoted lists thanks to [Guannan Wei].
2224
+ - [Sam Wu][] fixed handling of `<<` in *C++* defines.
2225
+
2226
+ [Philipp A]: https://github.com/flying-sheep
2227
+ [Philipp Hauer]: https://github.com/phauer
2228
+ [Sergey Sobko]: https://github.com/profitware
2229
+ [Hale Chan]: https://github.com/halechan
2230
+ [Matt Evans]: https://github.com/matthewevans
2231
+ [Joe Blow]: https://github.com/mossarelli
2232
+ [Kasper Andersen]: https://github.com/kasma1990
2233
+ [Eduard-Mihai Burtescu]: https://github.com/eddyb
2234
+ [Andres Täht]: https://github.com/andrestaht
2235
+ [Rene Saarsoo]: https://github.com/nene
2236
+ [Philipp Hauer]: https://github.com/phauer
2237
+ [Ike Ku]: https://github.com/dempfi
2238
+ [Guannan Wei]: https://github.com/Kraks
2239
+ [Sam Wu]: https://github.com/samsam2310
2240
+
2241
+
2242
+ ## Version 9.9.0
2243
+
2244
+ New languages
2245
+
2246
+ - *LLVM* by [Michael Rodler][]
2247
+
2248
+ Improvements:
2249
+
2250
+ - *TypeScript* updated with annotations and param lists inside constructors, by
2251
+ [Raphael Parree][].
2252
+ - *CoffeeScript* updated with new keywords and fixed to recognize JavaScript
2253
+ in \`\`\`, thanks to thanks to [Geoffrey Booth][].
2254
+ - Compiler directives in *Delphi* are now correctly highlighted as "meta".
2255
+
2256
+ [Raphael Parree]: https://github.com/rparree
2257
+ [Michael Rodler]: https://github.com/f0rki
2258
+ [Geoffrey Booth]: https://github.com/GeoffreyBooth
2259
+
2260
+
2261
+ ## Version 9.8.0 "New York"
2262
+
2263
+ This version is the second one that deserved a name. Because I'm in New York,
2264
+ and the release isn't missing the deadline only because it's still Tuesday on
2265
+ West Coast.
2266
+
2267
+ New languages:
2268
+
2269
+ - *Clean* by [Camil Staps][]
2270
+ - *Flix* by [Magnus Madsen][]
2271
+
2272
+ Improvements:
2273
+
2274
+ - [Kenton Hamaluik][] did a comprehensive update for *Haxe*.
2275
+ - New commands for *PowerShell* from [Nicolas Le Gall][].
2276
+ - [Jan T. Sott][] updated *NSIS*.
2277
+ - *Java* and *Swift* support unicode characters in identifiers thanks to
2278
+ [Alexander Lichter][].
2279
+
2280
+ [Camil Staps]: https://github.com/camilstaps
2281
+ [Magnus Madsen]: https://github.com/magnus-madsen
2282
+ [Kenton Hamaluik]: https://github.com/FuzzyWuzzie
2283
+ [Nicolas Le Gall]: https://github.com/darkitty
2284
+ [Jan T. Sott]: https://github.com/idleberg
2285
+ [Alexander Lichter]: https://github.com/manniL
2286
+
2287
+
2288
+ ## Version 9.7.0
2289
+
2290
+ A comprehensive bugfix release. This is one of the best things about
2291
+ highlight.js: even boring things keep getting better (even if slow).
2292
+
2293
+ - VHDL updated with PSL keywords and uses more consistent styling.
2294
+ - Nested C-style comments no longer break highlighting in many languages.
2295
+ - JavaScript updated with `=>` functions, highlighted object attributes and
2296
+ parsing within template string substitution blocks (`${...}`).
2297
+ - Fixed another corner case with self-closing `<tag/>` in JSX.
2298
+ - Added `HEALTHCHECK` directive in Docker.
2299
+ - Delphi updated with new Free Pascal keywords.
2300
+ - Fixed digit separator parsing in C++.
2301
+ - C# updated with new keywords and fixed to allow multiple identifiers within
2302
+ generics `<...>`.
2303
+ - Fixed another slow regex in Less.
2304
+
2305
+
2306
+ ## Version 9.6.0
2307
+
2308
+ New languages:
2309
+
2310
+ - *ABNF* and *EBNF* by [Alex McKibben][]
2311
+ - *Awk* by [Matthew Daly][]
2312
+ - *SubUnit* by [Sergey Bronnikov][]
2313
+
2314
+ New styles:
2315
+
2316
+ - *Atom One* in both Dark and Light variants by [Daniel Gamage][]
2317
+
2318
+ Plus, a few smaller updates for *Lasso*, *Elixir*, *C++* and *SQL*.
2319
+
2320
+ [Alex McKibben]: https://github.com/mckibbenta
2321
+ [Daniel Gamage]: https://github.com/danielgamage
2322
+ [Matthew Daly]: https://github.com/matthewbdaly
2323
+ [Sergey Bronnikov]: https://github.com/ligurio
2324
+
2325
+
2326
+ ## Version 9.5.0
2327
+
2328
+ New languages:
2329
+
2330
+ - *Excel* by [Victor Zhou][]
2331
+ - *Linden Scripting Language* by [Builder's Brewery][]
2332
+ - *TAP* (Test Anything Protocol) by [Sergey Bronnikov][]
2333
+ - *Pony* by [Joe Eli McIlvain][]
2334
+ - *Coq* by [Stephan Boyer][]
2335
+ - *dsconfig* and *LDIF* by [Jacob Childress][]
2336
+
2337
+ New styles:
2338
+
2339
+ - *Ocean Dark* by [Gavin Siu][]
2340
+
2341
+ Notable changes:
2342
+
2343
+ - [Minh Nguyễn][] added more built-ins to Objective C.
2344
+ - [Jeremy Hull][] fixed corner cases in C++ preprocessor directives and Diff
2345
+ comments.
2346
+ - [Victor Zhou][] added support for digit separators in C++ numbers.
2347
+
2348
+ [Gavin Siu]: https://github.com/gavsiu
2349
+ [Builder's Brewery]: https://github.com/buildersbrewery
2350
+ [Victor Zhou]: https://github.com/OiCMudkips
2351
+ [Sergey Bronnikov]: https://github.com/ligurio
2352
+ [Joe Eli McIlvain]: https://github.com/jemc
2353
+ [Stephan Boyer]: https://github.com/boyers
2354
+ [Jacob Childress]: https://github.com/braveulysses
2355
+ [Minh Nguyễn]: https://github.com/1ec5
2356
+ [Jeremy Hull]: https://github.com/sourrust
2357
+
2358
+
2359
+ ## Version 9.4.0
2360
+
2361
+ New languages:
2362
+
2363
+ - *PureBASIC* by [Tristano Ajmone][]
2364
+ - *BNF* by [Oleg Efimov][]
2365
+ - *Ada* by [Lars Schulna][]
2366
+
2367
+ New styles:
2368
+
2369
+ - *PureBASIC* by [Tristano Ajmone][]
2370
+
2371
+ Improvements to existing languages and styles:
2372
+
2373
+ - We now highlight function declarations in Go.
2374
+ - [Taisuke Fujimoto][] contributed very convoluted rules for raw and
2375
+ interpolated strings in C#.
2376
+ - [Boone Severson][] updated Verilog to comply with IEEE 1800-2012
2377
+ SystemVerilog.
2378
+ - [Victor Zhou][] improved rules for comments and strings in PowerShell files.
2379
+ - [Janis Voigtländer][] updated the definition of Elm to version 0.17 of the
2380
+ languages. Elm is now featured on the front page of <https://highlightjs.org>.
2381
+ - Special variable `$this` is highlighted as a keyword in PHP.
2382
+ - `usize` and `isize` are now highlighted in Rust.
2383
+ - Fixed labels and directives in x86 assembler.
2384
+
2385
+ [Tristano Ajmone]: https://github.com/tajmone
2386
+ [Taisuke Fujimoto]: https://github.com/temp-impl
2387
+ [Oleg Efimov]: https://github.com/Sannis
2388
+ [Boone Severson]: https://github.com/BooneJS
2389
+ [Victor Zhou]: https://github.com/OiCMudkips
2390
+ [Lars Schulna]: https://github.com/captain-hanuta
2391
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
2392
+
2393
+
2394
+ ## Version 9.3.0
2395
+
2396
+ New languages:
2397
+
2398
+ - *Tagger Script* by [Philipp Wolfer][]
2399
+ - *MoonScript* by [Billy Quith][]
2400
+
2401
+ New styles:
2402
+
2403
+ - *xt256* by [Herbert Shin][]
2404
+
2405
+ Improvements to existing languages and styles:
2406
+
2407
+ - More robust handling of unquoted HTML tag attributes
2408
+ - Relevance tuning for QML which was unnecessary eager at seizing other
2409
+ languages' code
2410
+ - Improve GAMS language parsing
2411
+ - Fixed a bunch of bugs around selectors in Less
2412
+ - Kotlin's got a new definition for annotations, updated keywords and other
2413
+ minor improvements
2414
+ - Added `move` to Rust keywords
2415
+ - Markdown now recognizes \`\`\`-fenced code blocks
2416
+ - Improved detection of function declarations in C++ and C#
2417
+
2418
+ [Philipp Wolfer]: https://github.com/phw
2419
+ [Billy Quith]: https://github.com/billyquith
2420
+ [Herbert Shin]: https://github.com/initbar
2421
+
2422
+
2423
+ ## Version 9.2.0
2424
+
2425
+ New languages:
2426
+
2427
+ - *QML* by [John Foster][]
2428
+ - *HTMLBars* by [Michael Johnston][]
2429
+ - *CSP* by [Taras][]
2430
+ - *Maxima* by [Robert Dodier][]
2431
+
2432
+ New styles:
2433
+
2434
+ - *Gruvbox* by [Qeole][]
2435
+ - *Dracula* by [Denis Ciccale][]
2436
+
2437
+ Improvements to existing languages and styles:
2438
+
2439
+ - We now correctly handle JSX with arbitrary node tree depth.
2440
+ - Argument list for `(lambda)` in Scheme is no longer highlighted as a function
2441
+ call.
2442
+ - Stylus syntax doesn't break on valid CSS.
2443
+ - More correct handling of comments and strings and other improvements for
2444
+ VimScript.
2445
+ - More subtle work on the default style.
2446
+ - We now use anonymous modules for AMD.
2447
+ - `macro_rules!` is now recognized as a built-in in Rust.
2448
+
2449
+ [John Foster]: https://github.com/jf990
2450
+ [Qeole]: https://github.com/Qeole
2451
+ [Denis Ciccale]: https://github.com/dciccale
2452
+ [Michael Johnston]: https://github.com/lastobelus
2453
+ [Taras]: https://github.com/oxdef
2454
+ [Robert Dodier]: https://github.com/robert-dodier
2455
+
2456
+
2457
+ ## Version 9.1.0
2458
+
2459
+ New languages:
2460
+
2461
+ - *Stan* by [Brendan Rocks][]
2462
+ - *BASIC* by [Raphaël Assénat][]
2463
+ - *GAUSS* by [Matt Evans][]
2464
+ - *DTS* by [Martin Braun][]
2465
+ - *Arduino* by [Stefania Mellai][]
2466
+
2467
+ New Styles:
2468
+
2469
+ - *Arduino Light* by [Stefania Mellai][]
2470
+
2471
+ Improvements to existing languages and styles:
2472
+
2473
+ - Handle return type annotations in Python
2474
+ - Allow shebang headers in Javascript
2475
+ - Support strings in Rust meta
2476
+ - Recognize `struct` as a class-level definition in Rust
2477
+ - Recognize b-prefixed chars and strings in Rust
2478
+ - Better numbers handling in Verilog
2479
+
2480
+ [Brendan Rocks]: http://brendanrocks.com
2481
+ [Raphaël Assénat]: https://github.com/raphnet
2482
+ [Matt Evans]: https://github.com/matthewevans
2483
+ [Martin Braun]: https://github.com/mbr0wn
2484
+ [Stefania Mellai]: https://github.com/smellai
2485
+
2486
+
2487
+ ## Version 9.0.0
2488
+
2489
+ The new major version brings a reworked styling system. Highlight.js now defines
2490
+ a limited set of highlightable classes giving a consistent result across all the
2491
+ styles and languages. You can read a more detailed explanation and background in
2492
+ the [tracking issue][#348] that started this long process back in May.
2493
+
2494
+ This change is backwards incompatible for those who uses highlight.js with a
2495
+ custom stylesheet. The [new style guide][sg] explains how to write styles
2496
+ in this new world.
2497
+
2498
+ Bundled themes have also suffered a significant amount of improvements and may
2499
+ look different in places, but all the things now consistent and make more sense.
2500
+ Among others, the Default style has got a refresh and will probably be tweaked
2501
+ some more in next releases. Please do give your feedback in our
2502
+ [issue tracker][issues].
2503
+
2504
+ New languages in this release:
2505
+
2506
+ - *Caché Object Script* by [Nikita Savchenko][]
2507
+ - *YAML* by [Stefan Wienert][]
2508
+ - *MIPS Assembler* by [Nebuleon Fumika][]
2509
+ - *HSP* by [prince][]
2510
+
2511
+ Improvements to existing languages and styles:
2512
+
2513
+ - ECMAScript 6 modules import now do not require closing semicolon.
2514
+ - ECMAScript 6 classes constructors now highlighted.
2515
+ - Template string support for Typescript, as for ECMAScript 6.
2516
+ - Scala case classes params highlight fixed.
2517
+ - Built-in names introduced in Julia v0.4 added by [Kenta Sato][].
2518
+ - Refreshed Default style.
2519
+
2520
+ Other notable changes:
2521
+
2522
+ - [Web workers support][webworkers] added bu [Jan Kühle][].
2523
+ - We now have tests for compressed browser builds as well.
2524
+ - The building tool chain has been switched to node.js 4.x. and is now
2525
+ shamelessly uses ES6 features all over the place, courtesy of [Jeremy Hull][].
2526
+ - License added to non-compressed browser build.
2527
+
2528
+ [Jan Kühle]: https://github.com/frigus02
2529
+ [Stefan Wienert]: https://github.com/zealot128
2530
+ [Kenta Sato]: https://github.com/bicycle1885
2531
+ [Nikita Savchenko]: https://github.com/ZitRos
2532
+ [webworkers]: https://github.com/isagalaev/highlight.js#web-workers
2533
+ [Jeremy Hull]: https://github.com/sourrust
2534
+ [#348]: https://github.com/isagalaev/highlight.js/issues/348
2535
+ [sg]: http://highlightjs.readthedocs.org/en/latest/style-guide.html
2536
+ [issues]: https://github.com/isagalaev/highlight.js/issues
2537
+ [Nebuleon Fumika]: https://github.com/Nebuleon
2538
+ [prince]: https://github.com/prince-0203
2539
+
2540
+
2541
+ ## Version 8.9.1
2542
+
2543
+ Some last-minute changes reverted due to strange bug with minified browser build:
2544
+
2545
+ - Scala case classes params highlight fixed
2546
+ - ECMAScript 6 modules import now do not require closing semicolon
2547
+ - ECMAScript 6 classes constructors now highlighted
2548
+ - Template string support for Typescript, as for ECMAScript 6
2549
+ - License added to not minified browser build
2550
+
2551
+
2552
+ ## Version 8.9.0
2553
+
2554
+ New languages:
2555
+
2556
+ - *crmsh* by [Kristoffer Gronlund][]
2557
+ - *SQF* by [Soren Enevoldsen][]
2558
+
2559
+ [Kristoffer Gronlund]: https://github.com/krig
2560
+ [Soren Enevoldsen]: https://github.com/senevoldsen90
2561
+
2562
+ Notable fixes and improvements to existing languages:
2563
+
2564
+ - Added `abstract` and `namespace` keywords to TypeScript by [Daniel Rosenwasser][]
2565
+ - Added `label` support to Dockerfile by [Ladislav Prskavec][]
2566
+ - Crystal highlighting improved by [Tsuyusato Kitsune][]
2567
+ - Missing Swift keywords added by [Nate Cook][]
2568
+ - Improve detection of C block comments
2569
+ - ~~Scala case classes params highlight fixed~~
2570
+ - ~~ECMAScript 6 modules import now do not require closing semicolon~~
2571
+ - ~~ECMAScript 6 classes constructors now highlighted~~
2572
+ - ~~Template string support for Typescript, as for ECMAScript 6~~
2573
+
2574
+ Other notable changes:
2575
+
2576
+ - ~~License added to not minified browser build~~
2577
+
2578
+ [Kristoffer Gronlund]: https://github.com/krig
2579
+ [Søren Enevoldsen]: https://github.com/senevoldsen90
2580
+ [Daniel Rosenwasser]: https://github.com/DanielRosenwasser
2581
+ [Ladislav Prskavec]: https://github.com/abtris
2582
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2583
+ [Nate Cook]: https://github.com/natecook1000
2584
+
2585
+
2586
+ ## Version 8.8.0
2587
+
2588
+ New languages:
2589
+
2590
+ - *Golo* by [Philippe Charrière][]
2591
+ - *GAMS* by [Stefan Bechert][]
2592
+ - *IRPF90* by [Anthony Scemama][]
2593
+ - *Access logs* by [Oleg Efimov][]
2594
+ - *Crystal* by [Tsuyusato Kitsune][]
2595
+
2596
+ Notable fixes and improvements to existing languages:
2597
+
2598
+ - JavaScript highlighting no longer fails with ES6 default parameters
2599
+ - Added keywords `async` and `await` to Python
2600
+ - PHP heredoc support improved
2601
+ - Allow preprocessor directives within C++ functions
2602
+
2603
+ Other notable changes:
2604
+
2605
+ - Change versions to X.Y.Z SemVer-compatible format
2606
+ - Added ability to build all targets at once
2607
+
2608
+ [Philippe Charrière]: https://github.com/k33g
2609
+ [Stefan Bechert]: https://github.com/b-pos465
2610
+ [Anthony Scemama]: https://github.com/scemama
2611
+ [Oleg Efimov]: https://github.com/Sannis
2612
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2613
+
2614
+
2615
+ ## Version 8.7
2616
+
2617
+ New languages:
2618
+
2619
+ - *Zephir* by [Oleg Efimov][]
2620
+ - *Elm* by [Janis Voigtländer][]
2621
+ - *XQuery* by [Dirk Kirsten][]
2622
+ - *Mojolicious* by [Dotan Dimet][]
2623
+ - *AutoIt* by Manh Tuan from [J2TeaM][]
2624
+ - *Toml* (ini extension) by [Guillaume Gomez][]
2625
+
2626
+ New styles:
2627
+
2628
+ - *Hopscotch* by [Jan T. Sott][]
2629
+ - *Grayscale* by [MY Sun][]
2630
+
2631
+ Notable fixes and improvements to existing languages:
2632
+
2633
+ - Fix encoding of images when copied over in certain builds
2634
+ - Fix incorrect highlighting of the word "bug" in comments
2635
+ - Treat decorators different from matrix multiplication in Python
2636
+ - Fix traits inheritance highlighting in Rust
2637
+ - Fix incorrect document
2638
+ - Oracle keywords added to SQL language definition by [Vadimtro][]
2639
+ - Postgres keywords added to SQL language definition by [Benjamin Auder][]
2640
+ - Fix registers in x86asm being highlighted as a hex number
2641
+ - Fix highlighting for numbers with a leading decimal point
2642
+ - Correctly highlight numbers and strings inside of C/C++ macros
2643
+ - C/C++ functions now support pointer, reference, and move returns
2644
+
2645
+ [Oleg Efimov]: https://github.com/Sannis
2646
+ [Guillaume Gomez]: https://github.com/GuillaumeGomez
2647
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
2648
+ [Jan T. Sott]: https://github.com/idleberg
2649
+ [Dirk Kirsten]: https://github.com/dirkk
2650
+ [MY Sun]: https://github.com/simonmysun
2651
+ [Vadimtro]: https://github.com/Vadimtro
2652
+ [Benjamin Auder]: https://github.com/ghost
2653
+ [Dotan Dimet]: https://github.com/dotandimet
2654
+ [J2TeaM]: https://github.com/J2TeaM
2655
+
2656
+
2657
+ ## Version 8.6
2658
+
2659
+ New languages:
2660
+
2661
+ - *C/AL* by [Kenneth Fuglsang][]
2662
+ - *DNS zone file* by [Tim Schumacher][]
2663
+ - *Ceylon* by [Lucas Werkmeister][]
2664
+ - *OpenSCAD* by [Dan Panzarella][]
2665
+ - *Inform7* by [Bruno Dias][]
2666
+ - *armasm* by [Dan Panzarella][]
2667
+ - *TP* by [Jay Strybis][]
2668
+
2669
+ New styles:
2670
+
2671
+ - *Atelier Cave*, *Atelier Estuary*,
2672
+ *Atelier Plateau* and *Atelier Savanna* by [Bram de Haan][]
2673
+ - *Github Gist* by [Louis Barranqueiro][]
2674
+
2675
+ Notable fixes and improvements to existing languages:
2676
+
2677
+ - Multi-line raw strings from C++11 are now supported
2678
+ - Fix class names with dashes in HAML
2679
+ - The `async` keyword from ES6/7 is now supported
2680
+ - TypeScript functions handle type and parameter complexity better
2681
+ - We unified phpdoc/javadoc/yardoc etc modes across all languages
2682
+ - CSS .class selectors relevance was dropped to prevent wrong language detection
2683
+ - Images is now included to CDN build
2684
+ - Release process is now automated
2685
+
2686
+ [Bram de Haan]: https://github.com/atelierbram
2687
+ [Kenneth Fuglsang]: https://github.com/kfuglsang
2688
+ [Louis Barranqueiro]: https://github.com/LouisBarranqueiro
2689
+ [Tim Schumacher]: https://github.com/enko
2690
+ [Lucas Werkmeister]: https://github.com/lucaswerkmeister
2691
+ [Dan Panzarella]: https://github.com/pzl
2692
+ [Bruno Dias]: https://github.com/sequitur
2693
+ [Jay Strybis]: https://github.com/unreal
2694
+
2695
+
2696
+ ## Version 8.5
2697
+
2698
+ New languages:
2699
+
2700
+ - *pf.conf* by [Peter Piwowarski][]
2701
+ - *Julia* by [Kenta Sato][]
2702
+ - *Prolog* by [Raivo Laanemets][]
2703
+ - *Docker* by [Alexis Hénaut][]
2704
+ - *Fortran* by [Anthony Scemama][] and [Thomas Applencourt][]
2705
+ - *Kotlin* by [Sergey Mashkov][]
2706
+
2707
+ New styles:
2708
+
2709
+ - *Agate* by [Taufik Nurrohman][]
2710
+ - *Darcula* by [JetBrains][]
2711
+ - *Atelier Sulphurpool* by [Bram de Haan][]
2712
+ - *Android Studio* by [Pedro Oliveira][]
2713
+
2714
+ Notable fixes and improvements to existing languages:
2715
+
2716
+ - ES6 features in JavaScript are better supported now by [Gu Yiling][].
2717
+ - Swift now recognizes body-less method definitions.
2718
+ - Single expression functions `def foo, do: ... ` now work in Elixir.
2719
+ - More uniform detection of built-in classes in Objective C.
2720
+ - Fixes for number literals and processor directives in Rust.
2721
+ - HTML `<script>` tag now allows any language, not just JavaScript.
2722
+ - Multi-line comments are supported now in MatLab.
2723
+
2724
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
2725
+ [Jet Brains]: https://www.jetbrains.com/
2726
+ [Peter Piwowarski]: https://github.com/oldlaptop
2727
+ [Kenta Sato]: https://github.com/bicycle1885
2728
+ [Bram de Haan]: https://github.com/atelierbram
2729
+ [Raivo Laanemets]: https://github.com/rla
2730
+ [Alexis Hénaut]: https://github.com/AlexisNo
2731
+ [Anthony Scemama]: https://github.com/scemama
2732
+ [Pedro Oliveira]: https://github.com/kanytu
2733
+ [Gu Yiling]: https://github.com/Justineo
2734
+ [Sergey Mashkov]: https://github.com/cy6erGn0m
2735
+ [Thomas Applencourt]: https://github.com/TApplencourt
2736
+
2737
+
2738
+ ## Version 8.4
2739
+
2740
+ We've got the new [demo page][]! The obvious new feature is the new look, but
2741
+ apart from that it's got smarter: by presenting languages in groups it avoids
2742
+ running 10000 highlighting attempts after first load which was slowing it down
2743
+ and giving bad overall impression. It is now also being generated from test
2744
+ code snippets so the authors of new languages don't have to update both tests
2745
+ and the demo page with the same thing.
2746
+
2747
+ Other notable changes:
2748
+
2749
+ - The `template_comment` class is gone in favor of the more general `comment`.
2750
+ - Number parsing unified and improved across languages.
2751
+ - C++, Java and C# now use unified grammar to highlight titles in
2752
+ function/method definitions.
2753
+ - The browser build is now usable as an AMD module, there's no separate build
2754
+ target for that anymore.
2755
+ - OCaml has got a [comprehensive overhaul][ocaml] by [Mickaël Delahaye][].
2756
+ - Clojure's data structures and literals are now highlighted outside of lists
2757
+ and we can now highlight Clojure's REPL sessions.
2758
+
2759
+ New languages:
2760
+
2761
+ - *AspectJ* by [Hakan Özler][]
2762
+ - *STEP Part 21* by [Adam Joseph Cook][]
2763
+ - *SML* derived by [Edwin Dalorzo][] from OCaml definition
2764
+ - *Mercury* by [mucaho][]
2765
+ - *Smali* by [Dennis Titze][]
2766
+ - *Verilog* by [Jon Evans][]
2767
+ - *Stata* by [Brian Quistorff][]
2768
+
2769
+ [Hakan Özler]: https://github.com/ozlerhakan
2770
+ [Adam Joseph Cook]: https://github.com/adamjcook
2771
+ [demo page]: https://highlightjs.org/static/demo/
2772
+ [Ivan Sagalaev]: https://github.com/isagalaev
2773
+ [Edwin Dalorzo]: https://github.com/edalorzo
2774
+ [mucaho]: https://github.com/mucaho
2775
+ [Dennis Titze]: https://github.com/titze
2776
+ [Jon Evans]: https://github.com/craftyjon
2777
+ [Brian Quistorff]: https://github.com/bquistorff
2778
+ [ocaml]: https://github.com/isagalaev/highlight.js/pull/608#issue-46190207
2779
+ [Mickaël Delahaye]: https://github.com/polazarus
2780
+
2781
+
2782
+ ## Version 8.3
2783
+
2784
+ We streamlined our tool chain, it is now based entirely on node.js instead of
2785
+ being a mix of node.js, Python and Java. The build script options and arguments
2786
+ remained the same, and we've noted all the changes in the [documentation][b].
2787
+ Apart from reducing complexity, the new build script is also faster from not
2788
+ having to start Java machine repeatedly. The credits for the work go to [Jeremy
2789
+ Hull][].
2790
+
2791
+ Some notable fixes:
2792
+
2793
+ - PHP and JavaScript mixed in HTML now live happily with each other.
2794
+ - JavaScript regexes now understand ES6 flags "u" and "y".
2795
+ - `throw` keyword is no longer detected as a method name in Java.
2796
+ - Fixed parsing of numbers and symbols in Clojure thanks to [input from Ivan
2797
+ Kleshnin][ik].
2798
+
2799
+ New languages in this release:
2800
+
2801
+ - *Less* by [Max Mikhailov][]
2802
+ - *Stylus* by [Bryant Williams][]
2803
+ - *Tcl* by [Radek Liska][]
2804
+ - *Puppet* by [Jose Molina Colmenero][]
2805
+ - *Processing* by [Erik Paluka][]
2806
+ - *Twig* templates by [Luke Holder][]
2807
+ - *PowerShell* by [David Mohundro][], based on [the work of Nicholas Blumhardt][ps]
2808
+ - *XL* by [Christophe de Dinechin][]
2809
+ - *LiveScript* by [Taneli Vatanen][] and [Jen Evers-Corvina][]
2810
+ - *ERB* (Ruby in HTML) by [Lucas Mazza][]
2811
+ - *Roboconf* by [Vincent Zurczak][]
2812
+
2813
+ [b]: http://highlightjs.readthedocs.org/en/latest/building-testing.html
2814
+ [Jeremy Hull]: https://github.com/sourrust
2815
+ [ik]: https://twitter.com/IvanKleshnin/status/514041599484231680
2816
+ [Max Mikhailov]: https://github.com/seven-phases-max
2817
+ [Bryant Williams]: https://github.com/scien
2818
+ [Radek Liska]: https://github.com/Nindaleth
2819
+ [Jose Molina Colmenero]: https://github.com/Moliholy
2820
+ [Erik Paluka]: https://github.com/paluka
2821
+ [Luke Holder]: https://github.com/lukeholder
2822
+ [David Mohundro]: https://github.com/drmohundro
2823
+ [ps]: https://github.com/OctopusDeploy/Library/blob/master/app/shared/presentation/highlighting/powershell.js
2824
+ [Christophe de Dinechin]: https://github.com/c3d
2825
+ [Taneli Vatanen]: https://github.com/Daiz-
2826
+ [Jen Evers-Corvina]: https://github.com/sevvie
2827
+ [Lucas Mazza]: https://github.com/lucasmazza
2828
+ [Vincent Zurczak]: https://github.com/vincent-zurczak
2829
+
2830
+
2831
+ ## Version 8.2
2832
+
2833
+ We've finally got [real tests][test] and [continuous testing on Travis][ci]
2834
+ thanks to [Jeremy Hull][] and [Chris Eidhof][]. The tests designed to cover
2835
+ everything: language detection, correct parsing of individual language features
2836
+ and various special cases. This is a very important change that gives us
2837
+ confidence in extending language definitions and refactoring library core.
2838
+
2839
+ We're going to redesign the old [demo/test suite][demo] into an interactive
2840
+ demo web app. If you're confident front-end developer or designer and want to
2841
+ help us with it, drop a comment into [the issue][#542] on GitHub.
2842
+
2843
+ [test]: https://github.com/isagalaev/highlight.js/tree/master/test
2844
+ [demo]: https://highlightjs.org/static/test.html
2845
+ [#542]: https://github.com/isagalaev/highlight.js/issues/542
2846
+ [ci]: https://travis-ci.org/isagalaev/highlight.js
2847
+ [Jeremy Hull]: https://github.com/sourrust
2848
+ [Chris Eidhof]: https://github.com/chriseidhof
2849
+
2850
+ As usually there's a handful of new languages in this release:
2851
+
2852
+ - *Groovy* by [Guillaume Laforge][]
2853
+ - *Dart* by [Maxim Dikun][]
2854
+ - *Dust* by [Michael Allen][]
2855
+ - *Scheme* by [JP Verkamp][]
2856
+ - *G-Code* by [Adam Joseph Cook][]
2857
+ - *Q* from Kx Systems by [Sergey Vidyuk][]
2858
+
2859
+ [Guillaume Laforge]: https://github.com/glaforge
2860
+ [Maxim Dikun]: https://github.com/dikmax
2861
+ [Michael Allen]: https://github.com/bfui
2862
+ [JP Verkamp]: https://github.com/jpverkamp
2863
+ [Adam Joseph Cook]: https://github.com/adamjcook
2864
+ [Sergey Vidyuk]: https://github.com/sv
2865
+
2866
+ Other improvements:
2867
+
2868
+ - [Erik Osheim][] heavily reworked Scala definitions making it richer.
2869
+ - [Lucas Mazza][] fixed Ruby hashes highlighting
2870
+ - Lisp variants (Lisp, Clojure and Scheme) are unified in regard to naming
2871
+ the first symbol in parentheses: it's "keyword" in general case and also
2872
+ "built_in" for built-in functions in Clojure and Scheme.
2873
+
2874
+ [Erik Osheim]: https://github.com/non
2875
+ [Lucas Mazza]: https://github.com/lucasmazza
2876
+
2877
+
2878
+ ## Version 8.1
2879
+
2880
+ New languages:
2881
+
2882
+ - *Gherkin* by [Sam Pikesley][]
2883
+ - *Elixir* by [Josh Adams][]
2884
+ - *NSIS* by [Jan T. Sott][]
2885
+ - *VIM script* by [Jun Yang][]
2886
+ - *Protocol Buffers* by [Dan Tao][]
2887
+ - *Nix* by [Domen Kožar][]
2888
+ - *x86asm* by [innocenat][]
2889
+ - *Cap'n Proto* and *Thrift* by [Oleg Efimov][]
2890
+ - *Monkey* by [Arthur Bikmullin][]
2891
+ - *TypeScript* by [Panu Horsmalahti][]
2892
+ - *Nimrod* by [Flaviu Tamas][]
2893
+ - *Gradle* by [Damian Mee][]
2894
+ - *Haxe* by [Christopher Kaster][]
2895
+ - *Swift* by [Chris Eidhof][] and [Nate Cook][]
2896
+
2897
+ New styles:
2898
+
2899
+ - *Kimbie*, light and dark variants by [Jan T. Sott][]
2900
+ - *Color brewer* by [Fabrício Tavares de Oliveira][]
2901
+ - *Codepen.io embed* by [Justin Perry][]
2902
+ - *Hybrid* by [Nic West][]
2903
+
2904
+ [Sam Pikesley]: https://github.com/pikesley
2905
+ [Sindre Sorhus]: https://github.com/sindresorhus
2906
+ [Josh Adams]: https://github.com/knewter
2907
+ [Jan T. Sott]: https://github.com/idleberg
2908
+ [Jun Yang]: https://github.com/harttle
2909
+ [Dan Tao]: https://github.com/dtao
2910
+ [Domen Kožar]: https://github.com/iElectric
2911
+ [innocenat]: https://github.com/innocenat
2912
+ [Oleg Efimov]: https://github.com/Sannis
2913
+ [Arthur Bikmullin]: https://github.com/devolonter
2914
+ [Panu Horsmalahti]: https://github.com/panuhorsmalahti
2915
+ [Flaviu Tamas]: https://github.com/flaviut
2916
+ [Damian Mee]: https://github.com/chester1000
2917
+ [Christopher Kaster]: http://christopher.kaster.ws
2918
+ [Fabrício Tavares de Oliveira]: https://github.com/fabriciotav
2919
+ [Justin Perry]: https://github.com/ourmaninamsterdam
2920
+ [Nic West]: https://github.com/nicwest
2921
+ [Chris Eidhof]: https://github.com/chriseidhof
2922
+ [Nate Cook]: https://github.com/natecook1000
2923
+
2924
+ Other improvements:
2925
+
2926
+ - The README is heavily reworked and brought up to date by [Jeremy Hull][].
2927
+ - Added [`listLanguages()`][ll] method in the API.
2928
+ - Improved C/C++/C# detection.
2929
+ - Added a bunch of new language aliases, documented the existing ones. Thanks to
2930
+ [Sindre Sorhus][] for background research.
2931
+ - Added phrasal English words to boost relevance in comments.
2932
+ - Many improvements to SQL definition made by [Heiko August][],
2933
+ [Nikolay Lisienko][] and [Travis Odom][].
2934
+ - The shorter `lang-` prefix for language names in HTML classes supported
2935
+ alongside `language-`. Thanks to [Jeff Escalante][].
2936
+ - Ruby's got support for interactive console sessions. Thanks to
2937
+ [Pascal Hurni][].
2938
+ - Added built-in functions for R language. Thanks to [Artem A. Klevtsov][].
2939
+ - Rust's got definition for lifetime parameters and improved string syntax.
2940
+ Thanks to [Roman Shmatov][].
2941
+ - Various improvements to Objective-C definition by [Matt Diephouse][].
2942
+ - Fixed highlighting of generics in Java.
2943
+
2944
+ [ll]: http://highlightjs.readthedocs.org/en/latest/api.html#listlanguages
2945
+ [Sindre Sorhus]: https://github.com/sindresorhus
2946
+ [Heiko August]: https://github.com/auge8472
2947
+ [Nikolay Lisienko]: https://github.com/neor-ru
2948
+ [Travis Odom]: https://github.com/Burstaholic
2949
+ [Jeff Escalante]: https://github.com/jenius
2950
+ [Pascal Hurni]: https://github.com/phurni
2951
+ [Jiyin Yiyong]: https://github.com/jiyinyiyong
2952
+ [Artem A. Klevtsov]: https://github.com/unikum
2953
+ [Roman Shmatov]: https://github.com/shmatov
2954
+ [Jeremy Hull]: https://github.com/sourrust
2955
+ [Matt Diephouse]: https://github.com/mdiep
2956
+
2957
+
2958
+ ## Version 8.0
2959
+
2960
+ This new major release is quite a big overhaul bringing both new features and
2961
+ some backwards incompatible changes. However, chances are that the majority of
2962
+ users won't be affected by the latter: the basic scenario described in the
2963
+ README is left intact.
2964
+
2965
+ Here's what did change in an incompatible way:
2966
+
2967
+ - We're now prefixing all classes located in [CSS classes reference][cr] with
2968
+ `hljs-`, by default, because some class names would collide with other
2969
+ people's stylesheets. If you were using an older version, you might still want
2970
+ the previous behavior, but still want to upgrade. To suppress this new
2971
+ behavior, you would initialize like so:
2972
+
2973
+ ```html
2974
+ <script type="text/javascript">
2975
+ hljs.configure({classPrefix: ''});
2976
+ hljs.initHighlightingOnLoad();
2977
+ </script>
2978
+ ```
2979
+
2980
+ - `tabReplace` and `useBR` that were used in different places are also unified
2981
+ into the global options object and are to be set using `configure(options)`.
2982
+ This function is documented in our [API docs][]. Also note that these
2983
+ parameters are gone from `highlightBlock` and `fixMarkup` which are now also
2984
+ rely on `configure`.
2985
+
2986
+ - We removed public-facing (though undocumented) object `hljs.LANGUAGES` which
2987
+ was used to register languages with the library in favor of two new methods:
2988
+ `registerLanguage` and `getLanguage`. Both are documented in our [API docs][].
2989
+
2990
+ - Result returned from `highlight` and `highlightAuto` no longer contains two
2991
+ separate attributes contributing to relevance score, `relevance` and
2992
+ `keyword_count`. They are now unified in `relevance`.
2993
+
2994
+ Another technically compatible change that nonetheless might need attention:
2995
+
2996
+ - The structure of the NPM package was refactored, so if you had installed it
2997
+ locally, you'll have to update your paths. The usual `require('highlight.js')`
2998
+ works as before. This is contributed by [Dmitry Smolin][].
2999
+
3000
+ New features:
3001
+
3002
+ - Languages now can be recognized by multiple names like "js" for JavaScript or
3003
+ "html" for, well, HTML (which earlier insisted on calling it "xml"). These
3004
+ aliases can be specified in the class attribute of the code container in your
3005
+ HTML as well as in various API calls. For now there are only a few very common
3006
+ aliases but we'll expand it in the future. All of them are listed in the
3007
+ [class reference][cr].
3008
+
3009
+ - Language detection can now be restricted to a subset of languages relevant in
3010
+ a given context — a web page or even a single highlighting call. This is
3011
+ especially useful for node.js build that includes all the known languages.
3012
+ Another example is a StackOverflow-style site where users specify languages
3013
+ as tags rather than in the markdown-formatted code snippets. This is
3014
+ documented in the [API reference][] (see methods `highlightAuto` and
3015
+ `configure`).
3016
+
3017
+ - Language definition syntax streamlined with [variants][] and
3018
+ [beginKeywords][].
3019
+
3020
+ New languages and styles:
3021
+
3022
+ - *Oxygene* by [Carlo Kok][]
3023
+ - *Mathematica* by [Daniel Kvasnička][]
3024
+ - *Autohotkey* by [Seongwon Lee][]
3025
+ - *Atelier* family of styles in 10 variants by [Bram de Haan][]
3026
+ - *Paraíso* styles by [Jan T. Sott][]
3027
+
3028
+ Miscellaneous improvements:
3029
+
3030
+ - Highlighting `=>` prompts in Clojure.
3031
+ - [Jeremy Hull][] fixed a lot of styles for consistency.
3032
+ - Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].
3033
+ - Objective C and C# now properly highlight titles in method definition.
3034
+ - Big overhaul of relevance counting for a number of languages. Please do report
3035
+ bugs about mis-detection of non-trivial code snippets!
3036
+
3037
+ [API reference]: http://highlightjs.readthedocs.org/en/latest/api.html
3038
+
3039
+ [cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
3040
+ [api docs]: http://highlightjs.readthedocs.org/en/latest/api.html
3041
+ [variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion
3042
+ [beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d
3043
+ [php-html]: https://twitter.com/highlightjs/status/408890903017689088
3044
+
3045
+ [Carlo Kok]: https://github.com/carlokok
3046
+ [Bram de Haan]: https://github.com/atelierbram
3047
+ [Daniel Kvasnička]: https://github.com/dkvasnicka
3048
+ [Dmitry Smolin]: https://github.com/dimsmol
3049
+ [Jeremy Hull]: https://github.com/sourrust
3050
+ [Seongwon Lee]: https://github.com/dlimpid
3051
+ [Jan T. Sott]: https://github.com/idleberg
3052
+
3053
+
3054
+ ## Version 7.5
3055
+
3056
+ A catch-up release dealing with some of the accumulated contributions. This one
3057
+ is probably will be the last before the 8.0 which will be slightly backwards
3058
+ incompatible regarding some advanced use-cases.
3059
+
3060
+ One outstanding change in this version is the addition of 6 languages to the
3061
+ [hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and
3062
+ Makefile. It now weighs about 6K more but we're going to keep it under 30K.
3063
+
3064
+ New languages:
3065
+
3066
+ - OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]
3067
+ - [LiveCode Server][lcs] by [Ralf Bitter][revig]
3068
+ - Scilab by [Sylvestre Ledru][sylvestre]
3069
+ - basic support for Makefile by [Ivan Sagalaev][isagalaev]
3070
+
3071
+ Improvements:
3072
+
3073
+ - Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}`
3074
+ regexps.
3075
+ - Clojure now allows a function call in the beginning of s-expressions
3076
+ `(($filter "myCount") (arr 1 2 3 4 5))`.
3077
+ - Haskell's got new keywords and now recognizes more things like pragmas,
3078
+ preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]
3079
+ for the implementation and to [Jeremy Hull][sourrust] for guiding it.
3080
+ - Miscellaneous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.
3081
+
3082
+ [mehdid]: https://github.com/mehdid
3083
+ [nbraud]: https://github.com/nbraud
3084
+ [revig]: https://github.com/revig
3085
+ [lcs]: http://livecode.com/developers/guides/server/
3086
+ [sylvestre]: https://github.com/sylvestre
3087
+ [isagalaev]: https://github.com/isagalaev
3088
+ [treep]: https://github.com/treep
3089
+ [sourrust]: https://github.com/sourrust
3090
+ [d]: http://highlightjs.org/download/
3091
+
3092
+
3093
+ ## New core developers
3094
+
3095
+ The latest long period of almost complete inactivity in the project coincided
3096
+ with growing interest to it led to a decision that now seems completely obvious:
3097
+ we need more core developers.
3098
+
3099
+ So without further ado let me welcome to the core team two long-time
3100
+ contributors: [Jeremy Hull][] and [Oleg
3101
+ Efimov][].
3102
+
3103
+ Hope now we'll be able to work through stuff faster!
3104
+
3105
+ P.S. The historical commit is [here][1] for the record.
3106
+
3107
+ [Jeremy Hull]: https://github.com/sourrust
3108
+ [Oleg Efimov]: https://github.com/sannis
3109
+ [1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f
3110
+
3111
+
3112
+ ## Version 7.4
3113
+
3114
+ This long overdue version is a snapshot of the current source tree with all the
3115
+ changes that happened during the past year. Sorry for taking so long!
3116
+
3117
+ Along with the changes in code highlight.js has finally got its new home at
3118
+ <http://highlightjs.org/>, moving from its cradle on Software Maniacs which it
3119
+ outgrew a long time ago. Be sure to report any bugs about the site to
3120
+ <mailto:info@highlightjs.org>.
3121
+
3122
+ On to what's new…
3123
+
3124
+ New languages:
3125
+
3126
+ - Handlebars templates by [Robin Ward][]
3127
+ - Oracle Rules Language by [Jason Jacobson][]
3128
+ - F# by [Joans Follesø][]
3129
+ - AsciiDoc and Haml by [Dan Allen][]
3130
+ - Lasso by [Eric Knibbe][]
3131
+ - SCSS by [Kurt Emch][]
3132
+ - VB.NET by [Poren Chiang][]
3133
+ - Mizar by [Kelley van Evert][]
3134
+
3135
+ [Robin Ward]: https://github.com/eviltrout
3136
+ [Jason Jacobson]: https://github.com/jayce7
3137
+ [Joans Follesø]: https://github.com/follesoe
3138
+ [Dan Allen]: https://github.com/mojavelinux
3139
+ [Eric Knibbe]: https://github.com/EricFromCanada
3140
+ [Kurt Emch]: https://github.com/kemch
3141
+ [Poren Chiang]: https://github.com/rschiang
3142
+ [Kelley van Evert]: https://github.com/kelleyvanevert
3143
+
3144
+ New style themes:
3145
+
3146
+ - Monokai Sublime by [noformnocontent][]
3147
+ - Railscasts by [Damien White][]
3148
+ - Obsidian by [Alexander Marenin][]
3149
+ - Docco by [Simon Madine][]
3150
+ - Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)
3151
+ - Foundation by [Dan Allen][]
3152
+
3153
+ [noformnocontent]: http://nn.mit-license.org/
3154
+ [Damien White]: https://github.com/visoft
3155
+ [Alexander Marenin]: https://github.com/ioncreature
3156
+ [Simon Madine]: https://github.com/thingsinjars
3157
+ [Ivan Sagalaev]: https://github.com/isagalaev
3158
+
3159
+ Other notable changes:
3160
+
3161
+ - Corrected many corner cases in CSS.
3162
+ - Dropped Python 2 version of the build tool.
3163
+ - Implemented building for the AMD format.
3164
+ - Updated Rust keywords (thanks to [Dmitry Medvinsky][]).
3165
+ - Literal regexes can now be used in language definitions.
3166
+ - CoffeeScript highlighting is now significantly more robust and rich due to
3167
+ input from [Cédric Néhémie][].
3168
+
3169
+ [Dmitry Medvinsky]: https://github.com/dmedvinsky
3170
+ [Cédric Néhémie]: https://github.com/abe33
3171
+
3172
+
3173
+ ## Version 7.3
3174
+
3175
+ - Since this version highlight.js no longer works in IE version 8 and older.
3176
+ It's made it possible to reduce the library size and dramatically improve code
3177
+ readability and made it easier to maintain. Time to go forward!
3178
+
3179
+ - New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and
3180
+ Brainfuck (by [Evgeny Stepanischev][bolk]).
3181
+
3182
+ - Improvements to existing languages:
3183
+
3184
+ - interpreter prompt in Python (`>>>` and `...`)
3185
+ - @-properties and classes in CoffeeScript
3186
+ - E4X in JavaScript (by [Oleg Efimov][oe])
3187
+ - new keywords in Perl (by [Kirk Kimmel][kk])
3188
+ - big Ruby syntax update (by [Vasily Polovnyov][vast])
3189
+ - small fixes in Bash
3190
+
3191
+ - Also Oleg Efimov did a great job of moving all the docs for language and style
3192
+ developers and contributors from the old wiki under the source code in the
3193
+ "docs" directory. Now these docs are nicely presented at
3194
+ <http://highlightjs.readthedocs.org/>.
3195
+
3196
+ [ng]: https://github.com/nathan11g
3197
+ [dd]: https://github.com/drdrang
3198
+ [bolk]: https://github.com/bolknote
3199
+ [oe]: https://github.com/Sannis
3200
+ [kk]: https://github.com/kimmel
3201
+ [vast]: https://github.com/vast
3202
+
3203
+
3204
+ ## Version 7.2
3205
+
3206
+ A regular bug-fix release without any significant new features. Enjoy!
3207
+
3208
+
3209
+ ## Version 7.1
3210
+
3211
+ A Summer crop:
3212
+
3213
+ - [Marc Fornos][mf] made the definition for Clojure along with the matching
3214
+ style Rainbow (which, of course, works for other languages too).
3215
+ - CoffeeScript support continues to improve getting support for regular
3216
+ expressions.
3217
+ - Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the
3218
+ [project by Chris Kempson][tm0].
3219
+ - Thanks to [Casey Duncun][cd] the library can now be built in the popular
3220
+ [AMD format][amd].
3221
+ - And last but not least, we've got a fair number of correctness and consistency
3222
+ fixes, including a pretty significant refactoring of Ruby.
3223
+
3224
+ [mf]: https://github.com/mfornos
3225
+ [tm]: http://jmblog.github.com/color-themes-for-highlightjs/
3226
+ [tm0]: https://github.com/ChrisKempson/Tomorrow-Theme
3227
+ [cd]: https://github.com/caseman
3228
+ [amd]: http://requirejs.org/docs/whyamd.html
3229
+
3230
+
3231
+ ## Version 7.0
3232
+
3233
+ The reason for the new major version update is a global change of keyword syntax
3234
+ which resulted in the library getting smaller once again. For example, the
3235
+ hosted build is 2K less than at the previous version while supporting two new
3236
+ languages.
3237
+
3238
+ Notable changes:
3239
+
3240
+ - The library now works not only in a browser but also with [node.js][]. It is
3241
+ installable with `npm install highlight.js`. [API][] docs are available on our
3242
+ wiki.
3243
+
3244
+ - The new unique feature (apparently) among syntax highlighters is highlighting
3245
+ *HTTP* headers and an arbitrary language in the request body. The most useful
3246
+ languages here are *XML* and *JSON* both of which highlight.js does support.
3247
+ Here's [the detailed post][p] about the feature.
3248
+
3249
+ - Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an
3250
+ emulation of*XCode* IDE by [Angel Olloqui][ao].
3251
+
3252
+ - Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]
3253
+ and *GLSL* by [Sergey Tikhomirov][st].
3254
+
3255
+ - *Nginx* syntax has become a million times smaller and more universal thanks to
3256
+ remaking it in a more generic manner that doesn't require listing all the
3257
+ directives in the known universe.
3258
+
3259
+ - Function titles are now highlighted in *PHP*.
3260
+
3261
+ - *Haskell* and *VHDL* were significantly reworked to be more rich and correct
3262
+ by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].
3263
+
3264
+ And last but not least, many bugs have been fixed around correctness and
3265
+ language detection.
3266
+
3267
+ Overall highlight.js currently supports 51 languages and 20 style themes.
3268
+
3269
+ [node.js]: http://nodejs.org/
3270
+ [api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api
3271
+ [p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/
3272
+ [pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
3273
+ [ao]: https://github.com/angelolloqui
3274
+ [ar]: https://github.com/raleksandar
3275
+ [jc]: https://github.com/jcheng5
3276
+ [st]: https://github.com/tikhomirov
3277
+ [sr]: https://github.com/sourrust
3278
+ [ik]: https://github.com/ikalnitsky
3279
+
3280
+
3281
+ ## Version 6.2
3282
+
3283
+ A lot of things happened in highlight.js since the last version! We've got nine
3284
+ new contributors, the discussion group came alive, and the main branch on GitHub
3285
+ now counts more than 350 followers. Here are most significant results coming
3286
+ from all this activity:
3287
+
3288
+ - 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and
3289
+ experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],
3290
+ [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis
3291
+ Bardadym][db] and [John Crepezzi][jc].
3292
+
3293
+ - 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of
3294
+ another well-known highlighter Google Code Prettify by [Aahan Krish][ak].
3295
+
3296
+ - A vast number of [correctness fixes and code refactorings][log], mostly made
3297
+ by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].
3298
+
3299
+ [av]: https://github.com/vlasovskikh
3300
+ [am]: https://github.com/myadzel
3301
+ [dn]: https://github.com/dnagir
3302
+ [oe]: https://github.com/Sannis
3303
+ [db]: https://github.com/btd
3304
+ [jc]: https://github.com/seejohnrun
3305
+ [lm]: http://grigio.org/
3306
+ [ak]: https://github.com/geekpanth3r
3307
+ [es]: https://github.com/bolknote
3308
+ [log]: https://github.com/isagalaev/highlight.js/commits/
3309
+
3310
+
3311
+ ## Version 6.1 — Solarized
3312
+
3313
+ [Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]
3314
+ style theme famous for being based on the intricate color theory to achieve
3315
+ correct contrast and color perception. It is now available for highlight.js in
3316
+ both variants — light and dark.
3317
+
3318
+ This version also adds a new original style Arta. Its author pumbur maintains a
3319
+ [heavily modified fork of highlight.js][pb] on GitHub.
3320
+
3321
+ [jh]: https://github.com/sourrust
3322
+ [solarized]: http://ethanschoonover.com/solarized
3323
+ [pb]: https://github.com/pumbur/highlight.js
3324
+
3325
+
3326
+ ## Version 6.0
3327
+
3328
+ New major version of the highlighter has been built on a significantly
3329
+ refactored syntax. Due to this it's even smaller than the previous one while
3330
+ supporting more languages!
3331
+
3332
+ New languages are:
3333
+
3334
+ - Haskell by [Jeremy Hull][sourrust]
3335
+ - Erlang in two varieties — module and REPL — made collectively by [Nikolay
3336
+ Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]
3337
+ - Objective C by [Valerii Hiora][vhbit]
3338
+ - Vala by [Antono Vasiljev][antono]
3339
+ - Go by [Stephan Kountso][steplg]
3340
+
3341
+ [sourrust]: https://github.com/sourrust
3342
+ [desh]: http://desh.su/
3343
+ [arhibot]: https://github.com/arhibot
3344
+ [ignatov]: https://github.com/ignatov
3345
+ [vhbit]: https://github.com/vhbit
3346
+ [antono]: https://github.com/antono
3347
+ [steplg]: https://github.com/steplg
3348
+
3349
+ Also this version is marginally faster and fixes a number of small long-standing
3350
+ bugs.
3351
+
3352
+ Developer overview of the new language syntax is available in a [blog post about
3353
+ recent beta release][beta].
3354
+
3355
+ [beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/
3356
+
3357
+ P.S. New version is not yet available on a Yandex CDN, so for now you have to
3358
+ download [your own copy][d].
3359
+
3360
+ [d]: /soft/highlight/en/download/
3361
+
3362
+
3363
+ ## Version 5.14
3364
+
3365
+ Fixed bugs in HTML/XML detection and relevance introduced in previous
3366
+ refactoring.
3367
+
3368
+ Also test.html now shows the second best result of language detection by
3369
+ relevance.
3370
+
3371
+
3372
+ ## Version 5.13
3373
+
3374
+ Past weekend began with a couple of simple additions for existing languages but
3375
+ ended up in a big code refactoring bringing along nice improvements for language
3376
+ developers.
3377
+
3378
+ ### For users
3379
+
3380
+ - Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.
3381
+ - Description of HTML has got new tags from [HTML 5][].
3382
+ - CSS-styles have been unified to use consistent padding and also have lost
3383
+ pop-outs with names of detected languages.
3384
+ - [Igor Kalnitsky][ik] has sent two new language descriptions: CMake & VHDL.
3385
+
3386
+ This makes total number of languages supported by highlight.js to reach 35.
3387
+
3388
+ Bug fixes:
3389
+
3390
+ - Custom classes on `<pre>` tags are not being overridden anymore
3391
+ - More correct highlighting of code blocks inside non-`<pre>` containers:
3392
+ highlighter now doesn't insist on replacing them with its own container and
3393
+ just replaces the contents.
3394
+ - Small fixes in browser compatibility and heuristics.
3395
+
3396
+ [c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
3397
+ [html 5]: http://en.wikipedia.org/wiki/HTML5
3398
+ [ik]: http://kalnitsky.org.ua/
3399
+
3400
+ ### For developers
3401
+
3402
+ The most significant change is the ability to include language submodes right
3403
+ under `contains` instead of defining explicit named submodes in the main array:
3404
+
3405
+ contains: [
3406
+ 'string',
3407
+ 'number',
3408
+ {begin: '\\n', end: hljs.IMMEDIATE_RE}
3409
+ ]
3410
+
3411
+ This is useful for auxiliary modes needed only in one place to define parsing.
3412
+ Note that such modes often don't have `className` and hence won't generate a
3413
+ separate `<span>` in the resulting markup. This is similar in effect to
3414
+ `noMarkup: true`. All existing languages have been refactored accordingly.
3415
+
3416
+ Test file test.html has at last become a real test. Now it not only puts the
3417
+ detected language name under the code snippet but also tests if it matches the
3418
+ expected one. Test summary is displayed right above all language snippets.
3419
+
3420
+
3421
+ ## CDN
3422
+
3423
+ Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
3424
+ [Link up][l]!
3425
+
3426
+ [yandex]: http://yandex.com/
3427
+ [l]: http://softwaremaniacs.org/soft/highlight/en/download/
3428
+
3429
+
3430
+ ## Version 5.10 — "Paris".
3431
+
3432
+ Though I'm on a vacation in Paris, I decided to release a new version with a
3433
+ couple of small fixes:
3434
+
3435
+ - Tomas Vitvar discovered that TAB replacement doesn't always work when used
3436
+ with custom markup in code
3437
+ - SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
3438
+
3439
+
3440
+ ## Version 5.9
3441
+
3442
+ A long-awaited version is finally released.
3443
+
3444
+ New languages:
3445
+
3446
+ - Andrew Fedorov made a definition for Lua
3447
+ - a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
3448
+ Nginx config
3449
+ - [Vladimir Moskva][vm] made a definition for TeX
3450
+
3451
+ [pl]: http://kung-fu-tzu.ru/
3452
+ [vm]: http://fulc.ru/
3453
+
3454
+ Fixes for existing languages:
3455
+
3456
+ - [Loren Segal][ls] reworked the Ruby definition and added highlighting for
3457
+ [YARD][] inline documentation
3458
+ - the definition of SQL has become more solid and now it shouldn't be overly
3459
+ greedy when it comes to language detection
3460
+
3461
+ [ls]: http://gnuu.org/
3462
+ [yard]: http://yardoc.org/
3463
+
3464
+ The highlighter has become more usable as a library allowing to do highlighting
3465
+ from initialization code of JS frameworks and in ajax methods (see.
3466
+ readme.eng.txt).
3467
+
3468
+ Also this version drops support for the [WordPress][wp] plugin. Everyone is
3469
+ welcome to [pick up its maintenance][p] if needed.
3470
+
3471
+ [wp]: http://wordpress.org/
3472
+ [p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
3473
+
3474
+
3475
+ ## Version 5.8
3476
+
3477
+ - Jan Berkel has contributed a definition for Scala. +1 to hotness!
3478
+ - All CSS-styles are rewritten to work only inside `<pre>` tags to avoid
3479
+ conflicts with host site styles.
3480
+
3481
+
3482
+ ## Version 5.7.
3483
+
3484
+ Fixed escaping of quotes in VBScript strings.
3485
+
3486
+
3487
+ ## Version 5.5
3488
+
3489
+ This version brings a small change: now .ini-files allow digits, underscores and
3490
+ square brackets in key names.
3491
+
3492
+
3493
+ ## Version 5.4
3494
+
3495
+ Fixed small but upsetting bug in the packer which caused incorrect highlighting
3496
+ of explicitly specified languages. Thanks to Andrew Fedorov for precise
3497
+ diagnostics!
3498
+
3499
+
3500
+ ## Version 5.3
3501
+
3502
+ The version to fulfil old promises.
3503
+
3504
+ The most significant change is that highlight.js now preserves custom user
3505
+ markup in code along with its own highlighting markup. This means that now it's
3506
+ possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
3507
+ [initial proposal][1] and for making a proof-of-concept patch.
3508
+
3509
+ Also in this version:
3510
+
3511
+ - [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
3512
+ support for CSS @-rules and Ruby symbols.
3513
+ - Yura Zaripov has sent two styles: Brown Paper and School Book.
3514
+ - Oleg Volchkov has sent a definition for [Parser 3][p3].
3515
+
3516
+ [1]: http://softwaremaniacs.org/forum/highlightjs/6612/
3517
+ [p3]: http://www.parser.ru/
3518
+ [vp]: http://vasily.polovnyov.ru/
3519
+ [vd]: http://dolzhenko.blogspot.com/
3520
+
3521
+
3522
+ ## Version 5.2
3523
+
3524
+ - at last it's possible to replace indentation TABs with something sensible
3525
+ (e.g. 2 or 4 spaces)
3526
+ - new keywords and built-ins for 1C by Sergey Baranov
3527
+ - a couple of small fixes to Apache highlighting
3528
+
3529
+
3530
+ ## Version 5.1
3531
+
3532
+ This is one of those nice version consisting entirely of new and shiny
3533
+ contributions!
3534
+
3535
+ - [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
3536
+ - [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
3537
+ original visual style for it is now available for all highlight.js languages
3538
+ under the name "Magula".
3539
+ - [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
3540
+ languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
3541
+ the matter.
3542
+
3543
+ [vooon]: http://vehq.ru/about/
3544
+ [rukeba]: http://rukeba.com/
3545
+ [drake]: http://drakeguan.org/
3546
+ [ke]: http://k-evdokimenko.moikrug.ru/
3547
+
3548
+
3549
+ ## Version 5.0
3550
+
3551
+ The main change in the new major version of highlight.js is a mechanism for
3552
+ packing several languages along with the library itself into a single compressed
3553
+ file. Now sites using several languages will load considerably faster because
3554
+ the library won't dynamically include additional files while loading.
3555
+
3556
+ Also this version fixes a long-standing bug with Javascript highlighting that
3557
+ couldn't distinguish between regular expressions and division operations.
3558
+
3559
+ And as usually there were a couple of minor correctness fixes.
3560
+
3561
+ Great thanks to all contributors! Keep using highlight.js.
3562
+
3563
+
3564
+ ## Version 4.3
3565
+
3566
+ This version comes with two contributions from [Jason Diamond][jd]:
3567
+
3568
+ - language definition for C# (yes! it was a long-missed thing!)
3569
+ - Visual Studio-like highlighting style
3570
+
3571
+ Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
3572
+
3573
+ [jd]: http://jason.diamond.name/weblog/
3574
+
3575
+
3576
+ ## Version 4.2
3577
+
3578
+ The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
3579
+ somewhat experimental meaning that for highlighting "keywords" it doesn't use
3580
+ any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
3581
+ in parentheses wherever it makes sense. I'd like to ask people programming in
3582
+ Lisp to confirm if it's a good idea and send feedback to [the forum][f].
3583
+
3584
+ Other changes:
3585
+
3586
+ - Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
3587
+ - [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
3588
+ test.html
3589
+ - comments now allowed inside Ruby function definition
3590
+ - [MEL][] language from [Shuen-Huei Guan][drake]
3591
+ - whitespace now allowed between `<pre>` and `<code>`
3592
+ - better auto-detection of C++ and PHP
3593
+ - HTML allows embedded VBScript (`<% .. %>`)
3594
+
3595
+ [f]: http://softwaremaniacs.org/forum/highlightjs/
3596
+ [voldmar]: http://voldmar.ya.ru/
3597
+ [mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
3598
+ [drake]: http://drakeguan.org/
3599
+
3600
+
3601
+ ## Version 4.1
3602
+
3603
+ Languages:
3604
+
3605
+ - Bash from Vah
3606
+ - DOS bat-files from Alexander Makarov (Sam)
3607
+ - Diff files from Vasily Polovnyov
3608
+ - Ini files from myself though initial idea was from Sam
3609
+
3610
+ Styles:
3611
+
3612
+ - Zenburn from Vladimir Epifanov, this is an imitation of a
3613
+ [well-known theme for Vim][zenburn].
3614
+ - Ascetic from myself, as a realization of ideals of non-flashy highlighting:
3615
+ just one color in only three gradations :-)
3616
+
3617
+ In other news. [One small bug][bug] was fixed, built-in keywords were added for
3618
+ Python and C++ which improved auto-detection for the latter (it was shame that
3619
+ [my wife's blog][alenacpp] had issues with it from time to time). And lastly
3620
+ thanks go to Sam for getting rid of my stylistic comments in code that were
3621
+ getting in the way of [JSMin][].
3622
+
3623
+ [zenburn]: http://en.wikipedia.org/wiki/Zenburn
3624
+ [alenacpp]: http://alenacpp.blogspot.com/
3625
+ [bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
3626
+ [jsmin]: http://code.google.com/p/jsmin-php/
3627
+
3628
+
3629
+ ## Version 4.0
3630
+
3631
+ New major version is a result of vast refactoring and of many contributions.
3632
+
3633
+ Visible new features:
3634
+
3635
+ - Highlighting of embedded languages. Currently is implemented highlighting of
3636
+ Javascript and CSS inside HTML.
3637
+ - Bundled 5 ready-made style themes!
3638
+
3639
+ Invisible new features:
3640
+
3641
+ - Highlight.js no longer pollutes global namespace. Only one object and one
3642
+ function for backward compatibility.
3643
+ - Performance is further increased by about 15%.
3644
+
3645
+ Changing of a major version number caused by a new format of language definition
3646
+ files. If you use some third-party language files they should be updated.
3647
+
3648
+
3649
+ ## Version 3.5
3650
+
3651
+ A very nice version in my opinion fixing a number of small bugs and slightly
3652
+ increased speed in a couple of corner cases. Thanks to everybody who reports
3653
+ bugs in he [forum][f] and by email!
3654
+
3655
+ There is also a new language — XML. A custom XML formerly was detected as HTML
3656
+ and didn't highlight custom tags. In this version I tried to make custom XML to
3657
+ be detected and highlighted by its own rules. Which by the way include such
3658
+ things as CDATA sections and processing instructions (`<? ... ?>`).
3659
+
3660
+ [f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
3661
+
3662
+
3663
+ ## Version 3.3
3664
+
3665
+ [Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
3666
+ File export.html contains a little program that shows and allows to copy and
3667
+ paste an HTML code generated by the highlighter for any code snippet. This can
3668
+ be useful in situations when one can't use the script itself on a site.
3669
+
3670
+
3671
+ [xonix]: http://xonixx.blogspot.com/
3672
+
3673
+
3674
+ ## Version 3.2 consists completely of contributions:
3675
+
3676
+ - Vladimir Gubarkov has described SmallTalk
3677
+ - Yuri Ivanov has described 1C
3678
+ - Peter Leonov has packaged the highlighter as a Firefox extension
3679
+ - Vladimir Ermakov has compiled a mod for phpBB
3680
+
3681
+ Many thanks to you all!
3682
+
3683
+
3684
+ ## Version 3.1
3685
+
3686
+ Three new languages are available: Django templates, SQL and Axapta. The latter
3687
+ two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
3688
+ SQL definition but I'd never started it be it from the ground up :-)
3689
+
3690
+ The engine itself has got a long awaited feature of grouping keywords
3691
+ ("keyword", "built-in function", "literal"). No more hacks!
3692
+
3693
+ [1]: http://roudakov.ru/
3694
+
3695
+
3696
+ ## Version 3.0
3697
+
3698
+ It is major mainly because now highlight.js has grown large and has become
3699
+ modular. Now when you pass it a list of languages to highlight it will
3700
+ dynamically load into a browser only those languages.
3701
+
3702
+ Also:
3703
+
3704
+ - Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
3705
+ RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
3706
+ languages!
3707
+ - Heuristics for C++ and HTML got better.
3708
+ - I've implemented (at last) a correct handling of backslash escapes in C-like
3709
+ languages.
3710
+
3711
+ There is also a small backwards incompatible change in the new version. The
3712
+ function initHighlighting that was used to initialize highlighting instead of
3713
+ initHighlightingOnLoad a long time ago no longer works. If you by chance still
3714
+ use it — replace it with the new one.
3715
+
3716
+ [RibKit]: http://ribkit.sourceforge.net/
3717
+
3718
+
3719
+ ## Version 2.9
3720
+
3721
+ Highlight.js is a parser, not just a couple of regular expressions. That said
3722
+ I'm glad to announce that in the new version 2.9 has support for:
3723
+
3724
+ - in-string substitutions for Ruby -- `#{...}`
3725
+ - strings from from numeric symbol codes (like #XX) for Delphi
3726
+
3727
+
3728
+ ## Version 2.8
3729
+
3730
+ A maintenance release with more tuned heuristics. Fully backwards compatible.
3731
+
3732
+
3733
+ ## Version 2.7
3734
+
3735
+ - Nikita Ledyaev presents highlighting for VBScript, yay!
3736
+ - A couple of bugs with escaping in strings were fixed thanks to Mickle
3737
+ - Ongoing tuning of heuristics
3738
+
3739
+ Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
3740
+
3741
+
3742
+ ## Version 2.4
3743
+
3744
+ - Peter Leonov provides another improved highlighting for Perl
3745
+ - Javascript gets a new kind of keywords — "literals". These are the words
3746
+ "true", "false" and "null"
3747
+
3748
+ Also highlight.js homepage now lists sites that use the library. Feel free to
3749
+ add your site by [dropping me a message][mail] until I find the time to build a
3750
+ submit form.
3751
+
3752
+ [mail]: mailto:Maniac@SoftwareManiacs.Org
3753
+
3754
+
3755
+ ## Version 2.3
3756
+
3757
+ This version fixes IE breakage in previous version. My apologies to all who have
3758
+ already downloaded that one!
3759
+
3760
+
3761
+ ## Version 2.2
3762
+
3763
+ - added highlighting for Javascript
3764
+ - at last fixed parsing of Delphi's escaped apostrophes in strings
3765
+ - in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
3766
+ Perl
3767
+
3768
+
3769
+ ## Version 2.0
3770
+
3771
+ - Ruby support by [Anton Kovalyov][ak]
3772
+ - speed increased by orders of magnitude due to new way of parsing
3773
+ - this same way allows now correct highlighting of keywords in some tricky
3774
+ places (like keyword "End" at the end of Delphi classes)
3775
+
3776
+ [ak]: http://anton.kovalyov.net/
3777
+
3778
+
3779
+ ## Version 1.0
3780
+
3781
+ Version 1.0 of javascript syntax highlighter is released!
3782
+
3783
+ It's the first version available with English description. Feel free to post
3784
+ your comments and question to [highlight.js forum][forum]. And don't be afraid
3785
+ if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
3786
+
3787
+ [forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6