@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,2259 @@
1
+ {
2
+ "name": "@bingjiang0611/rotom",
3
+ "version": "0.1.0-alpha.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "@bingjiang0611/rotom",
9
+ "version": "0.1.0-alpha.0",
10
+ "license": "MIT",
11
+ "os": [
12
+ "darwin",
13
+ "linux"
14
+ ],
15
+ "dependencies": {
16
+ "@earendil-works/pi-coding-agent": "0.85.1"
17
+ },
18
+ "bin": {
19
+ "rotom": "bin/rotom"
20
+ },
21
+ "engines": {
22
+ "node": ">=24.0.0"
23
+ }
24
+ },
25
+ "node_modules/@earendil-works/pi-coding-agent": {
26
+ "version": "0.85.1",
27
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-coding-agent/-/pi-coding-agent-0.85.1.tgz",
28
+ "integrity": "sha512-FGRN+OHbWaefBPGaTggAdLjrIHW+s2PzLyglz/5dfLzb9of7uuXMXYC0fJIeZTw+shS32o2cuQ9jF7YSDuL/oQ==",
29
+ "hasShrinkwrap": true,
30
+ "license": "MIT",
31
+ "dependencies": {
32
+ "@earendil-works/chord": "^0.85.1",
33
+ "@earendil-works/pi-agent-core": "^0.85.1",
34
+ "@earendil-works/pi-ai": "^0.85.1",
35
+ "@earendil-works/pi-tui": "^0.85.1",
36
+ "@silvia-odwyer/photon-node": "0.3.4",
37
+ "chalk": "5.6.2",
38
+ "cross-spawn": "7.0.6",
39
+ "diff": "8.0.4",
40
+ "grok-mermaid": "0.2.2",
41
+ "highlight.js": "10.7.3",
42
+ "hosted-git-info": "9.0.3",
43
+ "ignore": "7.0.5",
44
+ "jiti": "2.7.0",
45
+ "minimatch": "10.2.5",
46
+ "proper-lockfile": "4.1.2",
47
+ "semver": "7.8.0",
48
+ "typebox": "1.3.7",
49
+ "undici": "8.9.0",
50
+ "yaml": "2.9.0"
51
+ },
52
+ "bin": {
53
+ "pi": "dist/bundle/cli.js"
54
+ },
55
+ "engines": {
56
+ "node": ">=22.19.0"
57
+ },
58
+ "optionalDependencies": {
59
+ "@mariozechner/clipboard": "0.3.9"
60
+ }
61
+ },
62
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@anthropic-ai/sdk": {
63
+ "version": "0.123.0",
64
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.123.0.tgz",
65
+ "integrity": "sha512-Y9oX9mPNGZClHQOFqrWRk43Srcu/UHuPq3rfxxOq7JgW0gi+lJA2MAOK4Ul3k/+AUrwRWFJvd0tK3oC0Pw25dw==",
66
+ "license": "MIT",
67
+ "dependencies": {
68
+ "json-schema-to-ts": "^3.1.1",
69
+ "standardwebhooks": "^1.0.0"
70
+ },
71
+ "bin": {
72
+ "anthropic-ai-sdk": "bin/cli"
73
+ },
74
+ "peerDependencies": {
75
+ "zod": "^3.25.0 || ^4.0.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "zod": {
79
+ "optional": true
80
+ }
81
+ }
82
+ },
83
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/crc32": {
84
+ "version": "5.2.0",
85
+ "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
86
+ "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
87
+ "license": "Apache-2.0",
88
+ "dependencies": {
89
+ "@aws-crypto/util": "^5.2.0",
90
+ "@aws-sdk/types": "^3.222.0",
91
+ "tslib": "^2.6.2"
92
+ },
93
+ "engines": {
94
+ "node": ">=16.0.0"
95
+ }
96
+ },
97
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/sha256-browser": {
98
+ "version": "5.2.0",
99
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
100
+ "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
101
+ "license": "Apache-2.0",
102
+ "dependencies": {
103
+ "@aws-crypto/sha256-js": "^5.2.0",
104
+ "@aws-crypto/supports-web-crypto": "^5.2.0",
105
+ "@aws-crypto/util": "^5.2.0",
106
+ "@aws-sdk/types": "^3.222.0",
107
+ "@aws-sdk/util-locate-window": "^3.0.0",
108
+ "@smithy/util-utf8": "^2.0.0",
109
+ "tslib": "^2.6.2"
110
+ }
111
+ },
112
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/sha256-js": {
113
+ "version": "5.2.0",
114
+ "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
115
+ "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
116
+ "license": "Apache-2.0",
117
+ "dependencies": {
118
+ "@aws-crypto/util": "^5.2.0",
119
+ "@aws-sdk/types": "^3.222.0",
120
+ "tslib": "^2.6.2"
121
+ },
122
+ "engines": {
123
+ "node": ">=16.0.0"
124
+ }
125
+ },
126
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/supports-web-crypto": {
127
+ "version": "5.2.0",
128
+ "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
129
+ "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
130
+ "license": "Apache-2.0",
131
+ "dependencies": {
132
+ "tslib": "^2.6.2"
133
+ }
134
+ },
135
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-crypto/util": {
136
+ "version": "5.2.0",
137
+ "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
138
+ "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
139
+ "license": "Apache-2.0",
140
+ "dependencies": {
141
+ "@aws-sdk/types": "^3.222.0",
142
+ "@smithy/util-utf8": "^2.0.0",
143
+ "tslib": "^2.6.2"
144
+ }
145
+ },
146
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/client-bedrock-runtime": {
147
+ "version": "3.1048.0",
148
+ "resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1048.0.tgz",
149
+ "integrity": "sha512-u+NT61JZEkRFtpL0CAw1N1dwxnaLgwVXQl/zjJxTGgLyS/jTIdg2SdoEoCTHxgDyCnqa1HEi9QOoE9/pYRNpOQ==",
150
+ "license": "Apache-2.0",
151
+ "dependencies": {
152
+ "@aws-crypto/sha256-browser": "5.2.0",
153
+ "@aws-crypto/sha256-js": "5.2.0",
154
+ "@aws-sdk/core": "^3.974.11",
155
+ "@aws-sdk/credential-provider-node": "^3.972.42",
156
+ "@aws-sdk/eventstream-handler-node": "^3.972.16",
157
+ "@aws-sdk/middleware-eventstream": "^3.972.12",
158
+ "@aws-sdk/middleware-websocket": "^3.972.19",
159
+ "@aws-sdk/token-providers": "3.1048.0",
160
+ "@aws-sdk/types": "^3.973.8",
161
+ "@smithy/core": "^3.24.2",
162
+ "@smithy/fetch-http-handler": "^5.4.2",
163
+ "@smithy/node-http-handler": "^4.7.2",
164
+ "@smithy/types": "^4.14.1",
165
+ "tslib": "^2.6.2"
166
+ },
167
+ "engines": {
168
+ "node": ">=20.0.0"
169
+ }
170
+ },
171
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/core": {
172
+ "version": "3.974.11",
173
+ "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.974.11.tgz",
174
+ "integrity": "sha512-QpnINq5FZH6EOaDEkmHdT7eUunbvD27pDNQypaWjFyYz7Zl1q3UCMQErBZxpmfGfI7MvI2TlK8KTkgNpv8b1ug==",
175
+ "license": "Apache-2.0",
176
+ "dependencies": {
177
+ "@aws-sdk/types": "^3.973.8",
178
+ "@aws-sdk/xml-builder": "^3.972.24",
179
+ "@aws/lambda-invoke-store": "^0.2.2",
180
+ "@smithy/core": "^3.24.2",
181
+ "@smithy/signature-v4": "^5.4.2",
182
+ "@smithy/types": "^4.14.1",
183
+ "bowser": "^2.11.0",
184
+ "tslib": "^2.6.2"
185
+ },
186
+ "engines": {
187
+ "node": ">=20.0.0"
188
+ }
189
+ },
190
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-env": {
191
+ "version": "3.972.37",
192
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.37.tgz",
193
+ "integrity": "sha512-/jpPvEh6f7ntmIzf7dNxoNX6Q8vt8UpesCjbW6mFfk4V1NW6bIy9qxcQ6WbA8As5yQhsZOe+xeNd4xHX8kdY2Q==",
194
+ "license": "Apache-2.0",
195
+ "dependencies": {
196
+ "@aws-sdk/core": "^3.974.11",
197
+ "@aws-sdk/types": "^3.973.8",
198
+ "@smithy/core": "^3.24.2",
199
+ "@smithy/types": "^4.14.1",
200
+ "tslib": "^2.6.2"
201
+ },
202
+ "engines": {
203
+ "node": ">=20.0.0"
204
+ }
205
+ },
206
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-http": {
207
+ "version": "3.972.39",
208
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.39.tgz",
209
+ "integrity": "sha512-pIgTpisWyWg7X1bUbzSjuUYosYTD0Ghz2M0hkSTmb3a6i3qV3uU+NYJPI/E2XSC0HcsZh5rsLPzeXrkb2DS0Cg==",
210
+ "license": "Apache-2.0",
211
+ "dependencies": {
212
+ "@aws-sdk/core": "^3.974.11",
213
+ "@aws-sdk/types": "^3.973.8",
214
+ "@smithy/core": "^3.24.2",
215
+ "@smithy/fetch-http-handler": "^5.4.2",
216
+ "@smithy/node-http-handler": "^4.7.2",
217
+ "@smithy/types": "^4.14.1",
218
+ "tslib": "^2.6.2"
219
+ },
220
+ "engines": {
221
+ "node": ">=20.0.0"
222
+ }
223
+ },
224
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-ini": {
225
+ "version": "3.972.41",
226
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.41.tgz",
227
+ "integrity": "sha512-u2tyjaxJJzW8UtW4SM1ZcPMDwO6y+kV+llvou+Adts0FAKyzes5jG4izQN+KX3yE8ZROpS5y1LJ//xL2iSf76w==",
228
+ "license": "Apache-2.0",
229
+ "dependencies": {
230
+ "@aws-sdk/core": "^3.974.11",
231
+ "@aws-sdk/credential-provider-env": "^3.972.37",
232
+ "@aws-sdk/credential-provider-http": "^3.972.39",
233
+ "@aws-sdk/credential-provider-login": "^3.972.41",
234
+ "@aws-sdk/credential-provider-process": "^3.972.37",
235
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
236
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
237
+ "@aws-sdk/nested-clients": "^3.997.9",
238
+ "@aws-sdk/types": "^3.973.8",
239
+ "@smithy/core": "^3.24.2",
240
+ "@smithy/credential-provider-imds": "^4.3.2",
241
+ "@smithy/types": "^4.14.1",
242
+ "tslib": "^2.6.2"
243
+ },
244
+ "engines": {
245
+ "node": ">=20.0.0"
246
+ }
247
+ },
248
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-login": {
249
+ "version": "3.972.41",
250
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.41.tgz",
251
+ "integrity": "sha512-0LBitxXiAiaE5nlFPfpNIww/8FRY/I7WIndWsc9GmNFOM7cE1wNpVNQEGEk9Outg5l8xl+3vybxFyUy4l9q/LQ==",
252
+ "license": "Apache-2.0",
253
+ "dependencies": {
254
+ "@aws-sdk/core": "^3.974.11",
255
+ "@aws-sdk/nested-clients": "^3.997.9",
256
+ "@aws-sdk/types": "^3.973.8",
257
+ "@smithy/core": "^3.24.2",
258
+ "@smithy/types": "^4.14.1",
259
+ "tslib": "^2.6.2"
260
+ },
261
+ "engines": {
262
+ "node": ">=20.0.0"
263
+ }
264
+ },
265
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-node": {
266
+ "version": "3.972.42",
267
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.42.tgz",
268
+ "integrity": "sha512-D4oon2zbqqsWOJUM99Gm3/ZyJ0IJvTXVN3PyloGb3kQEyI36fjCZheZj422lAgTWWd6TSHgiImLt3RIaLdv3dQ==",
269
+ "license": "Apache-2.0",
270
+ "dependencies": {
271
+ "@aws-sdk/credential-provider-env": "^3.972.37",
272
+ "@aws-sdk/credential-provider-http": "^3.972.39",
273
+ "@aws-sdk/credential-provider-ini": "^3.972.41",
274
+ "@aws-sdk/credential-provider-process": "^3.972.37",
275
+ "@aws-sdk/credential-provider-sso": "^3.972.41",
276
+ "@aws-sdk/credential-provider-web-identity": "^3.972.41",
277
+ "@aws-sdk/types": "^3.973.8",
278
+ "@smithy/core": "^3.24.2",
279
+ "@smithy/credential-provider-imds": "^4.3.2",
280
+ "@smithy/types": "^4.14.1",
281
+ "tslib": "^2.6.2"
282
+ },
283
+ "engines": {
284
+ "node": ">=20.0.0"
285
+ }
286
+ },
287
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-process": {
288
+ "version": "3.972.37",
289
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.37.tgz",
290
+ "integrity": "sha512-7nVaHBUaWIddASYfVaA9O4D5ZVjewU3sCol9WqZPGfW0nR+0WqE0xHZnD/U2L33PlOB8KNXGKZ6wOES/QijKzg==",
291
+ "license": "Apache-2.0",
292
+ "dependencies": {
293
+ "@aws-sdk/core": "^3.974.11",
294
+ "@aws-sdk/types": "^3.973.8",
295
+ "@smithy/core": "^3.24.2",
296
+ "@smithy/types": "^4.14.1",
297
+ "tslib": "^2.6.2"
298
+ },
299
+ "engines": {
300
+ "node": ">=20.0.0"
301
+ }
302
+ },
303
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-sso": {
304
+ "version": "3.972.41",
305
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.41.tgz",
306
+ "integrity": "sha512-IOWAWEHe5LkjSKkkUUX9ciV6Y1scHTsnfEkdt5yyC4Slrc7AGbkLPrpntjqh18ksJAMOaVhoBsO8p2WyTcY2wQ==",
307
+ "license": "Apache-2.0",
308
+ "dependencies": {
309
+ "@aws-sdk/core": "^3.974.11",
310
+ "@aws-sdk/nested-clients": "^3.997.9",
311
+ "@aws-sdk/token-providers": "3.1048.0",
312
+ "@aws-sdk/types": "^3.973.8",
313
+ "@smithy/core": "^3.24.2",
314
+ "@smithy/types": "^4.14.1",
315
+ "tslib": "^2.6.2"
316
+ },
317
+ "engines": {
318
+ "node": ">=20.0.0"
319
+ }
320
+ },
321
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/credential-provider-web-identity": {
322
+ "version": "3.972.41",
323
+ "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.41.tgz",
324
+ "integrity": "sha512-mbACk9Yypa8nm4iGZLs0PofOXEcTDOUw6wDnsPXNDNSd2WNXs1tSo+6nc/fh0jLYdfVZThhBL98PHW4aXFsG5A==",
325
+ "license": "Apache-2.0",
326
+ "dependencies": {
327
+ "@aws-sdk/core": "^3.974.11",
328
+ "@aws-sdk/nested-clients": "^3.997.9",
329
+ "@aws-sdk/types": "^3.973.8",
330
+ "@smithy/core": "^3.24.2",
331
+ "@smithy/types": "^4.14.1",
332
+ "tslib": "^2.6.2"
333
+ },
334
+ "engines": {
335
+ "node": ">=20.0.0"
336
+ }
337
+ },
338
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/eventstream-handler-node": {
339
+ "version": "3.972.16",
340
+ "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.16.tgz",
341
+ "integrity": "sha512-yedpPgKftqjU5SlPFHfqWpOw6xSCRieWRG1euWOlXn4WJxt2VX92VprCa2PpSOXjVCAeK6dTjW9eJRXVig9yGA==",
342
+ "license": "Apache-2.0",
343
+ "dependencies": {
344
+ "@aws-sdk/types": "^3.973.8",
345
+ "@smithy/core": "^3.24.2",
346
+ "@smithy/types": "^4.14.1",
347
+ "tslib": "^2.6.2"
348
+ },
349
+ "engines": {
350
+ "node": ">=20.0.0"
351
+ }
352
+ },
353
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/middleware-eventstream": {
354
+ "version": "3.972.12",
355
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.12.tgz",
356
+ "integrity": "sha512-tHTHHCHNrq6XklQvlzHBDJG4Iuhh7NVPRdtmvP+nHFA+5sxPlIDzlAHHgfoYHGvT3NXP1yVP/L5c3opUn6T3Qg==",
357
+ "license": "Apache-2.0",
358
+ "dependencies": {
359
+ "@aws-sdk/types": "^3.973.8",
360
+ "@smithy/core": "^3.24.2",
361
+ "@smithy/types": "^4.14.1",
362
+ "tslib": "^2.6.2"
363
+ },
364
+ "engines": {
365
+ "node": ">=20.0.0"
366
+ }
367
+ },
368
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/middleware-websocket": {
369
+ "version": "3.972.19",
370
+ "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.19.tgz",
371
+ "integrity": "sha512-mkEhOGYozqKQkbFaVrjwr0faiwwZza1v5/jSY6Tucm3bD+uKTazIUH/4Yo6aMnQD2ua2W9cMP6s8mvwTcjtqHw==",
372
+ "license": "Apache-2.0",
373
+ "dependencies": {
374
+ "@aws-sdk/core": "^3.974.11",
375
+ "@aws-sdk/types": "^3.973.8",
376
+ "@smithy/core": "^3.24.2",
377
+ "@smithy/fetch-http-handler": "^5.4.2",
378
+ "@smithy/signature-v4": "^5.4.2",
379
+ "@smithy/types": "^4.14.1",
380
+ "tslib": "^2.6.2"
381
+ },
382
+ "engines": {
383
+ "node": ">= 14.0.0"
384
+ }
385
+ },
386
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/nested-clients": {
387
+ "version": "3.997.9",
388
+ "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.9.tgz",
389
+ "integrity": "sha512-jPR3rnmRI4hWYyzfmTGBr7NblMp8QYYeflHXba1H6+7CGrWVqWKQzaXFQ4qbExqPRsXN3T3L3JxFhr6aouXUGQ==",
390
+ "license": "Apache-2.0",
391
+ "dependencies": {
392
+ "@aws-crypto/sha256-browser": "5.2.0",
393
+ "@aws-crypto/sha256-js": "5.2.0",
394
+ "@aws-sdk/core": "^3.974.11",
395
+ "@aws-sdk/signature-v4-multi-region": "^3.996.27",
396
+ "@aws-sdk/types": "^3.973.8",
397
+ "@smithy/core": "^3.24.2",
398
+ "@smithy/fetch-http-handler": "^5.4.2",
399
+ "@smithy/node-http-handler": "^4.7.2",
400
+ "@smithy/types": "^4.14.1",
401
+ "tslib": "^2.6.2"
402
+ },
403
+ "engines": {
404
+ "node": ">=20.0.0"
405
+ }
406
+ },
407
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/signature-v4-multi-region": {
408
+ "version": "3.996.27",
409
+ "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.27.tgz",
410
+ "integrity": "sha512-0Phbz4t6HI3D3skxvG2uI+VWU034/nSIw1T8d+FPzzQG9EQTrw94o9mOKO2Gv3n3Oc8P7JD7RAUxkoneLWv5Eg==",
411
+ "license": "Apache-2.0",
412
+ "dependencies": {
413
+ "@aws-sdk/types": "^3.973.8",
414
+ "@smithy/core": "^3.24.2",
415
+ "@smithy/signature-v4": "^5.4.2",
416
+ "@smithy/types": "^4.14.1",
417
+ "tslib": "^2.6.2"
418
+ },
419
+ "engines": {
420
+ "node": ">=20.0.0"
421
+ }
422
+ },
423
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/token-providers": {
424
+ "version": "3.1048.0",
425
+ "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1048.0.tgz",
426
+ "integrity": "sha512-k0y/GcuesuSfWyUM0WamrGyeZmltRYaPbHO82UDA6mZ/doB+FOHKutikPAtSXMn/hDz970cF+iRuuiYO9VEbAA==",
427
+ "license": "Apache-2.0",
428
+ "dependencies": {
429
+ "@aws-sdk/core": "^3.974.11",
430
+ "@aws-sdk/nested-clients": "^3.997.9",
431
+ "@aws-sdk/types": "^3.973.8",
432
+ "@smithy/core": "^3.24.2",
433
+ "@smithy/types": "^4.14.1",
434
+ "tslib": "^2.6.2"
435
+ },
436
+ "engines": {
437
+ "node": ">=20.0.0"
438
+ }
439
+ },
440
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/types": {
441
+ "version": "3.973.8",
442
+ "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.8.tgz",
443
+ "integrity": "sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==",
444
+ "license": "Apache-2.0",
445
+ "dependencies": {
446
+ "@smithy/types": "^4.14.1",
447
+ "tslib": "^2.6.2"
448
+ },
449
+ "engines": {
450
+ "node": ">=20.0.0"
451
+ }
452
+ },
453
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/util-locate-window": {
454
+ "version": "3.965.5",
455
+ "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.5.tgz",
456
+ "integrity": "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==",
457
+ "license": "Apache-2.0",
458
+ "dependencies": {
459
+ "tslib": "^2.6.2"
460
+ },
461
+ "engines": {
462
+ "node": ">=20.0.0"
463
+ }
464
+ },
465
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws-sdk/xml-builder": {
466
+ "version": "3.972.24",
467
+ "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.24.tgz",
468
+ "integrity": "sha512-V8z5YcDPfsvzrBlj0xR1vhRtocblhYbqdreCJB/voGd4Sr5zjNAeWxexbnqVtskTJe0vFb5KMqbSL++ePl+zRw==",
469
+ "license": "Apache-2.0",
470
+ "dependencies": {
471
+ "@nodable/entities": "2.1.0",
472
+ "@smithy/types": "^4.14.1",
473
+ "fast-xml-parser": "5.7.3",
474
+ "tslib": "^2.6.2"
475
+ },
476
+ "engines": {
477
+ "node": ">=20.0.0"
478
+ }
479
+ },
480
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@aws/lambda-invoke-store": {
481
+ "version": "0.2.4",
482
+ "resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.4.tgz",
483
+ "integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==",
484
+ "license": "Apache-2.0",
485
+ "engines": {
486
+ "node": ">=18.0.0"
487
+ }
488
+ },
489
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@babel/runtime": {
490
+ "version": "7.29.2",
491
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
492
+ "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
493
+ "license": "MIT",
494
+ "engines": {
495
+ "node": ">=6.9.0"
496
+ }
497
+ },
498
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/chord": {
499
+ "version": "0.85.1",
500
+ "resolved": "https://registry.npmjs.org/@earendil-works/chord/-/chord-0.85.1.tgz",
501
+ "integrity": "sha512-VDlkEC3dhCzQ5fcyH1OhG19dq+6jCn+rqc/iXFivwDYGR5anwo2RCiXij9PpHhqNR5GuhhE+Er69Zi1Sn4eY6w==",
502
+ "license": "MIT",
503
+ "dependencies": {
504
+ "esbuild": "0.28.1"
505
+ },
506
+ "engines": {
507
+ "node": ">=22.19.0"
508
+ }
509
+ },
510
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-agent-core": {
511
+ "version": "0.85.1",
512
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.85.1.tgz",
513
+ "integrity": "sha512-hIXIP3eAWueAYiAl8aMvWCvvZ8Q5gT3Dip5bE5uJyIGh4+YlWRjtMLI4BaeoXoSs93zndjue61u1B/vhefLnuA==",
514
+ "license": "MIT",
515
+ "dependencies": {
516
+ "@earendil-works/chord": "^0.85.1",
517
+ "@earendil-works/pi-ai": "^0.85.1",
518
+ "@earendil-works/pi-telemetry": "^0.85.1",
519
+ "diff": "8.0.4",
520
+ "ignore": "7.0.5",
521
+ "typebox": "1.3.7",
522
+ "yaml": "2.9.0"
523
+ },
524
+ "engines": {
525
+ "node": ">=22.19.0"
526
+ }
527
+ },
528
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-ai": {
529
+ "version": "0.85.1",
530
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.85.1.tgz",
531
+ "integrity": "sha512-+VgVIJDkDO2efYJKEEqvPTH4zmnIaXdAppGbO+vKFA9qy5PdhFiAenuFAkU+oiCSfOC4dMHDyrjdQeL4ZoC5CQ==",
532
+ "license": "MIT",
533
+ "dependencies": {
534
+ "@anthropic-ai/sdk": "0.123.0",
535
+ "@aws-sdk/client-bedrock-runtime": "3.1048.0",
536
+ "@earendil-works/pi-telemetry": "^0.85.1",
537
+ "@google/genai": "1.52.0",
538
+ "@smithy/node-http-handler": "4.7.3",
539
+ "http-proxy-agent": "7.0.2",
540
+ "https-proxy-agent": "7.0.6",
541
+ "openai": "6.40.0",
542
+ "partial-json": "0.1.7",
543
+ "typebox": "1.3.7"
544
+ },
545
+ "bin": {
546
+ "pi-ai": "dist/cli.js"
547
+ },
548
+ "engines": {
549
+ "node": ">=22.19.0"
550
+ }
551
+ },
552
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-telemetry": {
553
+ "version": "0.85.1",
554
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-telemetry/-/pi-telemetry-0.85.1.tgz",
555
+ "integrity": "sha512-Bg/YN6kA7Swja/NQxka8xFdecb4E/auIEGF2G5A25EaQXhRnPj300/7/KpgsDDMYUzHTDAv4RyUxaQPJKW81Rw==",
556
+ "license": "MIT",
557
+ "engines": {
558
+ "node": ">=22.19.0"
559
+ }
560
+ },
561
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@earendil-works/pi-tui": {
562
+ "version": "0.85.1",
563
+ "resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.85.1.tgz",
564
+ "integrity": "sha512-OIzw9efInmO4WOBnD4TxcTdBjmzvYJpzslkgoUro946nEGoYWg5rwv1p4fDt3/JvMx9QybryUCUwlm7j8Dreig==",
565
+ "license": "MIT",
566
+ "dependencies": {
567
+ "get-east-asian-width": "1.6.0",
568
+ "marked": "18.0.5"
569
+ },
570
+ "engines": {
571
+ "node": ">=22.19.0"
572
+ }
573
+ },
574
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/aix-ppc64": {
575
+ "version": "0.28.1",
576
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
577
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
578
+ "cpu": [
579
+ "ppc64"
580
+ ],
581
+ "license": "MIT",
582
+ "optional": true,
583
+ "os": [
584
+ "aix"
585
+ ],
586
+ "engines": {
587
+ "node": ">=18"
588
+ }
589
+ },
590
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/android-arm": {
591
+ "version": "0.28.1",
592
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
593
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
594
+ "cpu": [
595
+ "arm"
596
+ ],
597
+ "license": "MIT",
598
+ "optional": true,
599
+ "os": [
600
+ "android"
601
+ ],
602
+ "engines": {
603
+ "node": ">=18"
604
+ }
605
+ },
606
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/android-arm64": {
607
+ "version": "0.28.1",
608
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
609
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
610
+ "cpu": [
611
+ "arm64"
612
+ ],
613
+ "license": "MIT",
614
+ "optional": true,
615
+ "os": [
616
+ "android"
617
+ ],
618
+ "engines": {
619
+ "node": ">=18"
620
+ }
621
+ },
622
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/android-x64": {
623
+ "version": "0.28.1",
624
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
625
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
626
+ "cpu": [
627
+ "x64"
628
+ ],
629
+ "license": "MIT",
630
+ "optional": true,
631
+ "os": [
632
+ "android"
633
+ ],
634
+ "engines": {
635
+ "node": ">=18"
636
+ }
637
+ },
638
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/darwin-arm64": {
639
+ "version": "0.28.1",
640
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
641
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
642
+ "cpu": [
643
+ "arm64"
644
+ ],
645
+ "license": "MIT",
646
+ "optional": true,
647
+ "os": [
648
+ "darwin"
649
+ ],
650
+ "engines": {
651
+ "node": ">=18"
652
+ }
653
+ },
654
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/darwin-x64": {
655
+ "version": "0.28.1",
656
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
657
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
658
+ "cpu": [
659
+ "x64"
660
+ ],
661
+ "license": "MIT",
662
+ "optional": true,
663
+ "os": [
664
+ "darwin"
665
+ ],
666
+ "engines": {
667
+ "node": ">=18"
668
+ }
669
+ },
670
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/freebsd-arm64": {
671
+ "version": "0.28.1",
672
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
673
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
674
+ "cpu": [
675
+ "arm64"
676
+ ],
677
+ "license": "MIT",
678
+ "optional": true,
679
+ "os": [
680
+ "freebsd"
681
+ ],
682
+ "engines": {
683
+ "node": ">=18"
684
+ }
685
+ },
686
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/freebsd-x64": {
687
+ "version": "0.28.1",
688
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
689
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
690
+ "cpu": [
691
+ "x64"
692
+ ],
693
+ "license": "MIT",
694
+ "optional": true,
695
+ "os": [
696
+ "freebsd"
697
+ ],
698
+ "engines": {
699
+ "node": ">=18"
700
+ }
701
+ },
702
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-arm": {
703
+ "version": "0.28.1",
704
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
705
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
706
+ "cpu": [
707
+ "arm"
708
+ ],
709
+ "license": "MIT",
710
+ "optional": true,
711
+ "os": [
712
+ "linux"
713
+ ],
714
+ "engines": {
715
+ "node": ">=18"
716
+ }
717
+ },
718
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-arm64": {
719
+ "version": "0.28.1",
720
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
721
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
722
+ "cpu": [
723
+ "arm64"
724
+ ],
725
+ "license": "MIT",
726
+ "optional": true,
727
+ "os": [
728
+ "linux"
729
+ ],
730
+ "engines": {
731
+ "node": ">=18"
732
+ }
733
+ },
734
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-ia32": {
735
+ "version": "0.28.1",
736
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
737
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
738
+ "cpu": [
739
+ "ia32"
740
+ ],
741
+ "license": "MIT",
742
+ "optional": true,
743
+ "os": [
744
+ "linux"
745
+ ],
746
+ "engines": {
747
+ "node": ">=18"
748
+ }
749
+ },
750
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-loong64": {
751
+ "version": "0.28.1",
752
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
753
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
754
+ "cpu": [
755
+ "loong64"
756
+ ],
757
+ "license": "MIT",
758
+ "optional": true,
759
+ "os": [
760
+ "linux"
761
+ ],
762
+ "engines": {
763
+ "node": ">=18"
764
+ }
765
+ },
766
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-mips64el": {
767
+ "version": "0.28.1",
768
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
769
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
770
+ "cpu": [
771
+ "mips64el"
772
+ ],
773
+ "license": "MIT",
774
+ "optional": true,
775
+ "os": [
776
+ "linux"
777
+ ],
778
+ "engines": {
779
+ "node": ">=18"
780
+ }
781
+ },
782
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-ppc64": {
783
+ "version": "0.28.1",
784
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
785
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
786
+ "cpu": [
787
+ "ppc64"
788
+ ],
789
+ "license": "MIT",
790
+ "optional": true,
791
+ "os": [
792
+ "linux"
793
+ ],
794
+ "engines": {
795
+ "node": ">=18"
796
+ }
797
+ },
798
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-riscv64": {
799
+ "version": "0.28.1",
800
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
801
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
802
+ "cpu": [
803
+ "riscv64"
804
+ ],
805
+ "license": "MIT",
806
+ "optional": true,
807
+ "os": [
808
+ "linux"
809
+ ],
810
+ "engines": {
811
+ "node": ">=18"
812
+ }
813
+ },
814
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-s390x": {
815
+ "version": "0.28.1",
816
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
817
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
818
+ "cpu": [
819
+ "s390x"
820
+ ],
821
+ "license": "MIT",
822
+ "optional": true,
823
+ "os": [
824
+ "linux"
825
+ ],
826
+ "engines": {
827
+ "node": ">=18"
828
+ }
829
+ },
830
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/linux-x64": {
831
+ "version": "0.28.1",
832
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
833
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
834
+ "cpu": [
835
+ "x64"
836
+ ],
837
+ "license": "MIT",
838
+ "optional": true,
839
+ "os": [
840
+ "linux"
841
+ ],
842
+ "engines": {
843
+ "node": ">=18"
844
+ }
845
+ },
846
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/netbsd-arm64": {
847
+ "version": "0.28.1",
848
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
849
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
850
+ "cpu": [
851
+ "arm64"
852
+ ],
853
+ "license": "MIT",
854
+ "optional": true,
855
+ "os": [
856
+ "netbsd"
857
+ ],
858
+ "engines": {
859
+ "node": ">=18"
860
+ }
861
+ },
862
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/netbsd-x64": {
863
+ "version": "0.28.1",
864
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
865
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
866
+ "cpu": [
867
+ "x64"
868
+ ],
869
+ "license": "MIT",
870
+ "optional": true,
871
+ "os": [
872
+ "netbsd"
873
+ ],
874
+ "engines": {
875
+ "node": ">=18"
876
+ }
877
+ },
878
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/openbsd-arm64": {
879
+ "version": "0.28.1",
880
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
881
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
882
+ "cpu": [
883
+ "arm64"
884
+ ],
885
+ "license": "MIT",
886
+ "optional": true,
887
+ "os": [
888
+ "openbsd"
889
+ ],
890
+ "engines": {
891
+ "node": ">=18"
892
+ }
893
+ },
894
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/openbsd-x64": {
895
+ "version": "0.28.1",
896
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
897
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
898
+ "cpu": [
899
+ "x64"
900
+ ],
901
+ "license": "MIT",
902
+ "optional": true,
903
+ "os": [
904
+ "openbsd"
905
+ ],
906
+ "engines": {
907
+ "node": ">=18"
908
+ }
909
+ },
910
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/openharmony-arm64": {
911
+ "version": "0.28.1",
912
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
913
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
914
+ "cpu": [
915
+ "arm64"
916
+ ],
917
+ "license": "MIT",
918
+ "optional": true,
919
+ "os": [
920
+ "openharmony"
921
+ ],
922
+ "engines": {
923
+ "node": ">=18"
924
+ }
925
+ },
926
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/sunos-x64": {
927
+ "version": "0.28.1",
928
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
929
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
930
+ "cpu": [
931
+ "x64"
932
+ ],
933
+ "license": "MIT",
934
+ "optional": true,
935
+ "os": [
936
+ "sunos"
937
+ ],
938
+ "engines": {
939
+ "node": ">=18"
940
+ }
941
+ },
942
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/win32-arm64": {
943
+ "version": "0.28.1",
944
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
945
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
946
+ "cpu": [
947
+ "arm64"
948
+ ],
949
+ "license": "MIT",
950
+ "optional": true,
951
+ "os": [
952
+ "win32"
953
+ ],
954
+ "engines": {
955
+ "node": ">=18"
956
+ }
957
+ },
958
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/win32-ia32": {
959
+ "version": "0.28.1",
960
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
961
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
962
+ "cpu": [
963
+ "ia32"
964
+ ],
965
+ "license": "MIT",
966
+ "optional": true,
967
+ "os": [
968
+ "win32"
969
+ ],
970
+ "engines": {
971
+ "node": ">=18"
972
+ }
973
+ },
974
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@esbuild/win32-x64": {
975
+ "version": "0.28.1",
976
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
977
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
978
+ "cpu": [
979
+ "x64"
980
+ ],
981
+ "license": "MIT",
982
+ "optional": true,
983
+ "os": [
984
+ "win32"
985
+ ],
986
+ "engines": {
987
+ "node": ">=18"
988
+ }
989
+ },
990
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@google/genai": {
991
+ "version": "1.52.0",
992
+ "resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
993
+ "integrity": "sha512-gwSvbpiN/17O9TbsqSsE/OzZcpv5Fo4RQjdngGgogtuB9RsyJ8ZHhX5KjHj1bp5N9snN2eK8LDGXSaWW2hof8Q==",
994
+ "hasInstallScript": true,
995
+ "license": "Apache-2.0",
996
+ "dependencies": {
997
+ "google-auth-library": "^10.3.0",
998
+ "p-retry": "^4.6.2",
999
+ "protobufjs": "^7.5.4",
1000
+ "ws": "^8.18.0"
1001
+ },
1002
+ "engines": {
1003
+ "node": ">=20.0.0"
1004
+ },
1005
+ "peerDependencies": {
1006
+ "@modelcontextprotocol/sdk": "^1.25.2"
1007
+ },
1008
+ "peerDependenciesMeta": {
1009
+ "@modelcontextprotocol/sdk": {
1010
+ "optional": true
1011
+ }
1012
+ }
1013
+ },
1014
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard": {
1015
+ "version": "0.3.9",
1016
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard/-/clipboard-0.3.9.tgz",
1017
+ "integrity": "sha512-ABnA53mdfkGZwOFUdZNv2S0CWGO/EIuPj8Vv9xmBFmSYg/qFc7ihO6q5FcQjvoE67kZpWkEc4AhD6B/os04yuA==",
1018
+ "license": "MIT",
1019
+ "optional": true,
1020
+ "engines": {
1021
+ "node": ">= 10"
1022
+ },
1023
+ "optionalDependencies": {
1024
+ "@mariozechner/clipboard-darwin-arm64": "0.3.9",
1025
+ "@mariozechner/clipboard-darwin-universal": "0.3.9",
1026
+ "@mariozechner/clipboard-darwin-x64": "0.3.9",
1027
+ "@mariozechner/clipboard-linux-arm64-gnu": "0.3.9",
1028
+ "@mariozechner/clipboard-linux-arm64-musl": "0.3.9",
1029
+ "@mariozechner/clipboard-linux-riscv64-gnu": "0.3.9",
1030
+ "@mariozechner/clipboard-linux-x64-gnu": "0.3.9",
1031
+ "@mariozechner/clipboard-linux-x64-musl": "0.3.9",
1032
+ "@mariozechner/clipboard-win32-arm64-msvc": "0.3.9",
1033
+ "@mariozechner/clipboard-win32-x64-msvc": "0.3.9"
1034
+ }
1035
+ },
1036
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-arm64": {
1037
+ "version": "0.3.9",
1038
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-arm64/-/clipboard-darwin-arm64-0.3.9.tgz",
1039
+ "integrity": "sha512-BfgV7vCEWZwJwZJw03r6bP5+tf0iI/ANuQYCxi9RNn7FrWB3yzGuMKCrNLRl6V761vXRdL8+OqZ0wd4TqlsNOQ==",
1040
+ "cpu": [
1041
+ "arm64"
1042
+ ],
1043
+ "license": "MIT",
1044
+ "optional": true,
1045
+ "os": [
1046
+ "darwin"
1047
+ ],
1048
+ "engines": {
1049
+ "node": ">= 10"
1050
+ }
1051
+ },
1052
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-universal": {
1053
+ "version": "0.3.9",
1054
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-universal/-/clipboard-darwin-universal-0.3.9.tgz",
1055
+ "integrity": "sha512-BGGR4iA9Z2shAjI65eI5xtyb3LYNlDW9X3gxKxDbqtbnREohsrqznov6zpKoIrsRWpzlYVEdKphS7ksJ0/ndSQ==",
1056
+ "license": "MIT",
1057
+ "optional": true,
1058
+ "os": [
1059
+ "darwin"
1060
+ ],
1061
+ "engines": {
1062
+ "node": ">= 10"
1063
+ }
1064
+ },
1065
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-darwin-x64": {
1066
+ "version": "0.3.9",
1067
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-x64/-/clipboard-darwin-x64-0.3.9.tgz",
1068
+ "integrity": "sha512-4kURmCbS6nt8uYhtmWpUcJWyPHfmAr5dTpXD1nO3pIfa+TSQ9DbrGOYCKH+aEFW47XhQ4Vp8ZTszie+wfFvDKg==",
1069
+ "cpu": [
1070
+ "x64"
1071
+ ],
1072
+ "license": "MIT",
1073
+ "optional": true,
1074
+ "os": [
1075
+ "darwin"
1076
+ ],
1077
+ "engines": {
1078
+ "node": ">= 10"
1079
+ }
1080
+ },
1081
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-arm64-gnu": {
1082
+ "version": "0.3.9",
1083
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-gnu/-/clipboard-linux-arm64-gnu-0.3.9.tgz",
1084
+ "integrity": "sha512-g59OkUGP2DDfCOIKypHeYgv2M55u/cKvXa5dSxFbEJ34XvIQMdcVmpKCkGUro3ZgefXiGVdwguvTMQGpHWzIXw==",
1085
+ "cpu": [
1086
+ "arm64"
1087
+ ],
1088
+ "license": "MIT",
1089
+ "optional": true,
1090
+ "os": [
1091
+ "linux"
1092
+ ],
1093
+ "engines": {
1094
+ "node": ">= 10"
1095
+ }
1096
+ },
1097
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-arm64-musl": {
1098
+ "version": "0.3.9",
1099
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-musl/-/clipboard-linux-arm64-musl-0.3.9.tgz",
1100
+ "integrity": "sha512-AGuJdgKsmJdm4Pych7kv3sqe591ERRaAHW3xjLooiFzn8J+PxUyof++7YZrB5Y5tpnTO+K18Og3taj2NpluCRQ==",
1101
+ "cpu": [
1102
+ "arm64"
1103
+ ],
1104
+ "license": "MIT",
1105
+ "optional": true,
1106
+ "os": [
1107
+ "linux"
1108
+ ],
1109
+ "engines": {
1110
+ "node": ">= 10"
1111
+ }
1112
+ },
1113
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-riscv64-gnu": {
1114
+ "version": "0.3.9",
1115
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-riscv64-gnu/-/clipboard-linux-riscv64-gnu-0.3.9.tgz",
1116
+ "integrity": "sha512-DXBEAiuMpk7dhS1a9NzNxVAFi1vaKoPu7rQNgY8LIDLGrK3lnIp3nT10DUum+PKVJoJppIP+NAA8IZe4DMNDPw==",
1117
+ "cpu": [
1118
+ "riscv64"
1119
+ ],
1120
+ "license": "MIT",
1121
+ "optional": true,
1122
+ "os": [
1123
+ "linux"
1124
+ ],
1125
+ "engines": {
1126
+ "node": ">= 10"
1127
+ }
1128
+ },
1129
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-x64-gnu": {
1130
+ "version": "0.3.9",
1131
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-gnu/-/clipboard-linux-x64-gnu-0.3.9.tgz",
1132
+ "integrity": "sha512-WORrMLd6EpElEME7JRKfSaY34nW1P5LbdgK5YNCS1ncG2LqmITsSMEJ8nh2mpvxb3TxqbOOKgY7k9eMJYlW9Mw==",
1133
+ "cpu": [
1134
+ "x64"
1135
+ ],
1136
+ "license": "MIT",
1137
+ "optional": true,
1138
+ "os": [
1139
+ "linux"
1140
+ ],
1141
+ "engines": {
1142
+ "node": ">= 10"
1143
+ }
1144
+ },
1145
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-linux-x64-musl": {
1146
+ "version": "0.3.9",
1147
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-musl/-/clipboard-linux-x64-musl-0.3.9.tgz",
1148
+ "integrity": "sha512-/DHn+1DrfL6oRaPPWXaOKvonFFrni666fxd+zFqiQEfvBH0tsHVWjq9iqBk0oDp0qaPA72lIMy5BptxISBEhZQ==",
1149
+ "cpu": [
1150
+ "x64"
1151
+ ],
1152
+ "license": "MIT",
1153
+ "optional": true,
1154
+ "os": [
1155
+ "linux"
1156
+ ],
1157
+ "engines": {
1158
+ "node": ">= 10"
1159
+ }
1160
+ },
1161
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-win32-arm64-msvc": {
1162
+ "version": "0.3.9",
1163
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-arm64-msvc/-/clipboard-win32-arm64-msvc-0.3.9.tgz",
1164
+ "integrity": "sha512-O5FHD3ErkMwMhNzAfu3ggy0ug4z7btZuoQgwwxlzPrwV2bxlD6WDpqBY4NCgICAgZdDKdp+loUEKVAVt8aYnhQ==",
1165
+ "cpu": [
1166
+ "arm64"
1167
+ ],
1168
+ "license": "MIT",
1169
+ "optional": true,
1170
+ "os": [
1171
+ "win32"
1172
+ ],
1173
+ "engines": {
1174
+ "node": ">= 10"
1175
+ }
1176
+ },
1177
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@mariozechner/clipboard-win32-x64-msvc": {
1178
+ "version": "0.3.9",
1179
+ "resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-x64-msvc/-/clipboard-win32-x64-msvc-0.3.9.tgz",
1180
+ "integrity": "sha512-ihQC3EufqEY81vhXBgVBtK4prL+wc62zJsSvxrgz7K1hsdt6OObz6v9p3Rn1OG3GJksTTKMJF0u/guMISHPhSA==",
1181
+ "cpu": [
1182
+ "x64"
1183
+ ],
1184
+ "license": "MIT",
1185
+ "optional": true,
1186
+ "os": [
1187
+ "win32"
1188
+ ],
1189
+ "engines": {
1190
+ "node": ">= 10"
1191
+ }
1192
+ },
1193
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@nodable/entities": {
1194
+ "version": "2.1.0",
1195
+ "resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
1196
+ "integrity": "sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==",
1197
+ "funding": [
1198
+ {
1199
+ "type": "github",
1200
+ "url": "https://github.com/sponsors/nodable"
1201
+ }
1202
+ ],
1203
+ "license": "MIT"
1204
+ },
1205
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/aspromise": {
1206
+ "version": "1.1.2",
1207
+ "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
1208
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
1209
+ "license": "BSD-3-Clause"
1210
+ },
1211
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/base64": {
1212
+ "version": "1.1.2",
1213
+ "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
1214
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
1215
+ "license": "BSD-3-Clause"
1216
+ },
1217
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/codegen": {
1218
+ "version": "2.0.5",
1219
+ "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
1220
+ "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
1221
+ "license": "BSD-3-Clause"
1222
+ },
1223
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/eventemitter": {
1224
+ "version": "1.1.1",
1225
+ "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
1226
+ "integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
1227
+ "license": "BSD-3-Clause"
1228
+ },
1229
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/fetch": {
1230
+ "version": "1.1.1",
1231
+ "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
1232
+ "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
1233
+ "license": "BSD-3-Clause",
1234
+ "dependencies": {
1235
+ "@protobufjs/aspromise": "^1.1.1"
1236
+ }
1237
+ },
1238
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/float": {
1239
+ "version": "1.0.2",
1240
+ "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
1241
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
1242
+ "license": "BSD-3-Clause"
1243
+ },
1244
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/path": {
1245
+ "version": "1.1.2",
1246
+ "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
1247
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
1248
+ "license": "BSD-3-Clause"
1249
+ },
1250
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/pool": {
1251
+ "version": "1.1.0",
1252
+ "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
1253
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
1254
+ "license": "BSD-3-Clause"
1255
+ },
1256
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@protobufjs/utf8": {
1257
+ "version": "1.1.1",
1258
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
1259
+ "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
1260
+ "license": "BSD-3-Clause"
1261
+ },
1262
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@silvia-odwyer/photon-node": {
1263
+ "version": "0.3.4",
1264
+ "resolved": "https://registry.npmjs.org/@silvia-odwyer/photon-node/-/photon-node-0.3.4.tgz",
1265
+ "integrity": "sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==",
1266
+ "license": "Apache-2.0"
1267
+ },
1268
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/core": {
1269
+ "version": "3.24.3",
1270
+ "resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.24.3.tgz",
1271
+ "integrity": "sha512-Ep/7tPamGY8mgESE3LyLKtxJyy6U52WWAqr/3wial47Sj4u3PiIF73AOGI27UyLy9duTkhZbgzodOfLV4TduZg==",
1272
+ "license": "Apache-2.0",
1273
+ "dependencies": {
1274
+ "@aws-crypto/crc32": "5.2.0",
1275
+ "@smithy/types": "^4.14.2",
1276
+ "tslib": "^2.6.2"
1277
+ },
1278
+ "engines": {
1279
+ "node": ">=18.0.0"
1280
+ }
1281
+ },
1282
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/credential-provider-imds": {
1283
+ "version": "4.3.3",
1284
+ "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.3.3.tgz",
1285
+ "integrity": "sha512-I2Bti0DKFo2IJyN28ijCsx51BAumEYR4/1yZ1FXyBygy9MqbnMqCev4JPth/MbpRfBSRAX35hITSnAdJRo1u5w==",
1286
+ "license": "Apache-2.0",
1287
+ "dependencies": {
1288
+ "@smithy/core": "^3.24.3",
1289
+ "@smithy/types": "^4.14.2",
1290
+ "tslib": "^2.6.2"
1291
+ },
1292
+ "engines": {
1293
+ "node": ">=18.0.0"
1294
+ }
1295
+ },
1296
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/fetch-http-handler": {
1297
+ "version": "5.4.3",
1298
+ "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.4.3.tgz",
1299
+ "integrity": "sha512-F+DRf8IJazRJgYog2A/yJK7eYVc0rqTlRzO+5ZxjJd4WkZoKz0IJRncf7G6t1pdVT3kryJcwuTFhN1c5m6N47A==",
1300
+ "license": "Apache-2.0",
1301
+ "dependencies": {
1302
+ "@smithy/core": "^3.24.3",
1303
+ "@smithy/types": "^4.14.2",
1304
+ "tslib": "^2.6.2"
1305
+ },
1306
+ "engines": {
1307
+ "node": ">=18.0.0"
1308
+ }
1309
+ },
1310
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/is-array-buffer": {
1311
+ "version": "2.2.0",
1312
+ "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
1313
+ "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
1314
+ "license": "Apache-2.0",
1315
+ "dependencies": {
1316
+ "tslib": "^2.6.2"
1317
+ },
1318
+ "engines": {
1319
+ "node": ">=14.0.0"
1320
+ }
1321
+ },
1322
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/node-http-handler": {
1323
+ "version": "4.7.3",
1324
+ "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.7.3.tgz",
1325
+ "integrity": "sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==",
1326
+ "license": "Apache-2.0",
1327
+ "dependencies": {
1328
+ "@smithy/core": "^3.24.3",
1329
+ "@smithy/types": "^4.14.2",
1330
+ "tslib": "^2.6.2"
1331
+ },
1332
+ "engines": {
1333
+ "node": ">=18.0.0"
1334
+ }
1335
+ },
1336
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/signature-v4": {
1337
+ "version": "5.4.3",
1338
+ "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.4.3.tgz",
1339
+ "integrity": "sha512-53+75QuPl6DL+ct6vVEB51FDO5oulXr20TPV46VvJZg76lIlXNWfxi8j+G2V/t0I2qxCBOa3vX/8bmjrpFVo9g==",
1340
+ "license": "Apache-2.0",
1341
+ "dependencies": {
1342
+ "@smithy/core": "^3.24.3",
1343
+ "@smithy/types": "^4.14.2",
1344
+ "tslib": "^2.6.2"
1345
+ },
1346
+ "engines": {
1347
+ "node": ">=18.0.0"
1348
+ }
1349
+ },
1350
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/types": {
1351
+ "version": "4.14.2",
1352
+ "resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.2.tgz",
1353
+ "integrity": "sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==",
1354
+ "license": "Apache-2.0",
1355
+ "dependencies": {
1356
+ "tslib": "^2.6.2"
1357
+ },
1358
+ "engines": {
1359
+ "node": ">=18.0.0"
1360
+ }
1361
+ },
1362
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/util-buffer-from": {
1363
+ "version": "2.2.0",
1364
+ "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
1365
+ "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
1366
+ "license": "Apache-2.0",
1367
+ "dependencies": {
1368
+ "@smithy/is-array-buffer": "^2.2.0",
1369
+ "tslib": "^2.6.2"
1370
+ },
1371
+ "engines": {
1372
+ "node": ">=14.0.0"
1373
+ }
1374
+ },
1375
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@smithy/util-utf8": {
1376
+ "version": "2.3.0",
1377
+ "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
1378
+ "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
1379
+ "license": "Apache-2.0",
1380
+ "dependencies": {
1381
+ "@smithy/util-buffer-from": "^2.2.0",
1382
+ "tslib": "^2.6.2"
1383
+ },
1384
+ "engines": {
1385
+ "node": ">=14.0.0"
1386
+ }
1387
+ },
1388
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@stablelib/base64": {
1389
+ "version": "1.0.1",
1390
+ "resolved": "https://registry.npmjs.org/@stablelib/base64/-/base64-1.0.1.tgz",
1391
+ "integrity": "sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==",
1392
+ "license": "MIT"
1393
+ },
1394
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/@types/node": {
1395
+ "version": "22.19.19",
1396
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz",
1397
+ "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==",
1398
+ "license": "MIT",
1399
+ "dependencies": {
1400
+ "undici-types": "~6.21.0"
1401
+ }
1402
+ },
1403
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/agent-base": {
1404
+ "version": "7.1.4",
1405
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
1406
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
1407
+ "license": "MIT",
1408
+ "engines": {
1409
+ "node": ">= 14"
1410
+ }
1411
+ },
1412
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/balanced-match": {
1413
+ "version": "4.0.4",
1414
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1415
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1416
+ "license": "MIT",
1417
+ "engines": {
1418
+ "node": "18 || 20 || >=22"
1419
+ }
1420
+ },
1421
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/base64-js": {
1422
+ "version": "1.5.1",
1423
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1424
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1425
+ "funding": [
1426
+ {
1427
+ "type": "github",
1428
+ "url": "https://github.com/sponsors/feross"
1429
+ },
1430
+ {
1431
+ "type": "patreon",
1432
+ "url": "https://www.patreon.com/feross"
1433
+ },
1434
+ {
1435
+ "type": "consulting",
1436
+ "url": "https://feross.org/support"
1437
+ }
1438
+ ],
1439
+ "license": "MIT"
1440
+ },
1441
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/bignumber.js": {
1442
+ "version": "9.3.1",
1443
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz",
1444
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
1445
+ "license": "MIT",
1446
+ "engines": {
1447
+ "node": "*"
1448
+ }
1449
+ },
1450
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/bowser": {
1451
+ "version": "2.14.1",
1452
+ "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
1453
+ "integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
1454
+ "license": "MIT"
1455
+ },
1456
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/brace-expansion": {
1457
+ "version": "5.0.9",
1458
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.9.tgz",
1459
+ "integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
1460
+ "license": "MIT",
1461
+ "dependencies": {
1462
+ "balanced-match": "^4.0.2"
1463
+ },
1464
+ "engines": {
1465
+ "node": "20 || >=22"
1466
+ }
1467
+ },
1468
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/buffer-equal-constant-time": {
1469
+ "version": "1.0.1",
1470
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
1471
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
1472
+ "license": "BSD-3-Clause"
1473
+ },
1474
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/chalk": {
1475
+ "version": "5.6.2",
1476
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
1477
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
1478
+ "license": "MIT",
1479
+ "engines": {
1480
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1481
+ },
1482
+ "funding": {
1483
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1484
+ }
1485
+ },
1486
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/cross-spawn": {
1487
+ "version": "7.0.6",
1488
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1489
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1490
+ "license": "MIT",
1491
+ "dependencies": {
1492
+ "path-key": "^3.1.0",
1493
+ "shebang-command": "^2.0.0",
1494
+ "which": "^2.0.1"
1495
+ },
1496
+ "engines": {
1497
+ "node": ">= 8"
1498
+ }
1499
+ },
1500
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/data-uri-to-buffer": {
1501
+ "version": "4.0.1",
1502
+ "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
1503
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
1504
+ "license": "MIT",
1505
+ "engines": {
1506
+ "node": ">= 12"
1507
+ }
1508
+ },
1509
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/debug": {
1510
+ "version": "4.4.3",
1511
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1512
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1513
+ "license": "MIT",
1514
+ "dependencies": {
1515
+ "ms": "^2.1.3"
1516
+ },
1517
+ "engines": {
1518
+ "node": ">=6.0"
1519
+ },
1520
+ "peerDependenciesMeta": {
1521
+ "supports-color": {
1522
+ "optional": true
1523
+ }
1524
+ }
1525
+ },
1526
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/diff": {
1527
+ "version": "8.0.4",
1528
+ "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
1529
+ "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
1530
+ "license": "BSD-3-Clause",
1531
+ "engines": {
1532
+ "node": ">=0.3.1"
1533
+ }
1534
+ },
1535
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ecdsa-sig-formatter": {
1536
+ "version": "1.0.11",
1537
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
1538
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
1539
+ "license": "Apache-2.0",
1540
+ "dependencies": {
1541
+ "safe-buffer": "^5.0.1"
1542
+ }
1543
+ },
1544
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/esbuild": {
1545
+ "version": "0.28.1",
1546
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
1547
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
1548
+ "hasInstallScript": true,
1549
+ "license": "MIT",
1550
+ "bin": {
1551
+ "esbuild": "bin/esbuild"
1552
+ },
1553
+ "engines": {
1554
+ "node": ">=18"
1555
+ },
1556
+ "optionalDependencies": {
1557
+ "@esbuild/aix-ppc64": "0.28.1",
1558
+ "@esbuild/android-arm": "0.28.1",
1559
+ "@esbuild/android-arm64": "0.28.1",
1560
+ "@esbuild/android-x64": "0.28.1",
1561
+ "@esbuild/darwin-arm64": "0.28.1",
1562
+ "@esbuild/darwin-x64": "0.28.1",
1563
+ "@esbuild/freebsd-arm64": "0.28.1",
1564
+ "@esbuild/freebsd-x64": "0.28.1",
1565
+ "@esbuild/linux-arm": "0.28.1",
1566
+ "@esbuild/linux-arm64": "0.28.1",
1567
+ "@esbuild/linux-ia32": "0.28.1",
1568
+ "@esbuild/linux-loong64": "0.28.1",
1569
+ "@esbuild/linux-mips64el": "0.28.1",
1570
+ "@esbuild/linux-ppc64": "0.28.1",
1571
+ "@esbuild/linux-riscv64": "0.28.1",
1572
+ "@esbuild/linux-s390x": "0.28.1",
1573
+ "@esbuild/linux-x64": "0.28.1",
1574
+ "@esbuild/netbsd-arm64": "0.28.1",
1575
+ "@esbuild/netbsd-x64": "0.28.1",
1576
+ "@esbuild/openbsd-arm64": "0.28.1",
1577
+ "@esbuild/openbsd-x64": "0.28.1",
1578
+ "@esbuild/openharmony-arm64": "0.28.1",
1579
+ "@esbuild/sunos-x64": "0.28.1",
1580
+ "@esbuild/win32-arm64": "0.28.1",
1581
+ "@esbuild/win32-ia32": "0.28.1",
1582
+ "@esbuild/win32-x64": "0.28.1"
1583
+ }
1584
+ },
1585
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/extend": {
1586
+ "version": "3.0.2",
1587
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1588
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1589
+ "license": "MIT"
1590
+ },
1591
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fast-sha256": {
1592
+ "version": "1.3.0",
1593
+ "resolved": "https://registry.npmjs.org/fast-sha256/-/fast-sha256-1.3.0.tgz",
1594
+ "integrity": "sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==",
1595
+ "license": "Unlicense"
1596
+ },
1597
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fast-xml-builder": {
1598
+ "version": "1.2.0",
1599
+ "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
1600
+ "integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
1601
+ "funding": [
1602
+ {
1603
+ "type": "github",
1604
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1605
+ }
1606
+ ],
1607
+ "license": "MIT",
1608
+ "dependencies": {
1609
+ "path-expression-matcher": "^1.5.0",
1610
+ "xml-naming": "^0.1.0"
1611
+ }
1612
+ },
1613
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fast-xml-parser": {
1614
+ "version": "5.7.3",
1615
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
1616
+ "integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
1617
+ "funding": [
1618
+ {
1619
+ "type": "github",
1620
+ "url": "https://github.com/sponsors/NaturalIntelligence"
1621
+ }
1622
+ ],
1623
+ "license": "MIT",
1624
+ "dependencies": {
1625
+ "@nodable/entities": "^2.1.0",
1626
+ "fast-xml-builder": "^1.1.7",
1627
+ "path-expression-matcher": "^1.5.0",
1628
+ "strnum": "^2.2.3"
1629
+ },
1630
+ "bin": {
1631
+ "fxparser": "src/cli/cli.js"
1632
+ }
1633
+ },
1634
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/fetch-blob": {
1635
+ "version": "3.2.0",
1636
+ "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
1637
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
1638
+ "funding": [
1639
+ {
1640
+ "type": "github",
1641
+ "url": "https://github.com/sponsors/jimmywarting"
1642
+ },
1643
+ {
1644
+ "type": "paypal",
1645
+ "url": "https://paypal.me/jimmywarting"
1646
+ }
1647
+ ],
1648
+ "license": "MIT",
1649
+ "dependencies": {
1650
+ "node-domexception": "^1.0.0",
1651
+ "web-streams-polyfill": "^3.0.3"
1652
+ },
1653
+ "engines": {
1654
+ "node": "^12.20 || >= 14.13"
1655
+ }
1656
+ },
1657
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/formdata-polyfill": {
1658
+ "version": "4.0.10",
1659
+ "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
1660
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
1661
+ "license": "MIT",
1662
+ "dependencies": {
1663
+ "fetch-blob": "^3.1.2"
1664
+ },
1665
+ "engines": {
1666
+ "node": ">=12.20.0"
1667
+ }
1668
+ },
1669
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/gaxios": {
1670
+ "version": "7.1.4",
1671
+ "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.4.tgz",
1672
+ "integrity": "sha512-bTIgTsM2bWn3XklZISBTQX7ZSddGW+IO3bMdGaemHZ3tbqExMENHLx6kKZ/KlejgrMtj8q7wBItt51yegqalrA==",
1673
+ "license": "Apache-2.0",
1674
+ "dependencies": {
1675
+ "extend": "^3.0.2",
1676
+ "https-proxy-agent": "^7.0.1",
1677
+ "node-fetch": "^3.3.2"
1678
+ },
1679
+ "engines": {
1680
+ "node": ">=18"
1681
+ }
1682
+ },
1683
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/gcp-metadata": {
1684
+ "version": "8.1.2",
1685
+ "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
1686
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
1687
+ "license": "Apache-2.0",
1688
+ "dependencies": {
1689
+ "gaxios": "^7.0.0",
1690
+ "google-logging-utils": "^1.0.0",
1691
+ "json-bigint": "^1.0.0"
1692
+ },
1693
+ "engines": {
1694
+ "node": ">=18"
1695
+ }
1696
+ },
1697
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/get-east-asian-width": {
1698
+ "version": "1.6.0",
1699
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
1700
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
1701
+ "license": "MIT",
1702
+ "engines": {
1703
+ "node": ">=18"
1704
+ },
1705
+ "funding": {
1706
+ "url": "https://github.com/sponsors/sindresorhus"
1707
+ }
1708
+ },
1709
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/google-auth-library": {
1710
+ "version": "10.6.2",
1711
+ "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.6.2.tgz",
1712
+ "integrity": "sha512-e27Z6EThmVNNvtYASwQxose/G57rkRuaRbQyxM2bvYLLX/GqWZ5chWq2EBoUchJbCc57eC9ArzO5wMsEmWftCw==",
1713
+ "license": "Apache-2.0",
1714
+ "dependencies": {
1715
+ "base64-js": "^1.3.0",
1716
+ "ecdsa-sig-formatter": "^1.0.11",
1717
+ "gaxios": "^7.1.4",
1718
+ "gcp-metadata": "8.1.2",
1719
+ "google-logging-utils": "1.1.3",
1720
+ "jws": "^4.0.0"
1721
+ },
1722
+ "engines": {
1723
+ "node": ">=18"
1724
+ }
1725
+ },
1726
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/google-logging-utils": {
1727
+ "version": "1.1.3",
1728
+ "resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
1729
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
1730
+ "license": "Apache-2.0",
1731
+ "engines": {
1732
+ "node": ">=14"
1733
+ }
1734
+ },
1735
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/graceful-fs": {
1736
+ "version": "4.2.11",
1737
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1738
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1739
+ "license": "ISC"
1740
+ },
1741
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/grok-mermaid": {
1742
+ "version": "0.2.2",
1743
+ "resolved": "https://registry.npmjs.org/grok-mermaid/-/grok-mermaid-0.2.2.tgz",
1744
+ "integrity": "sha512-XcJEP5dDC8liHBh52mlLjU18fNvu1ckFsu0QpIG3+APZ270fsj9wxpiA6cOURmbUEuoMVgjbC2+UYgTdCqqgzA==",
1745
+ "license": "Apache-2.0",
1746
+ "engines": {
1747
+ "node": ">=18"
1748
+ }
1749
+ },
1750
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/highlight.js": {
1751
+ "version": "10.7.3",
1752
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
1753
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
1754
+ "license": "BSD-3-Clause",
1755
+ "engines": {
1756
+ "node": "*"
1757
+ }
1758
+ },
1759
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/hosted-git-info": {
1760
+ "version": "9.0.3",
1761
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz",
1762
+ "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==",
1763
+ "license": "ISC",
1764
+ "dependencies": {
1765
+ "lru-cache": "^11.1.0"
1766
+ },
1767
+ "engines": {
1768
+ "node": "^20.17.0 || >=22.9.0"
1769
+ }
1770
+ },
1771
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/http-proxy-agent": {
1772
+ "version": "7.0.2",
1773
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
1774
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
1775
+ "license": "MIT",
1776
+ "dependencies": {
1777
+ "agent-base": "^7.1.0",
1778
+ "debug": "^4.3.4"
1779
+ },
1780
+ "engines": {
1781
+ "node": ">= 14"
1782
+ }
1783
+ },
1784
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/https-proxy-agent": {
1785
+ "version": "7.0.6",
1786
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
1787
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
1788
+ "license": "MIT",
1789
+ "dependencies": {
1790
+ "agent-base": "^7.1.2",
1791
+ "debug": "4"
1792
+ },
1793
+ "engines": {
1794
+ "node": ">= 14"
1795
+ }
1796
+ },
1797
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ignore": {
1798
+ "version": "7.0.5",
1799
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1800
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1801
+ "license": "MIT",
1802
+ "engines": {
1803
+ "node": ">= 4"
1804
+ }
1805
+ },
1806
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/isexe": {
1807
+ "version": "2.0.0",
1808
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1809
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1810
+ "license": "ISC"
1811
+ },
1812
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jiti": {
1813
+ "version": "2.7.0",
1814
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
1815
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
1816
+ "license": "MIT",
1817
+ "bin": {
1818
+ "jiti": "lib/jiti-cli.mjs"
1819
+ }
1820
+ },
1821
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/json-bigint": {
1822
+ "version": "1.0.0",
1823
+ "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
1824
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
1825
+ "license": "MIT",
1826
+ "dependencies": {
1827
+ "bignumber.js": "^9.0.0"
1828
+ }
1829
+ },
1830
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/json-schema-to-ts": {
1831
+ "version": "3.1.1",
1832
+ "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
1833
+ "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
1834
+ "license": "MIT",
1835
+ "dependencies": {
1836
+ "@babel/runtime": "^7.18.3",
1837
+ "ts-algebra": "^2.0.0"
1838
+ },
1839
+ "engines": {
1840
+ "node": ">=16"
1841
+ }
1842
+ },
1843
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jwa": {
1844
+ "version": "2.0.1",
1845
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
1846
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
1847
+ "license": "MIT",
1848
+ "dependencies": {
1849
+ "buffer-equal-constant-time": "^1.0.1",
1850
+ "ecdsa-sig-formatter": "1.0.11",
1851
+ "safe-buffer": "^5.0.1"
1852
+ }
1853
+ },
1854
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/jws": {
1855
+ "version": "4.0.1",
1856
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
1857
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
1858
+ "license": "MIT",
1859
+ "dependencies": {
1860
+ "jwa": "^2.0.1",
1861
+ "safe-buffer": "^5.0.1"
1862
+ }
1863
+ },
1864
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/long": {
1865
+ "version": "5.3.2",
1866
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
1867
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
1868
+ "license": "Apache-2.0"
1869
+ },
1870
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/lru-cache": {
1871
+ "version": "11.4.0",
1872
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.4.0.tgz",
1873
+ "integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
1874
+ "license": "BlueOak-1.0.0",
1875
+ "engines": {
1876
+ "node": "20 || >=22"
1877
+ }
1878
+ },
1879
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/marked": {
1880
+ "version": "18.0.5",
1881
+ "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.5.tgz",
1882
+ "integrity": "sha512-S6GcvALHg6K4ohtu4E7x0a1AqhAjp6cV8KhLSyN9qVapnzJkusVBxZRcIU9AeYsbe6P1hKDusSbEOzGyyuce6w==",
1883
+ "license": "MIT",
1884
+ "bin": {
1885
+ "marked": "bin/marked.js"
1886
+ },
1887
+ "engines": {
1888
+ "node": ">= 20"
1889
+ }
1890
+ },
1891
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/minimatch": {
1892
+ "version": "10.2.5",
1893
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
1894
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
1895
+ "license": "BlueOak-1.0.0",
1896
+ "dependencies": {
1897
+ "brace-expansion": "^5.0.5"
1898
+ },
1899
+ "engines": {
1900
+ "node": "18 || 20 || >=22"
1901
+ },
1902
+ "funding": {
1903
+ "url": "https://github.com/sponsors/isaacs"
1904
+ }
1905
+ },
1906
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ms": {
1907
+ "version": "2.1.3",
1908
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1909
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1910
+ "license": "MIT"
1911
+ },
1912
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/node-domexception": {
1913
+ "version": "1.0.0",
1914
+ "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
1915
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
1916
+ "deprecated": "Use your platform's native DOMException instead",
1917
+ "funding": [
1918
+ {
1919
+ "type": "github",
1920
+ "url": "https://github.com/sponsors/jimmywarting"
1921
+ },
1922
+ {
1923
+ "type": "github",
1924
+ "url": "https://paypal.me/jimmywarting"
1925
+ }
1926
+ ],
1927
+ "license": "MIT",
1928
+ "engines": {
1929
+ "node": ">=10.5.0"
1930
+ }
1931
+ },
1932
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/node-fetch": {
1933
+ "version": "3.3.2",
1934
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
1935
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
1936
+ "license": "MIT",
1937
+ "dependencies": {
1938
+ "data-uri-to-buffer": "^4.0.0",
1939
+ "fetch-blob": "^3.1.4",
1940
+ "formdata-polyfill": "^4.0.10"
1941
+ },
1942
+ "engines": {
1943
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1944
+ },
1945
+ "funding": {
1946
+ "type": "opencollective",
1947
+ "url": "https://opencollective.com/node-fetch"
1948
+ }
1949
+ },
1950
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/openai": {
1951
+ "version": "6.40.0",
1952
+ "resolved": "https://registry.npmjs.org/openai/-/openai-6.40.0.tgz",
1953
+ "integrity": "sha512-MWtTjd/gQt4jpbji61NTgFWJLoY/PdRJ6wG9/ZDRMYNMlBKrCrSlkLI+KgHP1vR1qT6LKSAyAqIxno6lcK9JiA==",
1954
+ "license": "Apache-2.0",
1955
+ "peerDependencies": {
1956
+ "ws": "^8.18.0",
1957
+ "zod": "^3.25 || ^4.0"
1958
+ },
1959
+ "peerDependenciesMeta": {
1960
+ "ws": {
1961
+ "optional": true
1962
+ },
1963
+ "zod": {
1964
+ "optional": true
1965
+ }
1966
+ }
1967
+ },
1968
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/p-retry": {
1969
+ "version": "4.6.2",
1970
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
1971
+ "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
1972
+ "license": "MIT",
1973
+ "dependencies": {
1974
+ "@types/retry": "0.12.0",
1975
+ "retry": "^0.13.1"
1976
+ },
1977
+ "engines": {
1978
+ "node": ">=8"
1979
+ }
1980
+ },
1981
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/p-retry/node_modules/@types/retry": {
1982
+ "version": "0.12.0",
1983
+ "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
1984
+ "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
1985
+ "license": "MIT"
1986
+ },
1987
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/partial-json": {
1988
+ "version": "0.1.7",
1989
+ "resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
1990
+ "integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
1991
+ "license": "MIT"
1992
+ },
1993
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/path-expression-matcher": {
1994
+ "version": "1.5.0",
1995
+ "resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
1996
+ "integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
1997
+ "funding": [
1998
+ {
1999
+ "type": "github",
2000
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2001
+ }
2002
+ ],
2003
+ "license": "MIT",
2004
+ "engines": {
2005
+ "node": ">=14.0.0"
2006
+ }
2007
+ },
2008
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/path-key": {
2009
+ "version": "3.1.1",
2010
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2011
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2012
+ "license": "MIT",
2013
+ "engines": {
2014
+ "node": ">=8"
2015
+ }
2016
+ },
2017
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/proper-lockfile": {
2018
+ "version": "4.1.2",
2019
+ "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
2020
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
2021
+ "license": "MIT",
2022
+ "dependencies": {
2023
+ "graceful-fs": "^4.2.4",
2024
+ "retry": "^0.12.0",
2025
+ "signal-exit": "^3.0.2"
2026
+ }
2027
+ },
2028
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/proper-lockfile/node_modules/retry": {
2029
+ "version": "0.12.0",
2030
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
2031
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
2032
+ "license": "MIT",
2033
+ "engines": {
2034
+ "node": ">= 4"
2035
+ }
2036
+ },
2037
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/protobufjs": {
2038
+ "version": "7.6.5",
2039
+ "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.6.5.tgz",
2040
+ "integrity": "sha512-/FPD0nUc9jH6rfFjji9IBqOz4pcSE3CsT1m7Ep6Mdb0LxSUMj8hgl6GomOvZzpNpAqqGaXA0P3VSrZLFzIhQrw==",
2041
+ "hasInstallScript": true,
2042
+ "license": "BSD-3-Clause",
2043
+ "dependencies": {
2044
+ "@protobufjs/aspromise": "^1.1.2",
2045
+ "@protobufjs/base64": "^1.1.2",
2046
+ "@protobufjs/codegen": "^2.0.5",
2047
+ "@protobufjs/eventemitter": "^1.1.1",
2048
+ "@protobufjs/fetch": "^1.1.1",
2049
+ "@protobufjs/float": "^1.0.2",
2050
+ "@protobufjs/path": "^1.1.2",
2051
+ "@protobufjs/pool": "^1.1.0",
2052
+ "@protobufjs/utf8": "^1.1.1",
2053
+ "@types/node": ">=13.7.0",
2054
+ "long": "^5.3.2"
2055
+ },
2056
+ "engines": {
2057
+ "node": ">=12.0.0"
2058
+ }
2059
+ },
2060
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/retry": {
2061
+ "version": "0.13.1",
2062
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
2063
+ "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
2064
+ "license": "MIT",
2065
+ "engines": {
2066
+ "node": ">= 4"
2067
+ }
2068
+ },
2069
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/safe-buffer": {
2070
+ "version": "5.2.1",
2071
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
2072
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
2073
+ "funding": [
2074
+ {
2075
+ "type": "github",
2076
+ "url": "https://github.com/sponsors/feross"
2077
+ },
2078
+ {
2079
+ "type": "patreon",
2080
+ "url": "https://www.patreon.com/feross"
2081
+ },
2082
+ {
2083
+ "type": "consulting",
2084
+ "url": "https://feross.org/support"
2085
+ }
2086
+ ],
2087
+ "license": "MIT"
2088
+ },
2089
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/semver": {
2090
+ "version": "7.8.0",
2091
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
2092
+ "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==",
2093
+ "license": "ISC",
2094
+ "bin": {
2095
+ "semver": "bin/semver.js"
2096
+ },
2097
+ "engines": {
2098
+ "node": ">=10"
2099
+ }
2100
+ },
2101
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/shebang-command": {
2102
+ "version": "2.0.0",
2103
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2104
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2105
+ "license": "MIT",
2106
+ "dependencies": {
2107
+ "shebang-regex": "^3.0.0"
2108
+ },
2109
+ "engines": {
2110
+ "node": ">=8"
2111
+ }
2112
+ },
2113
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/shebang-regex": {
2114
+ "version": "3.0.0",
2115
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2116
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2117
+ "license": "MIT",
2118
+ "engines": {
2119
+ "node": ">=8"
2120
+ }
2121
+ },
2122
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/signal-exit": {
2123
+ "version": "3.0.7",
2124
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
2125
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
2126
+ "license": "ISC"
2127
+ },
2128
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/standardwebhooks": {
2129
+ "version": "1.1.1",
2130
+ "resolved": "https://registry.npmjs.org/standardwebhooks/-/standardwebhooks-1.1.1.tgz",
2131
+ "integrity": "sha512-bCbX9ZEyFkWPsRz7Bl3NuQUJohmwGSev/yhr7vhaGPlc4AfIrspIRa6cPTBuI1ItmrTDJ4d/S2hCsfe4+vQGnQ==",
2132
+ "license": "MIT",
2133
+ "dependencies": {
2134
+ "@stablelib/base64": "^1.0.0",
2135
+ "fast-sha256": "^1.3.0"
2136
+ }
2137
+ },
2138
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/strnum": {
2139
+ "version": "2.3.0",
2140
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
2141
+ "integrity": "sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==",
2142
+ "funding": [
2143
+ {
2144
+ "type": "github",
2145
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2146
+ }
2147
+ ],
2148
+ "license": "MIT"
2149
+ },
2150
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ts-algebra": {
2151
+ "version": "2.0.0",
2152
+ "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
2153
+ "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
2154
+ "license": "MIT"
2155
+ },
2156
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/tslib": {
2157
+ "version": "2.8.1",
2158
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2159
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2160
+ "license": "0BSD"
2161
+ },
2162
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/typebox": {
2163
+ "version": "1.3.7",
2164
+ "resolved": "https://registry.npmjs.org/typebox/-/typebox-1.3.7.tgz",
2165
+ "integrity": "sha512-meKuifc33Pccx0O6PdIzYMq3Og8zvP4TIi/a+Bw3AEMZMxOD0+RHGQvpglEe6Zdy3wZ8nqn/j95h8LUZLk/6Hg==",
2166
+ "license": "MIT"
2167
+ },
2168
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/undici": {
2169
+ "version": "8.9.0",
2170
+ "resolved": "https://registry.npmjs.org/undici/-/undici-8.9.0.tgz",
2171
+ "integrity": "sha512-aWZpUj7XoGonMClx4gdDRfgBjqeA+F473aDmROQQbM9n6PRfK/u1q/a0X4wMTgcHfT8H6fpbt98PFuDUwFg2YA==",
2172
+ "license": "MIT",
2173
+ "engines": {
2174
+ "node": ">=22.19.0"
2175
+ }
2176
+ },
2177
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/undici-types": {
2178
+ "version": "6.21.0",
2179
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
2180
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
2181
+ "license": "MIT"
2182
+ },
2183
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/web-streams-polyfill": {
2184
+ "version": "3.3.3",
2185
+ "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
2186
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
2187
+ "license": "MIT",
2188
+ "engines": {
2189
+ "node": ">= 8"
2190
+ }
2191
+ },
2192
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/which": {
2193
+ "version": "2.0.2",
2194
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2195
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2196
+ "license": "ISC",
2197
+ "dependencies": {
2198
+ "isexe": "^2.0.0"
2199
+ },
2200
+ "bin": {
2201
+ "node-which": "bin/node-which"
2202
+ },
2203
+ "engines": {
2204
+ "node": ">= 8"
2205
+ }
2206
+ },
2207
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/ws": {
2208
+ "version": "8.21.0",
2209
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
2210
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
2211
+ "license": "MIT",
2212
+ "engines": {
2213
+ "node": ">=10.0.0"
2214
+ },
2215
+ "peerDependencies": {
2216
+ "bufferutil": "^4.0.1",
2217
+ "utf-8-validate": ">=5.0.2"
2218
+ },
2219
+ "peerDependenciesMeta": {
2220
+ "bufferutil": {
2221
+ "optional": true
2222
+ },
2223
+ "utf-8-validate": {
2224
+ "optional": true
2225
+ }
2226
+ }
2227
+ },
2228
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/xml-naming": {
2229
+ "version": "0.1.0",
2230
+ "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
2231
+ "integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
2232
+ "funding": [
2233
+ {
2234
+ "type": "github",
2235
+ "url": "https://github.com/sponsors/NaturalIntelligence"
2236
+ }
2237
+ ],
2238
+ "license": "MIT",
2239
+ "engines": {
2240
+ "node": ">=16.0.0"
2241
+ }
2242
+ },
2243
+ "node_modules/@earendil-works/pi-coding-agent/node_modules/yaml": {
2244
+ "version": "2.9.0",
2245
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
2246
+ "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
2247
+ "license": "ISC",
2248
+ "bin": {
2249
+ "yaml": "bin.mjs"
2250
+ },
2251
+ "engines": {
2252
+ "node": ">= 14.6"
2253
+ },
2254
+ "funding": {
2255
+ "url": "https://github.com/sponsors/eemeli"
2256
+ }
2257
+ }
2258
+ }
2259
+ }